diff --git a/apps/mobile/package.json b/apps/mobile/package.json index 4b6fc1aaa..ca8927090 100644 --- a/apps/mobile/package.json +++ b/apps/mobile/package.json @@ -8,6 +8,7 @@ "dev:staging": "dotenv -e .env.staging -- cross-env APP_ENV=staging expo start", "ios:device": "expo run:ios --device", "ios:device:staging": "dotenv -e .env.staging -- cross-env APP_ENV=staging expo run:ios --device", + "ios:device:staging:release": "dotenv -e .env.staging -- cross-env APP_ENV=staging expo run:ios --device --configuration Release", "lint": "expo lint", "typecheck": "tsc --noEmit" }, diff --git a/package.json b/package.json index 1f7f572dc..45d39f0e5 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,7 @@ "dev:mobile:staging": "pnpm -C apps/mobile dev:staging", "ios:mobile:device": "pnpm -C apps/mobile ios:device", "ios:mobile:device:staging": "pnpm -C apps/mobile ios:device:staging", + "ios:mobile:device:staging:release": "pnpm -C apps/mobile ios:device:staging:release", "build": "turbo build --filter=!@multica/mobile", "typecheck": "turbo typecheck --filter=!@multica/mobile", "test": "turbo test --filter=!@multica/mobile",