create-expo 1.0.0 → 2.0.0
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 +45 -0
- package/build/index.js +85 -0
- package/package.json +56 -7
- package/template/gitignore +14 -0
- package/index.js +0 -52
package/package.json
CHANGED
|
@@ -1,12 +1,61 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-expo",
|
|
3
|
-
"version": "
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"main": "build",
|
|
5
|
+
"description": "Create universal Expo apps",
|
|
6
|
+
"license": "BSD-3-Clause",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"expo",
|
|
9
|
+
"react-native",
|
|
10
|
+
"react"
|
|
11
|
+
],
|
|
12
|
+
"homepage": "https://docs.expo.dev",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "https://github.com/expo/expo-cli.git",
|
|
16
|
+
"directory": "packages/create-expo-app"
|
|
17
|
+
},
|
|
18
|
+
"author": "Evan Bacon <bacon@expo.io> (https://github.com/evanbacon)",
|
|
19
|
+
"bin": {
|
|
20
|
+
"create-expo": "./build/index.js"
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"build",
|
|
24
|
+
"template"
|
|
25
|
+
],
|
|
7
26
|
"scripts": {
|
|
8
|
-
"
|
|
27
|
+
"prepare": "yarn run clean && yarn run build:prod",
|
|
28
|
+
"lint": "eslint .",
|
|
29
|
+
"test": "jest",
|
|
30
|
+
"test:e2e": "cross-env E2E=1 jest",
|
|
31
|
+
"watch": "yarn run build -w",
|
|
32
|
+
"build": "ncc build ./src/index.ts -o build/",
|
|
33
|
+
"build:prod": "ncc build ./src/index.ts -o build/ --minify --no-cache --no-source-map-register",
|
|
34
|
+
"clean": "rimraf ./build/"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@expo/json-file": "8.2.37",
|
|
38
|
+
"@expo/package-manager": "0.0.56",
|
|
39
|
+
"@expo/spawn-async": "^1.7.0",
|
|
40
|
+
"@types/debug": "^4.1.7",
|
|
41
|
+
"@types/getenv": "^1.0.0",
|
|
42
|
+
"@types/minipass": "^3.3.5",
|
|
43
|
+
"@types/node": "^16.11.56",
|
|
44
|
+
"@types/node-fetch": "^2.5.8",
|
|
45
|
+
"@types/prompts": "2.0.14",
|
|
46
|
+
"@types/tar": "^6.1.2",
|
|
47
|
+
"arg": "^5.0.2",
|
|
48
|
+
"chalk": "^4.0.0",
|
|
49
|
+
"debug": "^4.3.4",
|
|
50
|
+
"getenv": "^1.0.0",
|
|
51
|
+
"minipass": "^3.3.4",
|
|
52
|
+
"node-fetch": "^2.6.7",
|
|
53
|
+
"ora": "3.4.0",
|
|
54
|
+
"prompts": "^2.4.2",
|
|
55
|
+
"tar": "^6.1.13",
|
|
56
|
+
"update-check": "^1.5.4"
|
|
9
57
|
},
|
|
10
|
-
"
|
|
11
|
-
|
|
58
|
+
"publishConfig": {
|
|
59
|
+
"access": "public"
|
|
60
|
+
}
|
|
12
61
|
}
|
package/index.js
DELETED
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
|
|
3
|
-
console.log(`
|
|
4
|
-
░░░░░░░░▒▒▒▒▓▓██▓▓▒▒▒▒▒▒░░░░░░░░
|
|
5
|
-
░░░░░░░░▒▒▓▓▓▓░░▒▒▓▓▒▒▓▓░░░░░░
|
|
6
|
-
░░░░░░░░░░▒▒░░░░▒▒░░▓▓▒▒▓▓░░░░
|
|
7
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
|
|
8
|
-
░░░░░░░░░░░░░░░░▒▒▒▒░░░░░░░░░░
|
|
9
|
-
░░░░░░░░░░░░░░▒▒░░░░░░░░░░░░░░
|
|
10
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
|
|
11
|
-
▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░
|
|
12
|
-
▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░
|
|
13
|
-
▓▓▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░
|
|
14
|
-
▒▒▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░
|
|
15
|
-
░░▓▓▒▒░░░░░░░░░░░░░░░░░░░░░░
|
|
16
|
-
░░▒▒░░░░░░░░░░░░░░░░░░░░░░░░
|
|
17
|
-
░░░░ ░░░░░░░░░░░░░░░░░░░░░░
|
|
18
|
-
░░ ░░░░░░░░░░░░░░░░░░░░░░░░
|
|
19
|
-
░░░░░░░░░░░░░░▒▒░░▒▒░░▓▓▓▓▒▒░░
|
|
20
|
-
░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▓▓▓▓▒▒
|
|
21
|
-
░░░░░░░░░░░░░░░░▒▒▒▒▒▒▓▓▒▒░░▒▒░░
|
|
22
|
-
░░░░░░░░░░░░░░░░▒▒░░▒▒▒▒▒▒▓▓░░░░░░
|
|
23
|
-
░░░░░░░░░░░░░░░░░░░░░░▒▒░░░░░░ ░░
|
|
24
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
|
|
25
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
|
|
26
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
|
|
27
|
-
░░▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
|
|
28
|
-
▒▒██▓▓░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
|
|
29
|
-
▒▒██████▓▓░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
|
|
30
|
-
██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
|
|
31
|
-
▓▓██▓▓░░░░░░░░░░▒▒▒▒▒▒▒▒▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░
|
|
32
|
-
██▒▒░░░░░░░░▓▓▓▓▒▒▒▒▒▒▒▒▒▒▒▒▒▒░░░░░░░░░░░░░░░░▒▒▒▒
|
|
33
|
-
░░░░░░░░░░▒▒░░▓▓▓▓▒▒▒▒▓▓░░░░░░░░░░░░░░░░▒▒▒▒▒▒▒▒▒▒░░
|
|
34
|
-
░░░░▒▒░░▓▓░░░░░░░░▒▒░░ ░░░░░░▒▒▒▒▒▒▒▒▒▒▒▒░░░░░░
|
|
35
|
-
░░░░▒▒▒▒▓▓▒▒░░░░░░░░░░░░░░▒▒▒▒▒▒▒▒▒▒░░░░░░░░░░░░
|
|
36
|
-
░░▒▒▒▒▒▒░░░░░░░░░░░░▒▒▒▒▒▒▒▒▒▒░░░░░░▒▒▒▒▒▒▒▒▒▒
|
|
37
|
-
░░▒▒░░░░░░░░░░░░▒▒▒▒▒▒▒▒▒▒░░░░▒▒▒▒▒▒▒▒▒▒▒▒▓▓▓▓
|
|
38
|
-
░░ ░░░░▒▒▒▒▒▒▒▒░░░░░░▒▒▒▒▒▒▒▒▓▓▓▓▓▓▓▓░░░░
|
|
39
|
-
░░░░▒▒▒▒▒▒▒▒░░░░░░▒▒▒▒▓▓▓▓▓▓▓▓▓▓░░░░░░░░░░░░
|
|
40
|
-
░░▒▒▒▒▒▒▒▒▒▒░░▒▒▒▒▒▒▓▓▓▓▓▓▓▓░░░░░░░░░░░░░░░░░░
|
|
41
|
-
░░░░░░░░░░░░ ░░▒▒▒▒░░░░▒▒▒▒▒▒▓▓▓▓▓▓▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░
|
|
42
|
-
░░░░░░░░░░░░░░░░░░░░▒▒░░░░▒▒▓▓▓▓▓▓▓▓▒▒░░░░░░▒▒▒▒▒▒▒▒▒▒░░░░░░░░▓▓██▓▓▓▓
|
|
43
|
-
░░░░░░░░░░░░░░░░░░░░▒▒▒▒▓▓▓▓▓▓▓▓░░░░▒▒▓▓▒▒▓▓▓▓▒▒ ░░████████████
|
|
44
|
-
░░░░░░░░░░░░▒▒▒▒▓▓▓▓██▓▓░░░░░░▓▓▒▒▓▓░░░░░░ ▒▒████████████████
|
|
45
|
-
░░░░░░▒▒▓▓▓▓▓▓▒▒░░░░░░▒▒░░▓▓▒▒░░░░░░▓▓██████████████████
|
|
46
|
-
░░▓▓▓▓██░░░░░░░░▒▒▒▒▒▒▒▒ ▒▒████████████████████
|
|
47
|
-
░░░░░░▒▒░░▒▒▒▒▒▒▒▒░░░░████████████████████▒▒
|
|
48
|
-
░░░░░░░░████████████████▓▓░░
|
|
49
|
-
`);
|
|
50
|
-
|
|
51
|
-
console.log("...and now your terminal has some Expo socks too!");
|
|
52
|
-
console.log("Thank you for being a part of the community ✌️");
|