Skip to content

Commit

Permalink
chore: mobile workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
moughxyz committed Jul 6, 2022
1 parent 58720c8 commit 90b4532
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
3 changes: 2 additions & 1 deletion packages/mobile/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
20 changes: 10 additions & 10 deletions packages/mobile/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 90b4532

Please sign in to comment.