create-expo-stack 2.3.0-beta.001fff8 → 2.3.0-beta.01a66b5
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
CHANGED
|
@@ -30,6 +30,7 @@ To get started, use npx to run the CLI tool. You will be prompted to opt into th
|
|
|
30
30
|
`npx create-expo-stack@latest`
|
|
31
31
|
|
|
32
32
|
<img src="https://github.com/danstepanov/create-expo-stack/assets/5482800/e709dd66-cb9b-463c-91f9-b842bb80585c" />
|
|
33
|
+
|
|
33
34
|
## Tech Stack for the templates
|
|
34
35
|
|
|
35
36
|
Currently, all of the [templates](https://github.com/danstepanov/create-expo-stack/tree/main/cli/src/templates) use the same versions of the following libraries. Not all of the templates include all of the libraries, but they are all available for use.
|
|
@@ -174,4 +175,4 @@ Thanks go to these wonderful people:
|
|
|
174
175
|
|
|
175
176
|
[downloads-image]: https://img.shields.io/npm/dm/create-expo-stack?color=364fc7&logoColor=364fc7
|
|
176
177
|
[npm-url]: https://www.npmjs.com/package/create-expo-stack
|
|
177
|
-
[npm-image]: https://img.shields.io/npm/v/create-expo-stack?color=0b7285&logoColor=0b7285
|
|
178
|
+
[npm-image]: https://img.shields.io/npm/v/create-expo-stack?color=0b7285&logoColor=0b7285
|
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
"scripts": {
|
|
5
5
|
"android": "expo start --android",
|
|
6
6
|
<% if (props.packageManager === "bun") { %>
|
|
7
|
-
"format": "bun run eslint
|
|
7
|
+
"format": "bun run eslint \"**/*.{js,jsx,ts,tsx}\" --fix && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
|
|
8
8
|
<% } else { %>
|
|
9
|
-
"format": "eslint
|
|
9
|
+
"format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
|
|
10
10
|
<% } %>
|
|
11
11
|
"ios": "expo start --ios",
|
|
12
12
|
"start": "expo start",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-expo-stack",
|
|
3
|
-
"version": "2.3.0-beta.
|
|
3
|
+
"version": "2.3.0-beta.01a66b5",
|
|
4
4
|
"description": "CLI tool to initialize a React Native application with Expo",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -30,7 +30,8 @@
|
|
|
30
30
|
"prepublishOnly": "bun run build",
|
|
31
31
|
"publishPublic": "bun run build && npm publish --access public",
|
|
32
32
|
"snapupdate": "jest --updateSnapshot",
|
|
33
|
-
"watch": "bun test --watch"
|
|
33
|
+
"test:watch": "bun test --watch",
|
|
34
|
+
"test": "bun test --timeout 25000"
|
|
34
35
|
},
|
|
35
36
|
"husky": {
|
|
36
37
|
"hooks": {
|