Hopefully fixed initial mobile builds

pull/380/head
Zef Hemel 2023-02-28 10:13:52 +01:00
parent 288e67e380
commit 520b5e91d6
1 changed files with 2 additions and 2 deletions

View File

@ -22,8 +22,8 @@
// Build the desktop app as a package for this platform
"desktop:build": "deno task build && deno task bundle && cd desktop && npm run make",
// Mobile
"mobile:deps": "cd mobile && npm install && npx cap sync",
"mobile:clean-build": "deno task clean && deno task plugs && deno run -A --unstable --check build_mobile.ts && cd mobile && npx cap copy",
"mobile:deps": "cd mobile && npm install",
"mobile:clean-build": "deno task clean && deno task plugs && deno run -A --unstable --check build_mobile.ts && cd mobile && npx cap sync",
"mobile:build": "deno run -A --unstable --check build_mobile.ts && cd mobile && npx cap copy"
},