vercel 32.7.0 → 32.7.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/dist/index.js +13 -13
- package/package.json +2 -2
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 = void 0;
|
52625
|
+
SENTRY_DSN = void 0;
|
52626
52626
|
}
|
52627
52627
|
});
|
52628
52628
|
|
@@ -194842,12 +194842,15 @@ async function list3(client2, argv2, args2, contextName) {
|
|
194842
194842
|
}
|
194843
194843
|
const start = Date.now();
|
194844
194844
|
output2.spinner(`Fetching projects in ${import_chalk91.default.bold(contextName)}`);
|
194845
|
-
let projectsUrl =
|
194845
|
+
let projectsUrl = `/v4/projects/?limit=20`;
|
194846
|
+
const deprecated = argv2["--deprecated"] || false;
|
194847
|
+
if (deprecated) {
|
194848
|
+
projectsUrl += `&deprecated=${deprecated}`;
|
194849
|
+
}
|
194846
194850
|
const next = argv2["--next"] || false;
|
194847
194851
|
if (next) {
|
194848
194852
|
projectsUrl += `&until=${next}`;
|
194849
194853
|
}
|
194850
|
-
const deprecated = argv2["--deprecated"] || false;
|
194851
194854
|
let {
|
194852
194855
|
projects: projectList,
|
194853
194856
|
pagination
|
@@ -194857,15 +194860,12 @@ async function list3(client2, argv2, args2, contextName) {
|
|
194857
194860
|
output2.stopSpinner();
|
194858
194861
|
const elapsed2 = (0, import_ms19.default)(Date.now() - start);
|
194859
194862
|
if (deprecated) {
|
194860
|
-
const
|
194861
|
-
|
194862
|
-
|
194863
|
-
|
194864
|
-
|
194865
|
-
|
194866
|
-
projectList = projectList.filter(
|
194867
|
-
(project) => project.nodeVersion && upcomingDeprecationVersionsList.includes(project.nodeVersion)
|
194868
|
-
);
|
194863
|
+
const upcomingDeprecationVersionsList = [];
|
194864
|
+
for (const nodeVersion of import_build_utils18.NODE_VERSIONS) {
|
194865
|
+
if (nodeVersion.discontinueDate && nodeVersion.discontinueDate.valueOf() > Date.now()) {
|
194866
|
+
upcomingDeprecationVersionsList.push(nodeVersion.range);
|
194867
|
+
}
|
194868
|
+
}
|
194869
194869
|
output2.warn(
|
194870
194870
|
`The following Node.js versions will be deprecated soon: ${upcomingDeprecationVersionsList.join(
|
194871
194871
|
", "
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "vercel",
|
3
|
-
"version": "32.7.
|
3
|
+
"version": "32.7.2",
|
4
4
|
"preferGlobal": true,
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"description": "The command-line interface for Vercel",
|
@@ -29,7 +29,7 @@
|
|
29
29
|
"@vercel/node": "3.0.12",
|
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.14",
|
33
33
|
"@vercel/ruby": "2.0.4",
|
34
34
|
"@vercel/static-build": "2.0.14",
|
35
35
|
"chokidar": "3.3.1"
|