create-expo 2.0.0 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/build/index.js +7 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -33,13 +33,13 @@
|
|
|
33
33
|
|
|
34
34
|
```sh
|
|
35
35
|
# With NPM
|
|
36
|
-
npx create-expo
|
|
36
|
+
npx create-expo-app
|
|
37
37
|
|
|
38
38
|
# With Yarn
|
|
39
|
-
yarn create expo
|
|
39
|
+
yarn create expo-app
|
|
40
40
|
|
|
41
41
|
# With pnpm
|
|
42
|
-
pnpm create expo
|
|
42
|
+
pnpm create expo-app
|
|
43
43
|
```
|
|
44
44
|
|
|
45
45
|
Once you're up and running with Create Expo App, visit [this tutorial](https://docs.expo.dev/tutorial/planning/) for more information on building mobile apps with React.
|