You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: react-native-scripts/template/README.md
+11-3Lines changed: 11 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ Below you'll find information about performing common tasks. The most recent ver
12
12
*[npm run android](#npm-run-android)
13
13
*[npm run eject](#npm-run-eject)
14
14
*[Writing and Running Tests](#writing-and-running-tests)
15
-
*[Sharing & Deployment](#sharing-deployment)
15
+
*[Sharing and Deployment](#sharing-and-deployment)
16
16
*[Publishing to Exponent's React Native Community](#publishing-to-exponents-react-native-community)
17
17
*[Building an Exponent "standalone" app](#building-an-exponent-standalone-app)
18
18
*[Ejecting from Create React Native App](#ejecting-from-create-react-native-app)
@@ -59,15 +59,23 @@ This will start the process of "ejecting" from Create React Native App's build s
59
59
60
60
This project is set up to use [jest](https://facebook.github.io/jest/) for tests. You can configure whatever testing strategy you like, but jest works out of the box. Create test files in directories called `__tests__` to have the files loaded by jest. See the [the template project](https://github.com/react-community/create-react-native-app/tree/master/react-native-scripts/template/__tests__) for an example test. The [jest documentation](https://facebook.github.io/jest/docs/getting-started.html) is also a wonderful resource.
61
61
62
-
## Sharing & Deployment
62
+
## Sharing and Deployment
63
63
64
64
Create React Native App does a lot of work to make app setup and development simple and straightforward, but it's very difficult to do the same for deploying to Apple's App Store or Google's Play Store without relying on a hosted service.
65
65
66
66
### Publishing to Exponent's React Native Community
67
67
68
68
Exponent provides free hosting for the JS-only apps created by CRNA, allowing you to share your app through the Exponent client app. This requires registration for an Exponent account.
69
69
70
-
TODO provide instructions
70
+
```
71
+
# install the exp CLI tool
72
+
$ yarn global add exp
73
+
# OR
74
+
$ npm i -g exp
75
+
76
+
# run this in your project, you'll be prompted to register if you haven't already
0 commit comments