vercel 27.3.8 → 27.4.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 +63 -25
- package/package.json +4 -4
package/dist/index.js
CHANGED
@@ -238082,6 +238082,7 @@ const help = () => {
|
|
238082
238082
|
-t ${chalk_1.default.bold.underline('TOKEN')}, --token=${chalk_1.default.bold.underline('TOKEN')} Login token
|
238083
238083
|
-S, --scope Set a custom scope
|
238084
238084
|
-N, --next Show next page of results
|
238085
|
+
-y, --yes Skip the confirmation prompt when removing an alias
|
238085
238086
|
|
238086
238087
|
${chalk_1.default.dim('Examples:')}
|
238087
238088
|
|
@@ -238923,7 +238924,7 @@ const help = () => {
|
|
238923
238924
|
--output [path] Directory where built assets should be written to
|
238924
238925
|
--prod Build a production deployment
|
238925
238926
|
-d, --debug Debug mode [off]
|
238926
|
-
-y, --yes
|
238927
|
+
-y, --yes Pull environment variables and project settings if not found locally
|
238927
238928
|
|
238928
238929
|
${chalk_1.default.dim('Examples:')}
|
238929
238930
|
|
@@ -239953,7 +239954,7 @@ const help = () => `
|
|
239953
239954
|
-S, --scope Set a custom scope
|
239954
239955
|
--regions Set default regions to enable the deployment on
|
239955
239956
|
--prod Create a production deployment
|
239956
|
-
-
|
239957
|
+
-y, --yes Skip questions when setting up new project using default scope and settings
|
239957
239958
|
|
239958
239959
|
${chalk_1.default.dim('Examples:')}
|
239959
239960
|
|
@@ -240068,19 +240069,25 @@ exports.default = async (client) => {
|
|
240068
240069
|
'--regions': String,
|
240069
240070
|
'--prebuilt': Boolean,
|
240070
240071
|
'--prod': Boolean,
|
240071
|
-
'--
|
240072
|
+
'--yes': Boolean,
|
240072
240073
|
'-f': '--force',
|
240073
240074
|
'-p': '--public',
|
240074
240075
|
'-e': '--env',
|
240075
240076
|
'-b': '--build-env',
|
240076
240077
|
'-m': '--meta',
|
240077
|
-
'-
|
240078
|
+
'-y': '--yes',
|
240078
240079
|
// deprecated
|
240079
240080
|
'--name': String,
|
240080
240081
|
'-n': '--name',
|
240081
240082
|
'--no-clipboard': Boolean,
|
240082
240083
|
'--target': String,
|
240084
|
+
'--confirm': Boolean,
|
240085
|
+
'-c': '--confirm',
|
240083
240086
|
});
|
240087
|
+
if ('--confirm' in argv) {
|
240088
|
+
output.warn('`--confirm` is deprecated, please use `--yes` instead');
|
240089
|
+
argv['--yes'] = argv['--confirm'];
|
240090
|
+
}
|
240084
240091
|
}
|
240085
240092
|
catch (error) {
|
240086
240093
|
(0, error_1.handleError)(error);
|
@@ -240138,7 +240145,7 @@ exports.default = async (client) => {
|
|
240138
240145
|
return pathValidation.exitCode;
|
240139
240146
|
}
|
240140
240147
|
const { path } = pathValidation;
|
240141
|
-
const autoConfirm = argv['--
|
240148
|
+
const autoConfirm = argv['--yes'];
|
240142
240149
|
// deprecate --name
|
240143
240150
|
if (argv['--name']) {
|
240144
240151
|
output.print(`${(0, emoji_1.prependEmoji)(`The ${(0, param_1.default)('--name')} option is deprecated (https://vercel.link/name-flag)`, (0, emoji_1.emoji)('warning'))}\n`);
|
@@ -240615,7 +240622,7 @@ async function dev(client, opts, args) {
|
|
240615
240622
|
]);
|
240616
240623
|
if (link.status === 'not_linked' && !process.env.__VERCEL_SKIP_DEV_CMD) {
|
240617
240624
|
link = await (0, setup_and_link_1.default)(client, cwd, {
|
240618
|
-
autoConfirm: opts['--
|
240625
|
+
autoConfirm: opts['--yes'],
|
240619
240626
|
successEmoji: 'link',
|
240620
240627
|
setupMsg: 'Set up and develop',
|
240621
240628
|
});
|
@@ -240626,7 +240633,7 @@ async function dev(client, opts, args) {
|
|
240626
240633
|
}
|
240627
240634
|
if (link.status === 'error') {
|
240628
240635
|
if (link.reason === 'HEADLESS') {
|
240629
|
-
client.output.error(`Command ${(0, pkg_name_1.getCommandName)('dev')} requires confirmation. Use option ${(0, param_1.default)('--
|
240636
|
+
client.output.error(`Command ${(0, pkg_name_1.getCommandName)('dev')} requires confirmation. Use option ${(0, param_1.default)('--yes')} to confirm.`);
|
240630
240637
|
}
|
240631
240638
|
return link.exitCode;
|
240632
240639
|
}
|
@@ -240728,7 +240735,7 @@ const help = () => {
|
|
240728
240735
|
-d, --debug Debug mode [off]
|
240729
240736
|
-l, --listen [uri] Specify a URI endpoint on which to listen [0.0.0.0:3000]
|
240730
240737
|
-t, --token [token] Specify an Authorization Token
|
240731
|
-
--
|
240738
|
+
-y, --yes Skip questions when setting up new project using default scope and settings
|
240732
240739
|
|
240733
240740
|
${chalk_1.default.dim('Examples:')}
|
240734
240741
|
|
@@ -240757,12 +240764,19 @@ async function main(client) {
|
|
240757
240764
|
argv = (0, get_args_1.default)(client.argv.slice(2), {
|
240758
240765
|
'--listen': String,
|
240759
240766
|
'-l': '--listen',
|
240760
|
-
'--
|
240767
|
+
'--yes': Boolean,
|
240768
|
+
'-y': '--yes',
|
240761
240769
|
// Deprecated
|
240762
240770
|
'--port': Number,
|
240763
240771
|
'-p': '--port',
|
240772
|
+
'--confirm': Boolean,
|
240773
|
+
'-c': '--confirm',
|
240764
240774
|
});
|
240765
240775
|
args = (0, get_subcommand_1.default)(argv._.slice(1), COMMAND_CONFIG).args;
|
240776
|
+
if ('--confirm' in argv) {
|
240777
|
+
output.warn('`--confirm` is deprecated, please use `--yes` instead');
|
240778
|
+
argv['--yes'] = argv['--confirm'];
|
240779
|
+
}
|
240766
240780
|
if ('--port' in argv) {
|
240767
240781
|
output.warn('`--port` is deprecated, please use `--listen` instead');
|
240768
240782
|
argv['--listen'] = String(argv['--port']);
|
@@ -241511,6 +241525,7 @@ const help = () => {
|
|
241511
241525
|
-t ${chalk_1.default.bold.underline('TOKEN')}, --token=${chalk_1.default.bold.underline('TOKEN')} Login token
|
241512
241526
|
-S, --scope Set a custom scope
|
241513
241527
|
-N, --next Show next page of results
|
241528
|
+
-y, --yes Skip the confirmation prompt when removing a domain
|
241514
241529
|
|
241515
241530
|
${chalk_1.default.dim('Examples:')}
|
241516
241531
|
|
@@ -241547,6 +241562,7 @@ async function main(client) {
|
|
241547
241562
|
'--force': Boolean,
|
241548
241563
|
'--next': Number,
|
241549
241564
|
'-N': '--next',
|
241565
|
+
'-y': '--yes',
|
241550
241566
|
});
|
241551
241567
|
}
|
241552
241568
|
catch (error) {
|
@@ -242382,6 +242398,7 @@ const help = () => {
|
|
242382
242398
|
-Q ${chalk_1.default.bold.underline('DIR')}, --global-config=${chalk_1.default.bold.underline('DIR')} Path to the global ${'`.vercel`'} directory
|
242383
242399
|
-d, --debug Debug mode [off]
|
242384
242400
|
-t ${chalk_1.default.bold.underline('TOKEN')}, --token=${chalk_1.default.bold.underline('TOKEN')} Login token
|
242401
|
+
-y, --yes Skip the confirmation prompt when overwriting env file on pull or removing an env variable
|
242385
242402
|
|
242386
242403
|
${chalk_1.default.dim('Examples:')}
|
242387
242404
|
|
@@ -242797,7 +242814,7 @@ const connect_git_provider_1 = __webpack_require__(35650);
|
|
242797
242814
|
const validate_paths_1 = __importDefault(__webpack_require__(54579));
|
242798
242815
|
async function connect(client, argv, args, project, org) {
|
242799
242816
|
const { output } = client;
|
242800
|
-
const confirm = Boolean(argv['--
|
242817
|
+
const confirm = Boolean(argv['--yes']);
|
242801
242818
|
if (args.length !== 0) {
|
242802
242819
|
output.error(`Invalid number of arguments. Usage: ${chalk_1.default.cyan(`${(0, pkg_name_1.getCommandName)('project connect')}`)}`);
|
242803
242820
|
return 2;
|
@@ -242979,13 +242996,14 @@ const help = () => {
|
|
242979
242996
|
|
242980
242997
|
${chalk_1.default.dim('Commands:')}
|
242981
242998
|
|
242982
|
-
connect
|
242983
|
-
disconnect
|
242999
|
+
connect Connect your Git config "origin" remote as a Git provider to your project
|
243000
|
+
disconnect Disconnect the Git provider repository from your project
|
242984
243001
|
|
242985
243002
|
${chalk_1.default.dim('Options:')}
|
242986
243003
|
|
242987
|
-
-h, --help
|
242988
|
-
-t ${chalk_1.default.bold.underline('TOKEN')}, --token=${chalk_1.default.bold.underline('TOKEN')}
|
243004
|
+
-h, --help Output usage information
|
243005
|
+
-t ${chalk_1.default.bold.underline('TOKEN')}, --token=${chalk_1.default.bold.underline('TOKEN')} Login token
|
243006
|
+
-y, --yes Skip questions when setting up new project using default scope and settings
|
242989
243007
|
|
242990
243008
|
${chalk_1.default.dim('Examples:')}
|
242991
243009
|
|
@@ -243007,7 +243025,11 @@ async function main(client) {
|
|
243007
243025
|
let subcommand;
|
243008
243026
|
try {
|
243009
243027
|
argv = (0, get_args_1.default)(client.argv.slice(2), {
|
243010
|
-
'--
|
243028
|
+
'--yes': Boolean,
|
243029
|
+
'-y': '--yes',
|
243030
|
+
// deprecated
|
243031
|
+
'-c': '--yes',
|
243032
|
+
'--confirm': '--yes',
|
243011
243033
|
});
|
243012
243034
|
}
|
243013
243035
|
catch (error) {
|
@@ -243021,7 +243043,7 @@ async function main(client) {
|
|
243021
243043
|
argv._ = argv._.slice(1);
|
243022
243044
|
subcommand = argv._[0];
|
243023
243045
|
const args = argv._.slice(1);
|
243024
|
-
const confirm = Boolean(argv['--
|
243046
|
+
const confirm = Boolean(argv['--yes']);
|
243025
243047
|
const { output } = client;
|
243026
243048
|
let paths = [process.cwd()];
|
243027
243049
|
const pathValidation = await (0, validate_paths_1.default)(client, paths);
|
@@ -243550,7 +243572,7 @@ const help = () => {
|
|
243550
243572
|
-d, --debug Debug mode [off]
|
243551
243573
|
-t ${chalk_1.default.bold.underline('TOKEN')}, --token=${chalk_1.default.bold.underline('TOKEN')} Login token
|
243552
243574
|
-p ${chalk_1.default.bold.underline('NAME')}, --project=${chalk_1.default.bold.underline('NAME')} Project name
|
243553
|
-
--
|
243575
|
+
-y, --yes Skip questions when setting up new project using default scope and settings
|
243554
243576
|
|
243555
243577
|
${chalk_1.default.dim('Examples:')}
|
243556
243578
|
|
@@ -243560,7 +243582,7 @@ const help = () => {
|
|
243560
243582
|
|
243561
243583
|
${chalk_1.default.gray('–')} Link current directory with default options and skip questions
|
243562
243584
|
|
243563
|
-
${chalk_1.default.cyan(`$ ${(0, pkg_name_1.getPkgName)()} link --
|
243585
|
+
${chalk_1.default.cyan(`$ ${(0, pkg_name_1.getPkgName)()} link --yes`)}
|
243564
243586
|
|
243565
243587
|
${chalk_1.default.gray('–')} Link a specific directory to a Vercel Project
|
243566
243588
|
|
@@ -243569,25 +243591,33 @@ const help = () => {
|
|
243569
243591
|
};
|
243570
243592
|
async function main(client) {
|
243571
243593
|
const argv = (0, get_args_1.default)(client.argv.slice(2), {
|
243572
|
-
'--
|
243594
|
+
'--yes': Boolean,
|
243595
|
+
'-y': '--yes',
|
243573
243596
|
'--project': String,
|
243574
243597
|
'-p': '--project',
|
243598
|
+
// deprecated
|
243599
|
+
'--confirm': Boolean,
|
243600
|
+
'-c': '--confirm',
|
243575
243601
|
});
|
243576
243602
|
if (argv['--help']) {
|
243577
243603
|
help();
|
243578
243604
|
return 2;
|
243579
243605
|
}
|
243606
|
+
if ('--confirm' in argv) {
|
243607
|
+
client.output.warn('`--confirm` is deprecated, please use `--yes` instead');
|
243608
|
+
argv['--yes'] = argv['--confirm'];
|
243609
|
+
}
|
243580
243610
|
const cwd = argv._[1] || process.cwd();
|
243581
243611
|
const link = await (0, setup_and_link_1.default)(client, cwd, {
|
243582
243612
|
forceDelete: true,
|
243583
|
-
autoConfirm: argv['--
|
243613
|
+
autoConfirm: argv['--yes'],
|
243584
243614
|
projectName: argv['--project'],
|
243585
243615
|
successEmoji: 'success',
|
243586
243616
|
setupMsg: 'Set up',
|
243587
243617
|
});
|
243588
243618
|
if (link.status === 'error') {
|
243589
243619
|
if (link.reason === 'HEADLESS') {
|
243590
|
-
client.output.error(`Command ${(0, pkg_name_2.getCommandName)('link')} requires confirmation. Use option ${(0, param_1.default)('--
|
243620
|
+
client.output.error(`Command ${(0, pkg_name_2.getCommandName)('link')} requires confirmation. Use option ${(0, param_1.default)('--yes')} to confirm.`);
|
243591
243621
|
}
|
243592
243622
|
return link.exitCode;
|
243593
243623
|
}
|
@@ -243649,7 +243679,7 @@ const help = () => {
|
|
243649
243679
|
-A ${chalk_1.default.bold.underline('FILE')}, --local-config=${chalk_1.default.bold.underline('FILE')} Path to the local ${'`vercel.json`'} file
|
243650
243680
|
-Q ${chalk_1.default.bold.underline('DIR')}, --global-config=${chalk_1.default.bold.underline('DIR')} Path to the global ${'`.vercel`'} directory
|
243651
243681
|
-d, --debug Debug mode [off]
|
243652
|
-
--
|
243682
|
+
-y, --yes Skip questions when setting up new project using default scope and settings
|
243653
243683
|
-t ${chalk_1.default.bold.underline('TOKEN')}, --token=${chalk_1.default.bold.underline('TOKEN')} Login token
|
243654
243684
|
-S, --scope Set a custom scope
|
243655
243685
|
-m, --meta Filter deployments by metadata (e.g.: ${chalk_1.default.dim('`-m KEY=value`')}). Can appear many times.
|
@@ -243682,7 +243712,11 @@ async function main(client) {
|
|
243682
243712
|
'-m': '--meta',
|
243683
243713
|
'--next': Number,
|
243684
243714
|
'-N': '--next',
|
243715
|
+
'--yes': Boolean,
|
243716
|
+
'-y': '--yes',
|
243717
|
+
// deprecated
|
243685
243718
|
'--confirm': Boolean,
|
243719
|
+
'-c': '--confirm',
|
243686
243720
|
});
|
243687
243721
|
}
|
243688
243722
|
catch (err) {
|
@@ -243690,6 +243724,10 @@ async function main(client) {
|
|
243690
243724
|
return 1;
|
243691
243725
|
}
|
243692
243726
|
const { output, config } = client;
|
243727
|
+
if ('--confirm' in argv) {
|
243728
|
+
output.warn('`--confirm` is deprecated, please use `--yes` instead');
|
243729
|
+
argv['--yes'] = argv['--confirm'];
|
243730
|
+
}
|
243693
243731
|
const { print, log, error, note, debug, spinner } = output;
|
243694
243732
|
if (argv._.length > 2) {
|
243695
243733
|
error(`${(0, pkg_name_1.getCommandName)('ls [app]')} accepts at most one argument`);
|
@@ -243699,7 +243737,7 @@ async function main(client) {
|
|
243699
243737
|
help();
|
243700
243738
|
return 2;
|
243701
243739
|
}
|
243702
|
-
const yes = argv['--
|
243740
|
+
const yes = !!argv['--yes'];
|
243703
243741
|
const meta = (0, parse_meta_1.default)(argv['--meta']);
|
243704
243742
|
const { includeScheme } = config;
|
243705
243743
|
let paths = [process.cwd()];
|
@@ -244680,7 +244718,7 @@ const help = () => {
|
|
244680
244718
|
-Q ${chalk_1.default.bold.underline('DIR')}, --global-config=${chalk_1.default.bold.underline('DIR')} Path to the global ${'`.vercel`'} directory
|
244681
244719
|
-d, --debug Debug mode [off]
|
244682
244720
|
--environment [environment] Deployment environment [development]
|
244683
|
-
-y, --yes Skip
|
244721
|
+
-y, --yes Skip questions when setting up new project using default scope and settings
|
244684
244722
|
|
244685
244723
|
${chalk_1.default.dim('Examples:')}
|
244686
244724
|
|
@@ -261070,7 +261108,7 @@ module.exports = JSON.parse("{\"application/1d-interleaved-parityfec\":{\"source
|
|
261070
261108
|
/***/ ((module) => {
|
261071
261109
|
|
261072
261110
|
"use strict";
|
261073
|
-
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"27.
|
261111
|
+
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"27.4.0\",\"preferGlobal\":true,\"license\":\"Apache-2.0\",\"description\":\"The command-line interface for Vercel\",\"homepage\":\"https://vercel.com\",\"repository\":{\"type\":\"git\",\"url\":\"https://github.com/vercel/vercel.git\",\"directory\":\"packages/cli\"},\"scripts\":{\"preinstall\":\"node ./scripts/preinstall.js\",\"test\":\"jest --env node --verbose --runInBand --bail --forceExit\",\"test-unit\":\"yarn test test/unit/\",\"test-integration-cli\":\"rimraf test/fixtures/integration && ava test/integration.js --serial --fail-fast --verbose\",\"test-integration-dev\":\"yarn test test/dev/\",\"coverage\":\"codecov\",\"build\":\"ts-node ./scripts/build.ts\",\"dev\":\"ts-node ./src/index.ts\"},\"bin\":{\"vc\":\"./dist/index.js\",\"vercel\":\"./dist/index.js\"},\"files\":[\"dist\",\"scripts/preinstall.js\"],\"ava\":{\"extensions\":[\"ts\"],\"require\":[\"ts-node/register/transpile-only\",\"esm\"]},\"engines\":{\"node\":\">= 14\"},\"dependencies\":{\"@vercel/build-utils\":\"5.3.0\",\"@vercel/go\":\"2.1.0\",\"@vercel/hydrogen\":\"0.0.13\",\"@vercel/next\":\"3.1.17\",\"@vercel/node\":\"2.5.7\",\"@vercel/python\":\"3.1.8\",\"@vercel/redwood\":\"1.0.17\",\"@vercel/remix\":\"1.0.18\",\"@vercel/ruby\":\"1.3.24\",\"@vercel/static-build\":\"1.0.17\",\"update-notifier\":\"5.1.0\"},\"devDependencies\":{\"@alex_neo/jest-expect-message\":\"1.0.5\",\"@next/env\":\"11.1.2\",\"@sentry/node\":\"5.5.0\",\"@sindresorhus/slugify\":\"0.11.0\",\"@swc/core\":\"1.2.218\",\"@tootallnate/once\":\"1.1.2\",\"@types/ansi-escapes\":\"3.0.0\",\"@types/ansi-regex\":\"4.0.0\",\"@types/async-retry\":\"1.2.1\",\"@types/bytes\":\"3.0.0\",\"@types/chance\":\"1.1.3\",\"@types/debug\":\"0.0.31\",\"@types/dotenv\":\"6.1.1\",\"@types/escape-html\":\"0.0.20\",\"@types/express\":\"4.17.13\",\"@types/fs-extra\":\"9.0.13\",\"@types/glob\":\"7.1.1\",\"@types/http-proxy\":\"1.16.2\",\"@types/ini\":\"1.3.31\",\"@types/inquirer\":\"7.3.1\",\"@types/jest\":\"27.4.1\",\"@types/jest-expect-message\":\"1.0.3\",\"@types/load-json-file\":\"2.0.7\",\"@types/mime-types\":\"2.1.0\",\"@types/minimatch\":\"3.0.3\",\"@types/mri\":\"1.1.0\",\"@types/ms\":\"0.7.30\",\"@types/node\":\"11.11.0\",\"@types/node-fetch\":\"2.5.10\",\"@types/npm-package-arg\":\"6.1.0\",\"@types/pluralize\":\"0.0.29\",\"@types/progress\":\"2.0.3\",\"@types/psl\":\"1.1.0\",\"@types/semver\":\"6.0.1\",\"@types/tar-fs\":\"1.16.1\",\"@types/text-table\":\"0.2.0\",\"@types/title\":\"3.4.1\",\"@types/universal-analytics\":\"0.4.2\",\"@types/update-notifier\":\"5.1.0\",\"@types/which\":\"1.3.2\",\"@types/write-json-file\":\"2.2.1\",\"@types/yauzl-promise\":\"2.1.0\",\"@vercel/client\":\"12.1.11\",\"@vercel/frameworks\":\"1.1.3\",\"@vercel/fs-detectors\":\"2.0.5\",\"@vercel/fun\":\"1.0.4\",\"@vercel/ncc\":\"0.24.0\",\"@zeit/source-map-support\":\"0.6.2\",\"ajv\":\"6.12.2\",\"alpha-sort\":\"2.0.1\",\"ansi-escapes\":\"3.0.0\",\"ansi-regex\":\"3.0.0\",\"arg\":\"5.0.0\",\"async-listen\":\"1.2.0\",\"async-retry\":\"1.1.3\",\"async-sema\":\"2.1.4\",\"ava\":\"2.2.0\",\"boxen\":\"4.2.0\",\"bytes\":\"3.0.0\",\"chalk\":\"4.1.0\",\"chance\":\"1.1.7\",\"chokidar\":\"3.3.1\",\"codecov\":\"3.8.2\",\"cpy\":\"7.2.0\",\"credit-card\":\"3.0.1\",\"date-fns\":\"1.29.0\",\"debug\":\"3.1.0\",\"dot\":\"1.1.3\",\"dotenv\":\"4.0.0\",\"email-prompt\":\"0.3.2\",\"email-validator\":\"1.1.1\",\"epipebomb\":\"1.0.0\",\"escape-html\":\"1.0.3\",\"esm\":\"3.1.4\",\"execa\":\"3.2.0\",\"express\":\"4.17.1\",\"fast-deep-equal\":\"3.1.3\",\"fs-extra\":\"10.0.0\",\"get-port\":\"5.1.1\",\"git-last-commit\":\"1.0.1\",\"glob\":\"7.1.2\",\"http-proxy\":\"1.18.1\",\"ini\":\"3.0.0\",\"inquirer\":\"7.0.4\",\"is-docker\":\"2.2.1\",\"is-port-reachable\":\"3.1.0\",\"is-url\":\"1.2.2\",\"jaro-winkler\":\"0.2.8\",\"jsonlines\":\"0.1.1\",\"load-json-file\":\"3.0.0\",\"mime-types\":\"2.1.24\",\"minimatch\":\"3.0.4\",\"mri\":\"1.1.5\",\"ms\":\"2.1.2\",\"node-fetch\":\"2.6.7\",\"npm-package-arg\":\"6.1.0\",\"open\":\"8.4.0\",\"ora\":\"3.4.0\",\"pcre-to-regexp\":\"1.0.0\",\"pluralize\":\"7.0.0\",\"progress\":\"2.0.3\",\"promisepipe\":\"3.0.0\",\"psl\":\"1.1.31\",\"qr-image\":\"3.2.0\",\"raw-body\":\"2.4.1\",\"rimraf\":\"3.0.2\",\"semver\":\"5.5.0\",\"serve-handler\":\"6.1.1\",\"strip-ansi\":\"5.2.0\",\"stripe\":\"5.1.0\",\"tar-fs\":\"1.16.3\",\"test-listen\":\"1.1.0\",\"text-table\":\"0.2.0\",\"title\":\"3.4.1\",\"tmp-promise\":\"1.0.3\",\"tree-kill\":\"1.2.2\",\"ts-node\":\"10.9.1\",\"typescript\":\"4.7.4\",\"universal-analytics\":\"0.4.20\",\"utility-types\":\"2.1.0\",\"which\":\"2.0.2\",\"write-json-file\":\"2.2.0\",\"xdg-app-paths\":\"5.1.0\",\"yauzl-promise\":\"2.1.3\"},\"jest\":{\"preset\":\"ts-jest\",\"globals\":{\"ts-jest\":{\"diagnostics\":false,\"isolatedModules\":true}},\"setupFilesAfterEnv\":[\"@alex_neo/jest-expect-message\"],\"verbose\":false,\"testEnvironment\":\"node\",\"testMatch\":[\"<rootDir>/test/**/*.test.ts\"]}}");
|
261074
261112
|
|
261075
261113
|
/***/ }),
|
261076
261114
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "vercel",
|
3
|
-
"version": "27.
|
3
|
+
"version": "27.4.0",
|
4
4
|
"preferGlobal": true,
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"description": "The command-line interface for Vercel",
|
@@ -42,9 +42,9 @@
|
|
42
42
|
},
|
43
43
|
"dependencies": {
|
44
44
|
"@vercel/build-utils": "5.3.0",
|
45
|
-
"@vercel/go": "2.0
|
45
|
+
"@vercel/go": "2.1.0",
|
46
46
|
"@vercel/hydrogen": "0.0.13",
|
47
|
-
"@vercel/next": "3.1.
|
47
|
+
"@vercel/next": "3.1.17",
|
48
48
|
"@vercel/node": "2.5.7",
|
49
49
|
"@vercel/python": "3.1.8",
|
50
50
|
"@vercel/redwood": "1.0.17",
|
@@ -196,5 +196,5 @@
|
|
196
196
|
"<rootDir>/test/**/*.test.ts"
|
197
197
|
]
|
198
198
|
},
|
199
|
-
"gitHead": "
|
199
|
+
"gitHead": "31f79c7de1944420b1f6fa5be9235c9b3f1d62b6"
|
200
200
|
}
|