Skip to content

Commit 8217db3

Browse files
committed
fix: native cli sample apps start scripts as the experimental debugger errors out
1 parent 412ea35 commit 8217db3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/SampleApp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"scripts": {
1010
"android": "npx react-native run-android",
1111
"ios": "npx react-native run-ios",
12-
"start": "npx react-native start --experimental-debugger",
12+
"start": "npx react-native start",
1313
"test": "jest",
1414
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
1515
"lint-fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",

examples/TypeScriptMessaging/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"scripts": {
66
"android": "npx react-native run-android",
77
"ios": "npx react-native run-ios",
8-
"start": "npx react-native start --experimental-debugger",
8+
"start": "npx react-native start",
99
"test": "jest",
1010
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
1111
"clean": "watchman watch-del-all && yarn cache clean && rm -rf ios/build && pod cache clean --all && rm -rf android/build && cd android && ./gradlew clean && cd -",

0 commit comments

Comments
 (0)