Skip to content

Commit eb27512

Browse files
committed
clean up
1 parent 5c83c98 commit eb27512

File tree

3 files changed

+10
-153
lines changed

3 files changed

+10
-153
lines changed

.vscode/extensions.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"recommendations": [
3+
"oxc.oxc-vscode",
4+
"esbenp.prettier-vscode",
5+
"ryanluker.vscode-coverage-gutters"
6+
]
7+
}

examples/RNOneSignalTS/.oxlintrc.json

Lines changed: 0 additions & 138 deletions
This file was deleted.

examples/RNOneSignalTS/README.md

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,7 @@ First, you will need to run **Metro**, the JavaScript build tool for React Nativ
1111
To start the Metro dev server, run the following command from the root of your React Native project:
1212

1313
```sh
14-
# Using npm
15-
npm start
16-
17-
# OR using Yarn
18-
yarn start
14+
bun start
1915
```
2016

2117
## Step 2: Build and run your app
@@ -25,11 +21,7 @@ With Metro running, open a new terminal window/pane from the root of your React
2521
### Android
2622

2723
```sh
28-
# Using npm
29-
npm run android
30-
31-
# OR using Yarn
32-
yarn android
24+
bun run android
3325
```
3426

3527
### iOS
@@ -51,11 +43,7 @@ bundle exec pod install
5143
For more information, please visit [CocoaPods Getting Started guide](https://guides.cocoapods.org/using/getting-started.html).
5244

5345
```sh
54-
# Using npm
55-
npm run ios
56-
57-
# OR using Yarn
58-
yarn ios
46+
bun run ios
5947
```
6048

6149
If everything is set up correctly, you should see your new app running in the Android Emulator, iOS Simulator, or your connected device.

0 commit comments

Comments
 (0)