Skip to content

Commit 9494f38

Browse files
committed
Minor change to match what's in the wild for scripts start/ios/android
1 parent c824274 commit 9494f38

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

reason-react-native-template/template/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"version": "0.0.1",
44
"private": true,
55
"scripts": {
6-
"android": "react-native run-android",
7-
"ios": "react-native run-ios",
86
"start": "react-native start",
7+
"ios": "react-native run-ios",
8+
"android": "react-native run-android",
99
"re:clean": "bsb -clean-world",
1010
"re:watch": "bsb -clean-world -make-world -w",
1111
"re:build": "bsb -clean-world -make-world",

website/docs/usage.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,9 @@ You might want to add this two commands in your `package.json` scripts:
107107
"scripts": {
108108
"re:build": "bsb -clean-world -make-world",
109109
"re:watch": "bsb -clean-world -make-world -w",
110-
"start": "node node_modules/react-native/local-cli/cli.js start",
111-
"start:ios": "react-native run-ios",
112-
"start:android": "react-native run-android",
110+
"start": "react-native start",
111+
"ios": "react-native run-ios",
112+
"android": "react-native run-android",
113113
}
114114
```
115115

0 commit comments

Comments
 (0)