create-expo 2.1.1 → 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.
Files changed (3) hide show
  1. package/README.md +7 -7
  2. package/build/index.js +20 -20
  3. package/package.json +17 -16
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-expo",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "bin": "./build/index.js",
5
5
  "main": "build",
6
6
  "description": "Create universal Expo apps",
@@ -13,8 +13,8 @@
13
13
  "homepage": "https://docs.expo.dev",
14
14
  "repository": {
15
15
  "type": "git",
16
- "url": "https://github.com/expo/expo-cli.git",
17
- "directory": "packages/create-expo-app"
16
+ "url": "https://github.com/expo/expo.git",
17
+ "directory": "packages/create-expo"
18
18
  },
19
19
  "author": "Evan Bacon <bacon@expo.io> (https://github.com/evanbacon)",
20
20
  "files": [
@@ -22,38 +22,39 @@
22
22
  "template"
23
23
  ],
24
24
  "scripts": {
25
- "prepare": "yarn run clean && yarn run build:prod",
26
- "lint": "eslint .",
27
- "test": "jest",
28
- "test:e2e": "cross-env E2E=1 jest",
29
- "watch": "yarn run build -w",
30
25
  "build": "ncc build ./src/index.ts -o build/",
31
26
  "build:prod": "ncc build ./src/index.ts -o build/ --minify --no-cache --no-source-map-register",
32
- "clean": "rimraf ./build/"
27
+ "prepare": "yarn run clean && yarn run build:prod",
28
+ "clean": "expo-module clean",
29
+ "lint": "expo-module lint",
30
+ "typecheck": "expo-module typecheck",
31
+ "test": "expo-module test",
32
+ "test:e2e": "expo-module test --config e2e/jest.config.js",
33
+ "watch": "yarn run build -w",
34
+ "prepublishOnly": "expo-module prepublishOnly"
33
35
  },
34
36
  "devDependencies": {
35
37
  "@expo/json-file": "8.2.37",
36
- "@expo/package-manager": "1.1.0",
38
+ "@expo/package-manager": "^1.1.1",
37
39
  "@expo/spawn-async": "^1.7.0",
38
40
  "@types/debug": "^4.1.7",
39
41
  "@types/getenv": "^1.0.0",
40
- "@types/minipass": "^3.3.5",
41
42
  "@types/node": "^16.11.56",
42
43
  "@types/node-fetch": "^2.5.8",
43
44
  "@types/prompts": "2.0.14",
44
45
  "@types/tar": "^6.1.2",
46
+ "@vercel/ncc": "^0.38.0",
45
47
  "arg": "^5.0.2",
46
48
  "chalk": "^4.0.0",
47
49
  "debug": "^4.3.4",
50
+ "expo-module-scripts": "^3.0.0",
48
51
  "getenv": "^1.0.0",
49
- "minipass": "^3.3.4",
52
+ "minipass": "^3.3.6",
50
53
  "node-fetch": "^2.6.7",
51
54
  "ora": "3.4.0",
52
55
  "prompts": "^2.4.2",
53
- "tar": "^6.1.13",
56
+ "tar": "6.1.13",
54
57
  "update-check": "^1.5.4"
55
58
  },
56
- "publishConfig": {
57
- "access": "public"
58
- }
59
+ "gitHead": "da25937e2a99661cbe5eb60ca1d8d6245fc96a50"
59
60
  }