vercel 32.7.2 → 33.0.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 +16 -12
- package/package.json +10 -10
package/dist/index.js
CHANGED
@@ -52621,8 +52621,8 @@ var GA_TRACKING_ID, SENTRY_DSN;
|
|
52621
52621
|
var init_constants = __esm({
|
52622
52622
|
"src/util/constants.ts"() {
|
52623
52623
|
"use strict";
|
52624
|
-
GA_TRACKING_ID =
|
52625
|
-
SENTRY_DSN =
|
52624
|
+
GA_TRACKING_ID = "UA-117491914-3";
|
52625
|
+
SENTRY_DSN = "https://26a24e59ba954011919a524b341b6ab5@sentry.io/1323225";
|
52626
52626
|
}
|
52627
52627
|
});
|
52628
52628
|
|
@@ -62513,7 +62513,7 @@ var require_package = __commonJS2({
|
|
62513
62513
|
"../client/package.json"(exports2, module2) {
|
62514
62514
|
module2.exports = {
|
62515
62515
|
name: "@vercel/client",
|
62516
|
-
version: "13.0.
|
62516
|
+
version: "13.0.12",
|
62517
62517
|
main: "dist/index.js",
|
62518
62518
|
typings: "dist/index.d.ts",
|
62519
62519
|
homepage: "https://vercel.com",
|
@@ -62550,7 +62550,7 @@ var require_package = __commonJS2({
|
|
62550
62550
|
typescript: "4.9.5"
|
62551
62551
|
},
|
62552
62552
|
dependencies: {
|
62553
|
-
"@vercel/build-utils": "7.
|
62553
|
+
"@vercel/build-utils": "7.4.1",
|
62554
62554
|
"@vercel/routing-utils": "3.1.0",
|
62555
62555
|
"@zeit/fetch": "5.2.0",
|
62556
62556
|
"async-retry": "1.2.3",
|
@@ -137865,13 +137865,17 @@ async function bisect(client2) {
|
|
137865
137865
|
}
|
137866
137866
|
)) {
|
137867
137867
|
let newDeployments = chunk.deployments;
|
137868
|
+
let hasGood = false;
|
137868
137869
|
for (let i = 0; i < newDeployments.length; i++) {
|
137869
137870
|
if (newDeployments[i].url === good) {
|
137870
137871
|
newDeployments = newDeployments.slice(0, i);
|
137872
|
+
hasGood = true;
|
137871
137873
|
break;
|
137872
137874
|
}
|
137873
137875
|
}
|
137874
137876
|
deployments = deployments.concat(newDeployments);
|
137877
|
+
if (hasGood)
|
137878
|
+
break;
|
137875
137879
|
}
|
137876
137880
|
if (!deployments.length) {
|
137877
137881
|
output2.error(
|
@@ -194843,7 +194847,7 @@ async function list3(client2, argv2, args2, contextName) {
|
|
194843
194847
|
const start = Date.now();
|
194844
194848
|
output2.spinner(`Fetching projects in ${import_chalk91.default.bold(contextName)}`);
|
194845
194849
|
let projectsUrl = `/v4/projects/?limit=20`;
|
194846
|
-
const deprecated = argv2["--
|
194850
|
+
const deprecated = argv2["--update-required"] || false;
|
194847
194851
|
if (deprecated) {
|
194848
194852
|
projectsUrl += `&deprecated=${deprecated}`;
|
194849
194853
|
}
|
@@ -194869,7 +194873,7 @@ async function list3(client2, argv2, args2, contextName) {
|
|
194869
194873
|
output2.warn(
|
194870
194874
|
`The following Node.js versions will be deprecated soon: ${upcomingDeprecationVersionsList.join(
|
194871
194875
|
", "
|
194872
|
-
)}.
|
194876
|
+
)}. Please upgrade your projects immediately.`
|
194873
194877
|
);
|
194874
194878
|
output2.log(
|
194875
194879
|
`For more information visit: https://vercel.com/docs/functions/serverless-functions/runtimes/node-js#node.js-version`
|
@@ -195016,9 +195020,9 @@ var init_command19 = __esm({
|
|
195016
195020
|
arguments: [],
|
195017
195021
|
options: [
|
195018
195022
|
{
|
195019
|
-
name: "
|
195020
|
-
description: "A list of projects affected by
|
195021
|
-
argument: "
|
195023
|
+
name: "update-required",
|
195024
|
+
description: "A list of projects affected by an upcoming deprecation",
|
195025
|
+
argument: "update-required",
|
195022
195026
|
shorthand: null,
|
195023
195027
|
type: "boolean",
|
195024
195028
|
deprecated: false,
|
@@ -195089,7 +195093,7 @@ async function main10(client2) {
|
|
195089
195093
|
argv2 = getArgs(client2.argv.slice(2), {
|
195090
195094
|
"--next": Number,
|
195091
195095
|
"-N": "--next",
|
195092
|
-
"--
|
195096
|
+
"--update-required": Boolean
|
195093
195097
|
});
|
195094
195098
|
} catch (error4) {
|
195095
195099
|
handleError(error4);
|
@@ -198441,12 +198445,12 @@ init_global_path();
|
|
198441
198445
|
// src/util/config/get-default.ts
|
198442
198446
|
var defaultGlobalConfig = {
|
198443
198447
|
"// Note": "This is your Vercel config file. For more information see the global configuration documentation.",
|
198444
|
-
"// Docs": "https://vercel.com/docs/project-configuration
|
198448
|
+
"// Docs": "https://vercel.com/docs/projects/project-configuration/global-configuration#config.json",
|
198445
198449
|
collectMetrics: true
|
198446
198450
|
};
|
198447
198451
|
var defaultAuthConfig = {
|
198448
198452
|
"// Note": "This is your Vercel credentials file. DO NOT SHARE!",
|
198449
|
-
"// Docs": "https://vercel.com/docs/project-configuration
|
198453
|
+
"// Docs": "https://vercel.com/docs/projects/project-configuration/global-configuration#auth.json"
|
198450
198454
|
};
|
198451
198455
|
|
198452
198456
|
// src/index.ts
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "vercel",
|
3
|
-
"version": "
|
3
|
+
"version": "33.0.1",
|
4
4
|
"preferGlobal": true,
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"description": "The command-line interface for Vercel",
|
@@ -21,17 +21,17 @@
|
|
21
21
|
"node": ">= 16"
|
22
22
|
},
|
23
23
|
"dependencies": {
|
24
|
-
"@vercel/build-utils": "7.
|
24
|
+
"@vercel/build-utils": "7.4.1",
|
25
25
|
"@vercel/fun": "1.1.0",
|
26
26
|
"@vercel/go": "3.0.4",
|
27
27
|
"@vercel/hydrogen": "1.0.1",
|
28
|
-
"@vercel/next": "4.0.
|
29
|
-
"@vercel/node": "3.0.
|
28
|
+
"@vercel/next": "4.0.16",
|
29
|
+
"@vercel/node": "3.0.14",
|
30
30
|
"@vercel/python": "4.1.0",
|
31
31
|
"@vercel/redwood": "2.0.5",
|
32
|
-
"@vercel/remix-builder": "2.0.
|
32
|
+
"@vercel/remix-builder": "2.0.15",
|
33
33
|
"@vercel/ruby": "2.0.4",
|
34
|
-
"@vercel/static-build": "2.0.
|
34
|
+
"@vercel/static-build": "2.0.16",
|
35
35
|
"chokidar": "3.3.1"
|
36
36
|
},
|
37
37
|
"devDependencies": {
|
@@ -78,11 +78,11 @@
|
|
78
78
|
"@types/yauzl-promise": "2.1.0",
|
79
79
|
"@vercel-internals/constants": "1.0.4",
|
80
80
|
"@vercel-internals/get-package-json": "1.0.0",
|
81
|
-
"@vercel-internals/types": "1.0.
|
82
|
-
"@vercel/client": "13.0.
|
81
|
+
"@vercel-internals/types": "1.0.19",
|
82
|
+
"@vercel/client": "13.0.12",
|
83
83
|
"@vercel/error-utils": "2.0.2",
|
84
|
-
"@vercel/frameworks": "2.0.
|
85
|
-
"@vercel/fs-detectors": "5.1.
|
84
|
+
"@vercel/frameworks": "2.0.6",
|
85
|
+
"@vercel/fs-detectors": "5.1.6",
|
86
86
|
"@vercel/routing-utils": "3.1.0",
|
87
87
|
"ajv": "6.12.2",
|
88
88
|
"alpha-sort": "2.0.1",
|