Skip to content

Commit

Permalink
Change run script commands to use Yarn (#70)
Browse files Browse the repository at this point in the history
Also add a link to the expo-push-notification-client-rust in the README.
  • Loading branch information
katayama8000 authored May 28, 2024
1 parent f866215 commit bb1db5a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# expo-server-sdk-node ![Tests](https://github.com/expo/expo-server-sdk-node/workflows/Tests/badge.svg) [![codecov](https://codecov.io/gh/expo/expo-server-sdk-node/branch/master/graph/badge.svg)](https://codecov.io/gh/expo/expo-server-sdk-node)

Server-side library for working with Expo using Node.js.

If you have problems with the code in this repository, please file issues & bug reports at https://github.com/expo/expo. Thanks!
Expand Down Expand Up @@ -132,11 +133,12 @@ let receiptIdChunks = expo.chunkPushNotificationReceiptIds(receiptIds);

The source code is in the `src/` directory and babel is used to turn it into ES5 that goes in the `build/` directory.

To build, `npm run build`.
To build, `yarn build`.

To build and watch for changes, `npm run watch`.
To build and watch for changes, `yarn watch`.

## See Also

* https://github.com/expo-community/expo-server-sdk-ruby
* https://github.com/expo-community/expo-server-sdk-python
- https://github.com/expo-community/expo-server-sdk-ruby
- https://github.com/expo-community/expo-server-sdk-python
- https://github.com/katayama8000/expo-push-notification-client-rust
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
"rootDir": "./src",
"strict": true
},
"exclude": ["node_modules", "**/__mocks__", "**/__tests__"]
"exclude": ["node_modules", "**/__mocks__", "**/__tests__", "build"]
}

0 comments on commit bb1db5a

Please sign in to comment.