chore: fix mobile install script

This commit is contained in:
Mo
2022-06-10 07:36:14 -05:00
parent efae18af83
commit c2aa30ff70
4 changed files with 5 additions and 4 deletions

View File

@@ -31,7 +31,7 @@ This is a React Native implementation of Standard Notes. React Native allows us
4. Install project dependencies via:
```shell
yarn install
yarn install && yarn install:pods
```
We have two flavors of the app:

View File

@@ -16,7 +16,8 @@
"lint:prettier": "prettier ./src --write",
"tsc": "tsc --noEmit",
"start": "react-native start",
"postinstall": "patch-package && yarn pod-install ios",
"install:pods": "yarn pod-install ios",
"postinstall": "patch-package",
"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/*' && yarn"
},