vercel 50.5.2 → 50.6.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 +108 -60
- package/package.json +15 -15
package/dist/index.js
CHANGED
|
@@ -872,7 +872,7 @@ var require_graceful_fs = __commonJS2({
|
|
|
872
872
|
}
|
|
873
873
|
function ReadStream$open() {
|
|
874
874
|
var that = this;
|
|
875
|
-
|
|
875
|
+
open9(that.path, that.flags, that.mode, function(err, fd) {
|
|
876
876
|
if (err) {
|
|
877
877
|
if (that.autoClose)
|
|
878
878
|
that.destroy();
|
|
@@ -892,7 +892,7 @@ var require_graceful_fs = __commonJS2({
|
|
|
892
892
|
}
|
|
893
893
|
function WriteStream$open() {
|
|
894
894
|
var that = this;
|
|
895
|
-
|
|
895
|
+
open9(that.path, that.flags, that.mode, function(err, fd) {
|
|
896
896
|
if (err) {
|
|
897
897
|
that.destroy();
|
|
898
898
|
that.emit("error", err);
|
|
@@ -909,8 +909,8 @@ var require_graceful_fs = __commonJS2({
|
|
|
909
909
|
return new fs16.WriteStream(path11, options);
|
|
910
910
|
}
|
|
911
911
|
var fs$open = fs16.open;
|
|
912
|
-
fs16.open =
|
|
913
|
-
function
|
|
912
|
+
fs16.open = open9;
|
|
913
|
+
function open9(path11, flags, mode, cb) {
|
|
914
914
|
if (typeof mode === "function")
|
|
915
915
|
cb = mode, mode = null;
|
|
916
916
|
return go$open(path11, flags, mode, cb);
|
|
@@ -4233,18 +4233,18 @@ var require_source = __commonJS2({
|
|
|
4233
4233
|
}
|
|
4234
4234
|
}
|
|
4235
4235
|
});
|
|
4236
|
-
var createStyler = (
|
|
4236
|
+
var createStyler = (open9, close2, parent) => {
|
|
4237
4237
|
let openAll;
|
|
4238
4238
|
let closeAll;
|
|
4239
4239
|
if (parent === void 0) {
|
|
4240
|
-
openAll =
|
|
4240
|
+
openAll = open9;
|
|
4241
4241
|
closeAll = close2;
|
|
4242
4242
|
} else {
|
|
4243
|
-
openAll = parent.openAll +
|
|
4243
|
+
openAll = parent.openAll + open9;
|
|
4244
4244
|
closeAll = close2 + parent.closeAll;
|
|
4245
4245
|
}
|
|
4246
4246
|
return {
|
|
4247
|
-
open:
|
|
4247
|
+
open: open9,
|
|
4248
4248
|
close: close2,
|
|
4249
4249
|
openAll,
|
|
4250
4250
|
closeAll,
|
|
@@ -7334,9 +7334,9 @@ var require_chalk = __commonJS2({
|
|
|
7334
7334
|
get() {
|
|
7335
7335
|
const level = this.level;
|
|
7336
7336
|
return function() {
|
|
7337
|
-
const
|
|
7337
|
+
const open9 = ansiStyles.color[levelMapping[level]][model].apply(null, arguments);
|
|
7338
7338
|
const codes = {
|
|
7339
|
-
open:
|
|
7339
|
+
open: open9,
|
|
7340
7340
|
close: ansiStyles.color.close,
|
|
7341
7341
|
closeRe: ansiStyles.color.closeRe
|
|
7342
7342
|
};
|
|
@@ -7355,9 +7355,9 @@ var require_chalk = __commonJS2({
|
|
|
7355
7355
|
get() {
|
|
7356
7356
|
const level = this.level;
|
|
7357
7357
|
return function() {
|
|
7358
|
-
const
|
|
7358
|
+
const open9 = ansiStyles.bgColor[levelMapping[level]][model].apply(null, arguments);
|
|
7359
7359
|
const codes = {
|
|
7360
|
-
open:
|
|
7360
|
+
open: open9,
|
|
7361
7361
|
close: ansiStyles.bgColor.close,
|
|
7362
7362
|
closeRe: ansiStyles.bgColor.closeRe
|
|
7363
7363
|
};
|
|
@@ -37264,18 +37264,18 @@ var require_source2 = __commonJS2({
|
|
|
37264
37264
|
}
|
|
37265
37265
|
}
|
|
37266
37266
|
});
|
|
37267
|
-
var createStyler = (
|
|
37267
|
+
var createStyler = (open9, close2, parent) => {
|
|
37268
37268
|
let openAll;
|
|
37269
37269
|
let closeAll;
|
|
37270
37270
|
if (parent === void 0) {
|
|
37271
|
-
openAll =
|
|
37271
|
+
openAll = open9;
|
|
37272
37272
|
closeAll = close2;
|
|
37273
37273
|
} else {
|
|
37274
|
-
openAll = parent.openAll +
|
|
37274
|
+
openAll = parent.openAll + open9;
|
|
37275
37275
|
closeAll = close2 + parent.closeAll;
|
|
37276
37276
|
}
|
|
37277
37277
|
return {
|
|
37278
|
-
open:
|
|
37278
|
+
open: open9,
|
|
37279
37279
|
close: close2,
|
|
37280
37280
|
openAll,
|
|
37281
37281
|
closeAll,
|
|
@@ -39557,11 +39557,11 @@ var require_yoctocolors_cjs = __commonJS2({
|
|
|
39557
39557
|
"../../node_modules/.pnpm/yoctocolors-cjs@2.1.3/node_modules/yoctocolors-cjs/index.js"(exports2, module2) {
|
|
39558
39558
|
var tty = __require("tty");
|
|
39559
39559
|
var hasColors = tty?.WriteStream?.prototype?.hasColors?.() ?? false;
|
|
39560
|
-
var format8 = (
|
|
39560
|
+
var format8 = (open9, close2) => {
|
|
39561
39561
|
if (!hasColors) {
|
|
39562
39562
|
return (input) => input;
|
|
39563
39563
|
}
|
|
39564
|
-
const openCode = `\x1B[${
|
|
39564
|
+
const openCode = `\x1B[${open9}m`;
|
|
39565
39565
|
const closeCode = `\x1B[${close2}m`;
|
|
39566
39566
|
return (input) => {
|
|
39567
39567
|
const string = input + "";
|
|
@@ -46321,7 +46321,7 @@ var require_open = __commonJS2({
|
|
|
46321
46321
|
subprocess.unref();
|
|
46322
46322
|
return subprocess;
|
|
46323
46323
|
};
|
|
46324
|
-
var
|
|
46324
|
+
var open9 = (target, options) => {
|
|
46325
46325
|
if (typeof target !== "string") {
|
|
46326
46326
|
throw new TypeError("Expected a `target`");
|
|
46327
46327
|
}
|
|
@@ -46390,9 +46390,9 @@ var require_open = __commonJS2({
|
|
|
46390
46390
|
}, {
|
|
46391
46391
|
wsl: "/mnt/c/Program Files (x86)/Microsoft/Edge/Application/msedge.exe"
|
|
46392
46392
|
}));
|
|
46393
|
-
|
|
46394
|
-
|
|
46395
|
-
module2.exports =
|
|
46393
|
+
open9.apps = apps;
|
|
46394
|
+
open9.openApp = openApp;
|
|
46395
|
+
module2.exports = open9;
|
|
46396
46396
|
}
|
|
46397
46397
|
});
|
|
46398
46398
|
|
|
@@ -54408,9 +54408,9 @@ var require_is_glob = __commonJS2({
|
|
|
54408
54408
|
}
|
|
54409
54409
|
}
|
|
54410
54410
|
if (str[index] === "\\") {
|
|
54411
|
-
var
|
|
54411
|
+
var open9 = str[index + 1];
|
|
54412
54412
|
index += 2;
|
|
54413
|
-
var close2 = chars2[
|
|
54413
|
+
var close2 = chars2[open9];
|
|
54414
54414
|
if (close2) {
|
|
54415
54415
|
var n = str.indexOf(close2, index);
|
|
54416
54416
|
if (n !== -1) {
|
|
@@ -54436,9 +54436,9 @@ var require_is_glob = __commonJS2({
|
|
|
54436
54436
|
return true;
|
|
54437
54437
|
}
|
|
54438
54438
|
if (str[index] === "\\") {
|
|
54439
|
-
var
|
|
54439
|
+
var open9 = str[index + 1];
|
|
54440
54440
|
index += 2;
|
|
54441
|
-
var close2 = chars2[
|
|
54441
|
+
var close2 = chars2[open9];
|
|
54442
54442
|
if (close2) {
|
|
54443
54443
|
var n = str.indexOf(close2, index);
|
|
54444
54444
|
if (n !== -1) {
|
|
@@ -55426,7 +55426,7 @@ var require_parse2 = __commonJS2({
|
|
|
55426
55426
|
continue;
|
|
55427
55427
|
}
|
|
55428
55428
|
if (value === CHAR_DOUBLE_QUOTE || value === CHAR_SINGLE_QUOTE || value === CHAR_BACKTICK) {
|
|
55429
|
-
const
|
|
55429
|
+
const open9 = value;
|
|
55430
55430
|
let next;
|
|
55431
55431
|
if (options.keepQuotes !== true) {
|
|
55432
55432
|
value = "";
|
|
@@ -55436,7 +55436,7 @@ var require_parse2 = __commonJS2({
|
|
|
55436
55436
|
value += next + advance();
|
|
55437
55437
|
continue;
|
|
55438
55438
|
}
|
|
55439
|
-
if (next ===
|
|
55439
|
+
if (next === open9) {
|
|
55440
55440
|
if (options.keepQuotes === true)
|
|
55441
55441
|
value += next;
|
|
55442
55442
|
break;
|
|
@@ -55480,8 +55480,8 @@ var require_parse2 = __commonJS2({
|
|
|
55480
55480
|
if (value === CHAR_COMMA2 && depth > 0) {
|
|
55481
55481
|
if (block.ranges > 0) {
|
|
55482
55482
|
block.ranges = 0;
|
|
55483
|
-
const
|
|
55484
|
-
block.nodes = [
|
|
55483
|
+
const open9 = block.nodes.shift();
|
|
55484
|
+
block.nodes = [open9, { type: "text", value: stringify2(block) }];
|
|
55485
55485
|
}
|
|
55486
55486
|
push({ type: "comma", value });
|
|
55487
55487
|
block.commas++;
|
|
@@ -56584,15 +56584,15 @@ var require_parse3 = __commonJS2({
|
|
|
56584
56584
|
}
|
|
56585
56585
|
if (value === "{" && opts.nobrace !== true) {
|
|
56586
56586
|
increment("braces");
|
|
56587
|
-
const
|
|
56587
|
+
const open9 = {
|
|
56588
56588
|
type: "brace",
|
|
56589
56589
|
value,
|
|
56590
56590
|
output: "(",
|
|
56591
56591
|
outputIndex: state.output.length,
|
|
56592
56592
|
tokensIndex: state.tokens.length
|
|
56593
56593
|
};
|
|
56594
|
-
braces.push(
|
|
56595
|
-
push(
|
|
56594
|
+
braces.push(open9);
|
|
56595
|
+
push(open9);
|
|
56596
56596
|
continue;
|
|
56597
56597
|
}
|
|
56598
56598
|
if (value === "}") {
|
|
@@ -95260,10 +95260,18 @@ async function executeUpgrade() {
|
|
|
95260
95260
|
output_manager_default.log(`Upgrading Vercel CLI...`);
|
|
95261
95261
|
output_manager_default.debug(`Executing: ${updateCommand}`);
|
|
95262
95262
|
return new Promise((resolve14) => {
|
|
95263
|
+
const stdout = [];
|
|
95264
|
+
const stderr = [];
|
|
95263
95265
|
const upgradeProcess = spawn3(command, args2, {
|
|
95264
|
-
stdio: "inherit",
|
|
95266
|
+
stdio: ["inherit", "pipe", "pipe"],
|
|
95265
95267
|
shell: false
|
|
95266
95268
|
});
|
|
95269
|
+
upgradeProcess.stdout?.on("data", (data) => {
|
|
95270
|
+
stdout.push(data);
|
|
95271
|
+
});
|
|
95272
|
+
upgradeProcess.stderr?.on("data", (data) => {
|
|
95273
|
+
stderr.push(data);
|
|
95274
|
+
});
|
|
95267
95275
|
upgradeProcess.on("error", (err) => {
|
|
95268
95276
|
output_manager_default.error(`Failed to execute upgrade command: ${err.message}`);
|
|
95269
95277
|
output_manager_default.log(`You can try running the command manually: ${updateCommand}`);
|
|
@@ -95272,6 +95280,19 @@ async function executeUpgrade() {
|
|
|
95272
95280
|
upgradeProcess.on("close", (code2) => {
|
|
95273
95281
|
if (code2 === 0) {
|
|
95274
95282
|
output_manager_default.success("Vercel CLI has been upgraded successfully!");
|
|
95283
|
+
} else {
|
|
95284
|
+
const stdoutStr = Buffer.concat(stdout).toString();
|
|
95285
|
+
const stderrStr = Buffer.concat(stderr).toString();
|
|
95286
|
+
if (stdoutStr) {
|
|
95287
|
+
output_manager_default.print(stdoutStr);
|
|
95288
|
+
}
|
|
95289
|
+
if (stderrStr) {
|
|
95290
|
+
output_manager_default.print(stderrStr);
|
|
95291
|
+
}
|
|
95292
|
+
output_manager_default.error(`Upgrade failed with exit code ${code2 ?? "unknown"}`);
|
|
95293
|
+
output_manager_default.log(
|
|
95294
|
+
`You can try running the command manually: ${updateCommand}`
|
|
95295
|
+
);
|
|
95275
95296
|
}
|
|
95276
95297
|
resolve14(code2 ?? 1);
|
|
95277
95298
|
});
|
|
@@ -133160,8 +133181,8 @@ var init_bisect = __esm({
|
|
|
133160
133181
|
});
|
|
133161
133182
|
}
|
|
133162
133183
|
}
|
|
133163
|
-
trackCliFlagOpen(
|
|
133164
|
-
if (
|
|
133184
|
+
trackCliFlagOpen(open9) {
|
|
133185
|
+
if (open9) {
|
|
133165
133186
|
this.trackCliFlag("open");
|
|
133166
133187
|
}
|
|
133167
133188
|
}
|
|
@@ -137155,8 +137176,8 @@ var require_dist21 = __commonJS2({
|
|
|
137155
137176
|
result.push(path11);
|
|
137156
137177
|
path11 = "";
|
|
137157
137178
|
}
|
|
137158
|
-
var
|
|
137159
|
-
if (
|
|
137179
|
+
var open9 = tryConsume("OPEN");
|
|
137180
|
+
if (open9) {
|
|
137160
137181
|
var prefix = consumeText();
|
|
137161
137182
|
var name_1 = tryConsume("NAME") || "";
|
|
137162
137183
|
var pattern_1 = tryConsume("PATTERN") || "";
|
|
@@ -137543,8 +137564,8 @@ var require_dist22 = __commonJS2({
|
|
|
137543
137564
|
result.push(path11);
|
|
137544
137565
|
path11 = "";
|
|
137545
137566
|
}
|
|
137546
|
-
var
|
|
137547
|
-
if (
|
|
137567
|
+
var open9 = tryConsume("OPEN");
|
|
137568
|
+
if (open9) {
|
|
137548
137569
|
var prefix = consumeText();
|
|
137549
137570
|
var name_1 = tryConsume("NAME") || "";
|
|
137550
137571
|
var pattern_1 = tryConsume("PATTERN") || "";
|
|
@@ -149448,7 +149469,7 @@ var require_yauzl = __commonJS2({
|
|
|
149448
149469
|
var Transform = __require("stream").Transform;
|
|
149449
149470
|
var PassThrough = __require("stream").PassThrough;
|
|
149450
149471
|
var Writable = __require("stream").Writable;
|
|
149451
|
-
exports2.open =
|
|
149472
|
+
exports2.open = open9;
|
|
149452
149473
|
exports2.fromFd = fromFd;
|
|
149453
149474
|
exports2.fromBuffer = fromBuffer;
|
|
149454
149475
|
exports2.fromRandomAccessReader = fromRandomAccessReader;
|
|
@@ -149457,7 +149478,7 @@ var require_yauzl = __commonJS2({
|
|
|
149457
149478
|
exports2.ZipFile = ZipFile;
|
|
149458
149479
|
exports2.Entry = Entry;
|
|
149459
149480
|
exports2.RandomAccessReader = RandomAccessReader;
|
|
149460
|
-
function
|
|
149481
|
+
function open9(path11, options, callback) {
|
|
149461
149482
|
if (typeof options === "function") {
|
|
149462
149483
|
callback = options;
|
|
149463
149484
|
options = null;
|
|
@@ -195879,6 +195900,7 @@ function checkGuidanceStatus({ config: config2 }) {
|
|
|
195879
195900
|
}
|
|
195880
195901
|
|
|
195881
195902
|
// src/index.ts
|
|
195903
|
+
var import_open8 = __toESM3(require_open(), 1);
|
|
195882
195904
|
import { determineAgent as determineAgent4 } from "@vercel/detect-agent";
|
|
195883
195905
|
try {
|
|
195884
195906
|
process.cwd();
|
|
@@ -196572,33 +196594,59 @@ var main18 = async () => {
|
|
|
196572
196594
|
return exitCode2;
|
|
196573
196595
|
};
|
|
196574
196596
|
main18().then(async (exitCode2) => {
|
|
196575
|
-
if (
|
|
196597
|
+
if (!process.env.NO_UPDATE_NOTIFIER) {
|
|
196576
196598
|
const latest = getLatestVersion({
|
|
196577
196599
|
pkg: pkg_default
|
|
196578
196600
|
});
|
|
196579
196601
|
if (latest) {
|
|
196580
196602
|
const changelog = "https://github.com/vercel/vercel/releases";
|
|
196581
|
-
|
|
196582
|
-
|
|
196603
|
+
if (isTTY2) {
|
|
196604
|
+
const errorMsg = exitCode2 && exitCode2 !== 2 ? import_chalk144.default.magenta(
|
|
196605
|
+
` The latest update ${import_chalk144.default.italic(
|
|
196606
|
+
"may"
|
|
196607
|
+
)} fix any errors that occurred.`
|
|
196608
|
+
) : "";
|
|
196609
|
+
output_manager_default.print(
|
|
196610
|
+
`
|
|
196611
|
+
Update available for Vercel CLI (${import_chalk144.default.gray(
|
|
196612
|
+
`v${pkg_default.version}`
|
|
196613
|
+
)} \u2192 ${import_chalk144.default.green(`v${latest}`)})${errorMsg}
|
|
196614
|
+
`
|
|
196615
|
+
);
|
|
196616
|
+
const action = await client.input.expand({
|
|
196617
|
+
message: "What would you like to do?",
|
|
196618
|
+
default: "u",
|
|
196619
|
+
choices: [
|
|
196620
|
+
{ key: "u", name: "Upgrade now", value: "upgrade" },
|
|
196621
|
+
{ key: "c", name: "View changelog", value: "changelog" },
|
|
196622
|
+
{ key: "s", name: "Skip", value: "skip" }
|
|
196623
|
+
]
|
|
196624
|
+
});
|
|
196625
|
+
if (action === "upgrade") {
|
|
196626
|
+
const upgradeExitCode = await executeUpgrade();
|
|
196627
|
+
process.exitCode = upgradeExitCode;
|
|
196628
|
+
return;
|
|
196629
|
+
} else if (action === "changelog") {
|
|
196630
|
+
await (0, import_open8.default)(changelog);
|
|
196631
|
+
}
|
|
196632
|
+
} else {
|
|
196633
|
+
const errorMsg = exitCode2 && exitCode2 !== 2 ? import_chalk144.default.magenta(
|
|
196634
|
+
`
|
|
196583
196635
|
|
|
196584
196636
|
The latest update ${import_chalk144.default.italic(
|
|
196585
|
-
|
|
196586
|
-
|
|
196587
|
-
|
|
196588
|
-
|
|
196589
|
-
|
|
196590
|
-
|
|
196591
|
-
|
|
196592
|
-
|
|
196637
|
+
"may"
|
|
196638
|
+
)} fix any errors that occurred.`
|
|
196639
|
+
) : "";
|
|
196640
|
+
output_manager_default.print(
|
|
196641
|
+
box(
|
|
196642
|
+
`Update available! ${import_chalk144.default.gray(`v${pkg_default.version}`)} \u226B ${import_chalk144.default.green(
|
|
196643
|
+
`v${latest}`
|
|
196644
|
+
)}
|
|
196593
196645
|
Changelog: ${output_manager_default.link(changelog, changelog, { fallback: false })}
|
|
196594
196646
|
Run ${import_chalk144.default.cyan(cmd(await getUpdateCommand()))} to update.${errorMsg}`
|
|
196595
|
-
|
|
196596
|
-
|
|
196597
|
-
|
|
196598
|
-
if (await client.input.confirm("Upgrade now?", true)) {
|
|
196599
|
-
const upgradeExitCode = await executeUpgrade();
|
|
196600
|
-
process.exitCode = upgradeExitCode;
|
|
196601
|
-
return;
|
|
196647
|
+
)
|
|
196648
|
+
);
|
|
196649
|
+
output_manager_default.print("\n");
|
|
196602
196650
|
}
|
|
196603
196651
|
}
|
|
196604
196652
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vercel",
|
|
3
|
-
"version": "50.
|
|
3
|
+
"version": "50.6.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"preferGlobal": true,
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -28,26 +28,26 @@
|
|
|
28
28
|
"esbuild": "0.27.0",
|
|
29
29
|
"form-data": "^4.0.0",
|
|
30
30
|
"jose": "5.9.6",
|
|
31
|
-
"@vercel/backends": "0.0.23",
|
|
32
|
-
"@vercel/build-utils": "13.2.16",
|
|
33
|
-
"@vercel/detect-agent": "1.1.0",
|
|
34
|
-
"@vercel/elysia": "0.1.27",
|
|
35
31
|
"@vercel/express": "0.1.34",
|
|
32
|
+
"@vercel/elysia": "0.1.27",
|
|
36
33
|
"@vercel/go": "3.3.4",
|
|
37
34
|
"@vercel/fastify": "0.1.30",
|
|
38
|
-
"@vercel/h3": "0.1.36",
|
|
39
35
|
"@vercel/hono": "0.2.30",
|
|
40
|
-
"@vercel/
|
|
36
|
+
"@vercel/h3": "0.1.36",
|
|
41
37
|
"@vercel/koa": "0.1.10",
|
|
38
|
+
"@vercel/hydrogen": "1.3.5",
|
|
39
|
+
"@vercel/next": "4.15.17",
|
|
42
40
|
"@vercel/nestjs": "0.2.31",
|
|
43
|
-
"@vercel/node": "5.5.28",
|
|
44
|
-
"@vercel/python": "6.3.2",
|
|
45
|
-
"@vercel/next": "4.15.16",
|
|
46
41
|
"@vercel/redwood": "2.4.9",
|
|
42
|
+
"@vercel/python": "6.3.2",
|
|
47
43
|
"@vercel/remix-builder": "5.5.9",
|
|
48
44
|
"@vercel/ruby": "2.2.4",
|
|
49
45
|
"@vercel/rust": "1.0.5",
|
|
50
|
-
"@vercel/static-build": "2.8.28"
|
|
46
|
+
"@vercel/static-build": "2.8.28",
|
|
47
|
+
"@vercel/node": "5.5.28",
|
|
48
|
+
"@vercel/backends": "0.0.23",
|
|
49
|
+
"@vercel/build-utils": "13.2.16",
|
|
50
|
+
"@vercel/detect-agent": "1.1.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@alex_neo/jest-expect-message": "1.0.5",
|
|
@@ -172,14 +172,14 @@
|
|
|
172
172
|
"write-json-file": "2.2.0",
|
|
173
173
|
"xdg-app-paths": "5.1.0",
|
|
174
174
|
"yauzl-promise": "2.1.3",
|
|
175
|
-
"@vercel-internals/constants": "1.0.4",
|
|
176
|
-
"@vercel-internals/get-package-json": "1.0.0",
|
|
177
175
|
"@vercel-internals/types": "3.0.6",
|
|
176
|
+
"@vercel-internals/get-package-json": "1.0.0",
|
|
177
|
+
"@vercel/error-utils": "2.0.3",
|
|
178
|
+
"@vercel-internals/constants": "1.0.4",
|
|
178
179
|
"@vercel/client": "17.2.30",
|
|
179
180
|
"@vercel/frameworks": "3.15.7",
|
|
180
181
|
"@vercel/fs-detectors": "5.7.16",
|
|
181
|
-
"@vercel/routing-utils": "5.3.2"
|
|
182
|
-
"@vercel/error-utils": "2.0.3"
|
|
182
|
+
"@vercel/routing-utils": "5.3.2"
|
|
183
183
|
},
|
|
184
184
|
"scripts": {
|
|
185
185
|
"test": "jest --reporters=default --reporters=jest-junit --env node --verbose --bail",
|