vercel 29.2.0 → 29.2.1
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 +440 -3543
- package/dist/runtimes/nodejs/bootstrap +0 -0
- package/dist/runtimes/nodejs10.x/bootstrap +0 -0
- package/dist/runtimes/nodejs12.x/bootstrap +0 -0
- package/dist/runtimes/nodejs14.x/bootstrap +0 -0
- package/dist/runtimes/nodejs6.10/bootstrap +0 -0
- package/dist/runtimes/nodejs8.10/bootstrap +0 -0
- package/dist/runtimes/provided/bootstrap +0 -0
- package/dist/runtimes/python/bootstrap +0 -0
- package/dist/runtimes/python2.7/bootstrap +0 -0
- package/dist/runtimes/python3/bootstrap +0 -0
- package/dist/runtimes/python3.6/bootstrap +0 -0
- package/dist/runtimes/python3.7/bootstrap +0 -0
- package/dist/xdg-open +0 -0
- package/package.json +13 -14
- package/scripts/preinstall.js +0 -0
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
package/dist/xdg-open
CHANGED
File without changes
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "vercel",
|
3
|
-
"version": "29.2.
|
3
|
+
"version": "29.2.1",
|
4
4
|
"preferGlobal": true,
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"description": "The command-line interface for Vercel",
|
@@ -10,16 +10,6 @@
|
|
10
10
|
"url": "https://github.com/vercel/vercel.git",
|
11
11
|
"directory": "packages/cli"
|
12
12
|
},
|
13
|
-
"scripts": {
|
14
|
-
"preinstall": "node ./scripts/preinstall.js",
|
15
|
-
"test": "jest --env node --verbose --bail",
|
16
|
-
"test-unit": "pnpm test test/unit/",
|
17
|
-
"test-e2e": "rimraf test/fixtures/integration && pnpm test test/integration-1.test.ts test/integration-2.test.ts test/integration-3.test.ts",
|
18
|
-
"test-dev": "pnpm test test/dev/",
|
19
|
-
"coverage": "codecov",
|
20
|
-
"build": "ts-node ./scripts/build.ts",
|
21
|
-
"dev": "ts-node ./src/index.ts"
|
22
|
-
},
|
23
13
|
"bin": {
|
24
14
|
"vc": "./dist/index.js",
|
25
15
|
"vercel": "./dist/index.js"
|
@@ -39,7 +29,7 @@
|
|
39
29
|
"@vercel/node": "2.14.2",
|
40
30
|
"@vercel/python": "3.1.60",
|
41
31
|
"@vercel/redwood": "1.1.15",
|
42
|
-
"@vercel/remix-builder": "1.8.
|
32
|
+
"@vercel/remix-builder": "1.8.8",
|
43
33
|
"@vercel/ruby": "1.3.76",
|
44
34
|
"@vercel/static-build": "1.3.30"
|
45
35
|
},
|
@@ -173,5 +163,14 @@
|
|
173
163
|
"xdg-app-paths": "5.1.0",
|
174
164
|
"yauzl-promise": "2.1.3"
|
175
165
|
},
|
176
|
-
"
|
177
|
-
|
166
|
+
"scripts": {
|
167
|
+
"preinstall": "node ./scripts/preinstall.js",
|
168
|
+
"test": "jest --env node --verbose --bail",
|
169
|
+
"test-unit": "pnpm test test/unit/",
|
170
|
+
"test-e2e": "rimraf test/fixtures/integration && pnpm test test/integration-1.test.ts test/integration-2.test.ts test/integration-3.test.ts",
|
171
|
+
"test-dev": "pnpm test test/dev/",
|
172
|
+
"coverage": "codecov",
|
173
|
+
"build": "ts-node ./scripts/build.ts",
|
174
|
+
"dev": "ts-node ./src/index.ts"
|
175
|
+
}
|
176
|
+
}
|
package/scripts/preinstall.js
CHANGED
File without changes
|