vercel 24.2.4-canary.0 → 24.2.5-canary.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/dist/index.js +1097 -36
- package/package.json +19 -13
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "vercel",
|
3
|
-
"version": "24.2.
|
3
|
+
"version": "24.2.5-canary.0",
|
4
4
|
"preferGlobal": true,
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"description": "The command-line interface for Vercel",
|
@@ -12,10 +12,10 @@
|
|
12
12
|
},
|
13
13
|
"scripts": {
|
14
14
|
"preinstall": "node ./scripts/preinstall.js",
|
15
|
-
"test": "jest --env node --verbose --runInBand --bail",
|
16
|
-
"test-unit": "yarn test",
|
15
|
+
"test": "jest --env node --verbose --runInBand --bail --forceExit",
|
16
|
+
"test-unit": "yarn test test/unit/",
|
17
17
|
"test-integration-cli": "rimraf test/fixtures/integration && ava test/integration.js --serial --fail-fast --verbose",
|
18
|
-
"test-integration-dev": "
|
18
|
+
"test-integration-dev": "yarn test test/dev/",
|
19
19
|
"prepublishOnly": "yarn build",
|
20
20
|
"coverage": "codecov",
|
21
21
|
"build": "node -r ts-eager/register ./scripts/build.ts",
|
@@ -43,11 +43,15 @@
|
|
43
43
|
"node": ">= 12"
|
44
44
|
},
|
45
45
|
"dependencies": {
|
46
|
-
"@vercel/build-utils": "3.
|
47
|
-
"@vercel/go": "1.4.
|
48
|
-
"@vercel/
|
49
|
-
"@vercel/
|
50
|
-
"@vercel/
|
46
|
+
"@vercel/build-utils": "3.1.1-canary.0",
|
47
|
+
"@vercel/go": "1.4.4-canary.0",
|
48
|
+
"@vercel/next": "2.8.67-canary.0",
|
49
|
+
"@vercel/node": "1.15.4-canary.0",
|
50
|
+
"@vercel/python": "2.3.4-canary.0",
|
51
|
+
"@vercel/redwood": "0.8.4-canary.0",
|
52
|
+
"@vercel/remix": "0.0.2-canary.0",
|
53
|
+
"@vercel/ruby": "1.3.7-canary.0",
|
54
|
+
"@vercel/static-build": "0.25.3-canary.0",
|
51
55
|
"update-notifier": "4.1.0"
|
52
56
|
},
|
53
57
|
"devDependencies": {
|
@@ -90,8 +94,9 @@
|
|
90
94
|
"@types/update-notifier": "5.1.0",
|
91
95
|
"@types/which": "1.3.2",
|
92
96
|
"@types/write-json-file": "2.2.1",
|
93
|
-
"@
|
94
|
-
"@vercel/
|
97
|
+
"@types/yauzl-promise": "2.1.0",
|
98
|
+
"@vercel/client": "11.0.4-canary.0",
|
99
|
+
"@vercel/frameworks": "0.9.1",
|
95
100
|
"@vercel/ncc": "0.24.0",
|
96
101
|
"@zeit/fun": "0.11.2",
|
97
102
|
"@zeit/source-map-support": "0.6.2",
|
@@ -167,7 +172,8 @@
|
|
167
172
|
"utility-types": "2.1.0",
|
168
173
|
"which": "2.0.2",
|
169
174
|
"write-json-file": "2.2.0",
|
170
|
-
"xdg-app-paths": "5.1.0"
|
175
|
+
"xdg-app-paths": "5.1.0",
|
176
|
+
"yauzl-promise": "2.1.3"
|
171
177
|
},
|
172
178
|
"jest": {
|
173
179
|
"preset": "ts-jest",
|
@@ -186,5 +192,5 @@
|
|
186
192
|
"<rootDir>/test/**/*.test.ts"
|
187
193
|
]
|
188
194
|
},
|
189
|
-
"gitHead": "
|
195
|
+
"gitHead": "e829ce47c356a06564551349e771b457ea95ac74"
|
190
196
|
}
|