diff --git a/packages/mobile/fastlane/Fastfile b/packages/mobile/fastlane/Fastfile index 149283ef0..e3b634834 100755 --- a/packages/mobile/fastlane/Fastfile +++ b/packages/mobile/fastlane/Fastfile @@ -45,7 +45,8 @@ platform :ios do apple_id: ENV['APPLE_APP_ID'], distribute_external: true, notify_external_testers: true, - submit_beta_review: true + submit_beta_review: true, + changelog: 'Fixes and improvements.' ) # refresh_dsyms end diff --git a/packages/mobile/package.json b/packages/mobile/package.json index 9e77b4c89..41d73a3ec 100644 --- a/packages/mobile/package.json +++ b/packages/mobile/package.json @@ -8,21 +8,21 @@ "android-dev": "react-native run-android --variant devDebug --appIdSuffix dev", "android-prod-debug": "react-native run-android --variant prodDebug", "android-prod-release": "yarn run android:bundle && react-native run-android --variant prodRelease", + "android:bundle": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/build/intermediates/res/merged/release/", + "build": "yarn web:bundle && yarn install:pods && yarn android:bundle", + "clear-cache": "watchman watch-del-all && rm -rf $TMPDIR/react-native-packager-cache-* && rm -rf $TMPDIR/metro-bundler-cache-*", + "format:fix": "yarn format --write", + "format": "prettier ./src", + "install:pods": "yarn pod-install ios", "ios-dev": "react-native run-ios --scheme StandardNotesDev", "ios-prod": "react-native run-ios --scheme StandardNotes", - "clear-cache": "watchman watch-del-all && rm -rf $TMPDIR/react-native-packager-cache-* && rm -rf $TMPDIR/metro-bundler-cache-*", - "lint": "yarn tsc && yarn eslint . --ext .ts,.tsx", "lint:fix": "yarn lint --fix", - "format": "prettier ./src", - "format:fix": "yarn format --write", - "build": "yarn web:bundle && yarn install:pods && yarn android:bundle", - "web:bundle": "mkdir -p html/Web.bundle/src/web-src/ && cp -r ../web/dist/. html/Web.bundle/src/web-src/", + "lint": "yarn tsc && yarn eslint . --ext .ts,.tsx", "pods": "yarn install:pods", - "tsc": "tsc --noEmit", "start": "react-native start", - "install:pods": "yarn pod-install ios", - "android:bundle": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/build/intermediates/res/merged/release/", - "upgrade:snjs": "ncu -u '@standardnotes/*'" + "tsc": "tsc --noEmit", + "upgrade:snjs": "ncu -u '@standardnotes/*'", + "web:bundle": "mkdir -p html/Web.bundle/src/web-src/ && cp -r ../web/dist/. html/Web.bundle/src/web-src/" }, "installConfig": { "hoistingLimits": "workspaces"