vercel 27.2.0 → 27.3.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/README.md +5 -5
- package/dist/index.js +4228 -2557
- package/package.json +20 -18
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "vercel",
|
3
|
-
"version": "27.2
|
3
|
+
"version": "27.3.2",
|
4
4
|
"preferGlobal": true,
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"description": "The command-line interface for Vercel",
|
@@ -18,8 +18,8 @@
|
|
18
18
|
"test-integration-dev": "yarn test test/dev/",
|
19
19
|
"prepublishOnly": "yarn build",
|
20
20
|
"coverage": "codecov",
|
21
|
-
"build": "
|
22
|
-
"
|
21
|
+
"build": "ts-node ./scripts/build.ts",
|
22
|
+
"dev": "ts-node ./src/index.ts"
|
23
23
|
},
|
24
24
|
"bin": {
|
25
25
|
"vc": "./dist/index.js",
|
@@ -42,16 +42,16 @@
|
|
42
42
|
"node": ">= 14"
|
43
43
|
},
|
44
44
|
"dependencies": {
|
45
|
-
"@vercel/build-utils": "5.0.
|
46
|
-
"@vercel/go": "2.0.
|
47
|
-
"@vercel/hydrogen": "0.0.
|
48
|
-
"@vercel/next": "3.1.
|
49
|
-
"@vercel/node": "2.
|
50
|
-
"@vercel/python": "3.1.
|
51
|
-
"@vercel/redwood": "1.0.
|
52
|
-
"@vercel/remix": "1.0.
|
53
|
-
"@vercel/ruby": "1.3.
|
54
|
-
"@vercel/static-build": "1.0.
|
45
|
+
"@vercel/build-utils": "5.0.7",
|
46
|
+
"@vercel/go": "2.0.11",
|
47
|
+
"@vercel/hydrogen": "0.0.8",
|
48
|
+
"@vercel/next": "3.1.11",
|
49
|
+
"@vercel/node": "2.5.2",
|
50
|
+
"@vercel/python": "3.1.3",
|
51
|
+
"@vercel/redwood": "1.0.12",
|
52
|
+
"@vercel/remix": "1.0.13",
|
53
|
+
"@vercel/ruby": "1.3.19",
|
54
|
+
"@vercel/static-build": "1.0.12",
|
55
55
|
"update-notifier": "5.1.0"
|
56
56
|
},
|
57
57
|
"devDependencies": {
|
@@ -59,6 +59,7 @@
|
|
59
59
|
"@next/env": "11.1.2",
|
60
60
|
"@sentry/node": "5.5.0",
|
61
61
|
"@sindresorhus/slugify": "0.11.0",
|
62
|
+
"@swc/core": "1.2.218",
|
62
63
|
"@tootallnate/once": "1.1.2",
|
63
64
|
"@types/ansi-escapes": "3.0.0",
|
64
65
|
"@types/ansi-regex": "4.0.0",
|
@@ -96,9 +97,9 @@
|
|
96
97
|
"@types/which": "1.3.2",
|
97
98
|
"@types/write-json-file": "2.2.1",
|
98
99
|
"@types/yauzl-promise": "2.1.0",
|
99
|
-
"@vercel/client": "12.1.
|
100
|
+
"@vercel/client": "12.1.6",
|
100
101
|
"@vercel/frameworks": "1.1.1",
|
101
|
-
"@vercel/fs-detectors": "2.0.
|
102
|
+
"@vercel/fs-detectors": "2.0.2",
|
102
103
|
"@vercel/fun": "1.0.4",
|
103
104
|
"@vercel/ncc": "0.24.0",
|
104
105
|
"@zeit/source-map-support": "0.6.2",
|
@@ -111,6 +112,7 @@
|
|
111
112
|
"async-retry": "1.1.3",
|
112
113
|
"async-sema": "2.1.4",
|
113
114
|
"ava": "2.2.0",
|
115
|
+
"boxen": "4.2.0",
|
114
116
|
"bytes": "3.0.0",
|
115
117
|
"chalk": "4.1.0",
|
116
118
|
"chance": "1.1.7",
|
@@ -169,8 +171,8 @@
|
|
169
171
|
"title": "3.4.1",
|
170
172
|
"tmp-promise": "1.0.3",
|
171
173
|
"tree-kill": "1.2.2",
|
172
|
-
"ts-node": "
|
173
|
-
"typescript": "4.
|
174
|
+
"ts-node": "10.9.1",
|
175
|
+
"typescript": "4.7.4",
|
174
176
|
"universal-analytics": "0.4.20",
|
175
177
|
"utility-types": "2.1.0",
|
176
178
|
"which": "2.0.2",
|
@@ -195,5 +197,5 @@
|
|
195
197
|
"<rootDir>/test/**/*.test.ts"
|
196
198
|
]
|
197
199
|
},
|
198
|
-
"gitHead": "
|
200
|
+
"gitHead": "e8c7db59cf2746422f1f7e14cc6b7f901c243d50"
|
199
201
|
}
|