create-expo 2.1.0 → 2.1.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 +7 -7
- package/build/index.js +20 -20
- package/package.json +18 -19
package/README.md
CHANGED
|
@@ -22,27 +22,27 @@
|
|
|
22
22
|
<img alt="Supports Expo Web" longdesc="Supports Expo Web" src="https://img.shields.io/badge/web-000.svg?style=flat-square&logo=GOOGLE-CHROME&labelColor=4285F4&logoColor=fff" />
|
|
23
23
|
</p>
|
|
24
24
|
<p align="center">
|
|
25
|
-
<a href="https://packagephobia.now.sh/result?p=create-expo
|
|
26
|
-
<img alt="the best way to bootstrap a react native app" longdesc="the best way to create a react native app" src="https://flat.badgen.net/packagephobia/install/create-expo
|
|
25
|
+
<a href="https://packagephobia.now.sh/result?p=create-expo">
|
|
26
|
+
<img alt="the best way to bootstrap a react native app" longdesc="the best way to create a react native app" src="https://flat.badgen.net/packagephobia/install/create-expo" />
|
|
27
27
|
</a>
|
|
28
28
|
</p>
|
|
29
|
-
|
|
29
|
+
|
|
30
30
|
</p>
|
|
31
31
|
|
|
32
32
|
<!-- Body -->
|
|
33
33
|
|
|
34
34
|
```sh
|
|
35
35
|
# With NPM
|
|
36
|
-
npx create-expo
|
|
36
|
+
npx create-expo
|
|
37
37
|
|
|
38
38
|
# With Yarn
|
|
39
|
-
yarn create expo
|
|
39
|
+
yarn create expo
|
|
40
40
|
|
|
41
41
|
# With pnpm
|
|
42
|
-
pnpm create expo
|
|
42
|
+
pnpm create expo
|
|
43
43
|
|
|
44
44
|
# With Bun
|
|
45
|
-
bunx create-expo
|
|
45
|
+
bunx create-expo
|
|
46
46
|
```
|
|
47
47
|
|
|
48
48
|
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.
|