create-expo 4.0.0 → 4.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/LICENSE +21 -0
- package/build/205.index.js +4 -4
- package/build/index.js +4 -4
- package/package.json +19 -19
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-expo",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.2",
|
|
4
4
|
"bin": "./bin/create-expo.js",
|
|
5
5
|
"main": "build",
|
|
6
6
|
"description": "Create universal Expo apps",
|
|
@@ -25,22 +25,8 @@
|
|
|
25
25
|
"engines": {
|
|
26
26
|
"node": ">=18.13.0"
|
|
27
27
|
},
|
|
28
|
-
"scripts": {
|
|
29
|
-
"build": "ncc build ./src/index.ts -o build/",
|
|
30
|
-
"build:prod": "ncc build ./src/index.ts -o build/ --minify --no-cache --no-source-map-register",
|
|
31
|
-
"clean": "expo-module clean",
|
|
32
|
-
"lint": "expo-module lint",
|
|
33
|
-
"typecheck": "expo-module typecheck",
|
|
34
|
-
"test": "expo-module test",
|
|
35
|
-
"test:e2e": "expo-module test --config e2e/jest.config.js --runInBand",
|
|
36
|
-
"watch": "pnpm run build --watch",
|
|
37
|
-
"prepublishOnly": "pnpm run clean && pnpm run build:prod"
|
|
38
|
-
},
|
|
39
28
|
"devDependencies": {
|
|
40
|
-
"@expo/
|
|
41
|
-
"@expo/json-file": "workspace:*",
|
|
42
|
-
"@expo/package-manager": "workspace:*",
|
|
43
|
-
"@expo/spawn-async": "^1.7.2",
|
|
29
|
+
"@expo/spawn-async": "^1.8.0",
|
|
44
30
|
"@octokit/types": "^13.5.0",
|
|
45
31
|
"@types/debug": "^4.1.7",
|
|
46
32
|
"@types/getenv": "^1.0.0",
|
|
@@ -51,7 +37,6 @@
|
|
|
51
37
|
"arg": "^5.0.2",
|
|
52
38
|
"chalk": "^4.0.0",
|
|
53
39
|
"debug": "^4.3.4",
|
|
54
|
-
"expo-module-scripts": "workspace:*",
|
|
55
40
|
"getenv": "^2.0.0",
|
|
56
41
|
"glob": "^13.0.0",
|
|
57
42
|
"nock": "^14.0.10",
|
|
@@ -59,6 +44,21 @@
|
|
|
59
44
|
"picomatch": "^2.3.2",
|
|
60
45
|
"prompts": "^2.4.2",
|
|
61
46
|
"multitars": "^1.0.0",
|
|
62
|
-
"update-check": "^1.5.4"
|
|
47
|
+
"update-check": "^1.5.4",
|
|
48
|
+
"@expo/json-file": "10.2.0",
|
|
49
|
+
"@expo/package-manager": "1.12.0",
|
|
50
|
+
"expo-module-scripts": "56.0.2",
|
|
51
|
+
"@expo/config": "56.0.8"
|
|
52
|
+
},
|
|
53
|
+
"gitHead": "c4c9867a0bcbb188e55ecaec4998e38d33108a5d",
|
|
54
|
+
"scripts": {
|
|
55
|
+
"build": "ncc build ./src/index.ts -o build/",
|
|
56
|
+
"build:prod": "ncc build ./src/index.ts -o build/ --minify --no-cache --no-source-map-register",
|
|
57
|
+
"clean": "expo-module clean",
|
|
58
|
+
"lint": "expo-module lint",
|
|
59
|
+
"typecheck": "expo-module typecheck",
|
|
60
|
+
"test": "expo-module test",
|
|
61
|
+
"test:e2e": "expo-module test --config e2e/jest.config.js --runInBand",
|
|
62
|
+
"watch": "pnpm run build --watch"
|
|
63
63
|
}
|
|
64
|
-
}
|
|
64
|
+
}
|