Chore: Fix for rnpm usage (#308)
* fix: add yarn clean, fix for run-android, fix rnpm * fix: indentation
... | ... | @@ -8,16 +8,16 @@ |
"yarn": "^1.3.2" | ||
}, | ||
"scripts": { | ||
"android": "yarn run build-rust-android && react-native run-android --appIdSuffix \"dev\"", | ||
"build-rust-ios": "cd rust/signer && make ios", | ||
"build-rust-android": "cd rust/signer && make android", | ||
"clean": "watchman watch-del-all && rm -rf /tmp/metro-bundler-cache-* && rm -rf /tmp/haste-map-react-native-packager-* && rm -rf node_modules/ && yarn cache clean --force", | ||
"commit": "commit-wizard", | ||
"ios": "yarn run build-rust-ios && react-native run-ios", | ||
"android": "yarn run build-rust-android && react-native run-android --appIdSuffix \"dev\"", | ||
"start": "NODE_OPTIONS=--max_old_space_size=8192 react-native start", | ||
"postinstall": "npx jetify", | ||
"test": "jest", | ||
"lint": "eslint", | ||
"commit": "commit-wizard", | ||
"clean": "watchman watch-del-all && rm -rf /tmp/metro-bundler-cache-* && rm -rf /tmp/haste-map-react-native-packager-* && rm -rf node_modules/ && yarn cache clean --force" | ||
"postinstall": "npx jetify", | ||
"start": "NODE_OPTIONS=--max_old_space_size=8192 react-native start", | ||
"test": "jest" | ||
}, | ||
"dependencies": { | ||
"@plugnet/util": "^0.94.100", | ||
... | ... | @@ -69,11 +69,6 @@ |
"reactotron-react-native": "^3.6.4", | ||
"react-test-renderer": "16.8.6" | ||
}, | ||
"rnpm": { | ||
"assets": [ | ||
"./res/fonts" | ||
] | ||
}, | ||
"jest": { | ||
"preset": "react-native", | ||
"setupFiles": [ | ||
... | ... |
src/react-native.config.js
0 → 100644
Please register or sign in to comment