vercel 28.0.2 → 28.1.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.
Files changed (2) hide show
  1. package/dist/index.js +58 -46
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -203456,7 +203456,7 @@ async function run({ output, contextName, currentTeam, client }) {
203456
203456
  argv.yes ||
203457
203457
  (await readConfirmation(client, output, theSecret, contextName));
203458
203458
  if (!yes) {
203459
- output.print(`Aborted. Secret not deleted.\n`);
203459
+ output.print(`Canceled. Secret not deleted.\n`);
203460
203460
  return 0;
203461
203461
  }
203462
203462
  } else {
@@ -226559,7 +226559,7 @@ async function rm(client, opts, args) {
226559
226559
  }
226560
226560
  const removeStamp = (0, stamp_1.default)();
226561
226561
  if (!opts['--yes'] && !(await confirmAliasRemove(client, alias))) {
226562
- output.log('Aborted');
226562
+ output.log('Canceled');
226563
226563
  return 0;
226564
226564
  }
226565
226565
  await (0, remove_alias_by_id_1.default)(client, alias.uid);
@@ -226726,7 +226726,7 @@ function handleSetupDomainError(output, error) {
226726
226726
  return 1;
226727
226727
  }
226728
226728
  if (error instanceof ERRORS.UserAborted) {
226729
- output.error(`User aborted`);
226729
+ output.error(`User canceled.`);
226730
226730
  return 1;
226731
226731
  }
226732
226732
  if (error instanceof ERRORS.DomainNotFound) {
@@ -227288,7 +227288,7 @@ async function main(client) {
227288
227288
  confirmed = await (0, confirm_1.default)(client, `No Project Settings found locally. Run ${cli.getCommandName('pull')} for retrieving them?`, true);
227289
227289
  }
227290
227290
  if (!confirmed) {
227291
- client.output.print(`Aborted. No Project Settings retrieved.\n`);
227291
+ client.output.print(`Canceled. No Project Settings retrieved.\n`);
227292
227292
  return 0;
227293
227293
  }
227294
227294
  const { argv: originalArgv } = client;
@@ -228517,7 +228517,7 @@ exports.default = async (client) => {
228517
228517
  const shouldStartSetup = autoConfirm ||
228518
228518
  (await (0, confirm_1.default)(client, `Set up and deploy ${chalk_1.default.cyan(`“${(0, humanize_path_1.default)(path)}”`)}?`, true));
228519
228519
  if (!shouldStartSetup) {
228520
- output.print(`Aborted. Project not set up.\n`);
228520
+ output.print(`Canceled. Project not set up.\n`);
228521
228521
  return 0;
228522
228522
  }
228523
228523
  try {
@@ -229193,7 +229193,7 @@ async function add(client, opts, args) {
229193
229193
  const { domain, data: argData } = parsedParams;
229194
229194
  const data = await (0, get_dns_data_1.default)(client, argData);
229195
229195
  if (!data) {
229196
- output.log(`Aborted`);
229196
+ output.log(`Canceled`);
229197
229197
  return 1;
229198
229198
  }
229199
229199
  const record = await (0, add_dns_record_1.default)(client, domain, data);
@@ -229490,7 +229490,7 @@ async function rm(client, _opts, args) {
229490
229490
  const { domain: domainName } = record;
229491
229491
  const yes = await readConfirmation(output, 'The following record will be removed permanently', domainName, record);
229492
229492
  if (!yes) {
229493
- output.error(`User aborted.`);
229493
+ output.error(`User canceled.`);
229494
229494
  return 0;
229495
229495
  }
229496
229496
  const rmStamp = (0, stamp_1.default)();
@@ -230192,7 +230192,7 @@ async function move(client, opts, args) {
230192
230192
  output.warn(`You're not a member of ${(0, param_1.default)(destination)}. ` +
230193
230193
  `${(0, param_1.default)(destination)} will have 24 hours to accept your move request before it expires.`);
230194
230194
  if (!(await (0, prompt_bool_1.default)(`Are you sure you want to move ${(0, param_1.default)(domainName)} to ${(0, param_1.default)(destination)}?`, client))) {
230195
- output.log('Aborted');
230195
+ output.log('Canceled');
230196
230196
  return 0;
230197
230197
  }
230198
230198
  }
@@ -230201,7 +230201,7 @@ async function move(client, opts, args) {
230201
230201
  if (aliases.length > 0) {
230202
230202
  output.warn(`This domain's ${chalk_1.default.bold((0, pluralize_1.default)('alias', aliases.length, true))} will be removed. Run ${(0, pkg_name_1.getCommandName)(`alias ls`)} to list them.`);
230203
230203
  if (!(await (0, prompt_bool_1.default)(`Are you sure you want to move ${(0, param_1.default)(domainName)}?`, client))) {
230204
- output.log('Aborted');
230204
+ output.log('Canceled');
230205
230205
  return 0;
230206
230206
  }
230207
230207
  }
@@ -230353,7 +230353,7 @@ async function rm(client, opts, args) {
230353
230353
  const skipConfirmation = opts['--yes'] || false;
230354
230354
  if (!skipConfirmation &&
230355
230355
  !(await (0, prompt_bool_1.default)(`Are you sure you want to remove ${(0, param_1.default)(domainName)}?`, client))) {
230356
- output.log('Aborted');
230356
+ output.log('Canceled');
230357
230357
  return 0;
230358
230358
  }
230359
230359
  return removeDomain(output, client, contextName, skipConfirmation, domain);
@@ -230430,7 +230430,7 @@ async function removeDomain(output, client, contextName, skipConfirmation, domai
230430
230430
  }
230431
230431
  if (!skipConfirmation &&
230432
230432
  !(await (0, prompt_bool_1.default)(`Remove conflicts associated with domain?`, client))) {
230433
- output.log('Aborted');
230433
+ output.log('Canceled');
230434
230434
  return 0;
230435
230435
  }
230436
230436
  return removeDomain(output, client, contextName, skipConfirmation, domain, aliases, certs, suffix, attempt + 1);
@@ -230969,7 +230969,7 @@ async function pull(client, project, environment, opts, args, output, cwd, sourc
230969
230969
  else if (exists &&
230970
230970
  !skipConfirmation &&
230971
230971
  !(await (0, confirm_1.default)(client, `Found existing file ${(0, param_1.default)(filename)}. Do you want to overwrite?`, false))) {
230972
- output.log('Aborted');
230972
+ output.log('Canceled');
230973
230973
  return 0;
230974
230974
  }
230975
230975
  output.log(`Downloading \`${chalk_1.default.cyan(environment)}\` Environment Variables for Project ${chalk_1.default.bold(project.name)}`);
@@ -231092,7 +231092,7 @@ async function rm(client, project, opts, args, output) {
231092
231092
  const skipConfirmation = opts['--yes'];
231093
231093
  if (!skipConfirmation &&
231094
231094
  !(await (0, confirm_1.default)(client, `Removing Environment Variable ${(0, param_1.default)(env.key)} from ${(0, format_env_target_1.default)(env)} in Project ${chalk_1.default.bold(project.name)}. Are you sure?`, false))) {
231095
- output.log('Aborted');
231095
+ output.log('Canceled');
231096
231096
  return 0;
231097
231097
  }
231098
231098
  const rmStamp = (0, stamp_1.default)();
@@ -231200,7 +231200,7 @@ async function connect(client, argv, args, project, org) {
231200
231200
  remoteUrl = Object.values(remoteUrls)[0];
231201
231201
  }
231202
231202
  if (remoteUrl === '') {
231203
- output.log('Aborted.');
231203
+ output.log('Canceled');
231204
231204
  return 0;
231205
231205
  }
231206
231206
  output.log(`Connecting Git remote: ${(0, link_1.default)(remoteUrl)}`);
@@ -231314,7 +231314,7 @@ async function promptConnectArg({ client, yes, repoInfo: repoInfoFromArg, remote
231314
231314
  const { url: repoUrlFromArg } = repoInfoFromArg;
231315
231315
  shouldConnect = await (0, confirm_1.default)(client, `Do you still want to connect ${(0, link_1.default)(repoUrlFromArg)}?`, false);
231316
231316
  if (!shouldConnect) {
231317
- client.output.log('Aborted. Repo not connected.');
231317
+ client.output.log('Canceled. Repo not connected.');
231318
231318
  }
231319
231319
  }
231320
231320
  return shouldConnect;
@@ -231354,7 +231354,7 @@ async function confirmRepoConnect(client, yes, connectedProvider, connectedRepoP
231354
231354
  if (!shouldReplaceProject) {
231355
231355
  shouldReplaceProject = await (0, confirm_1.default)(client, `Looks like you already have a ${(0, connect_git_provider_1.formatProvider)(connectedProvider)} repository connected: ${chalk_1.default.cyan(connectedRepoPath)}. Do you want to replace it?`, true);
231356
231356
  if (!shouldReplaceProject) {
231357
- client.output.log('Aborted. Repo not connected.');
231357
+ client.output.log('Canceled. Repo not connected.');
231358
231358
  }
231359
231359
  }
231360
231360
  return shouldReplaceProject;
@@ -231409,7 +231409,7 @@ async function disconnect(client, args, project, org) {
231409
231409
  output.log(`Disconnected ${chalk_1.default.cyan(`${linkOrg}/${repo}`)}.`);
231410
231410
  }
231411
231411
  else {
231412
- output.log('Aborted.');
231412
+ output.log('Canceled');
231413
231413
  }
231414
231414
  }
231415
231415
  else {
@@ -231699,7 +231699,7 @@ async function init(client, opts, args) {
231699
231699
  if (!name) {
231700
231700
  const chosen = await chooseFromDropdown(client, 'Select example:', exampleList);
231701
231701
  if (!chosen) {
231702
- output.log('Aborted');
231702
+ output.log('Canceled');
231703
231703
  return 0;
231704
231704
  }
231705
231705
  return extractExample(client, chosen, dir, force);
@@ -232323,7 +232323,7 @@ async function main(client) {
232323
232323
  }
232324
232324
  log(`${prod ? `Production deployments` : `Deployments`} for ${chalk_1.default.bold(app)} under ${chalk_1.default.bold(contextName)} ${(0, elapsed_1.default)(Date.now() - start)}`);
232325
232325
  // information to help the user find other deployments or instances
232326
- log(`To list more deployments for a project, run ${(0, pkg_name_1.getCommandName)('ls [project]')}.`);
232326
+ log(`To list deployments for a project, run ${(0, pkg_name_1.getCommandName)('ls [project]')}.`);
232327
232327
  print('\n');
232328
232328
  const headers = ['Age', 'Deployment', 'Status', 'Duration'];
232329
232329
  if (showUsername)
@@ -232355,7 +232355,7 @@ async function main(client) {
232355
232355
  }).replace(/^/gm, ' ')}\n\n`);
232356
232356
  if (pagination && pagination.count === 20) {
232357
232357
  const flags = (0, get_command_flags_1.default)(argv, ['_', '--next']);
232358
- log(`To display the next page run ${(0, pkg_name_1.getCommandName)(`ls${app ? ' ' + app : ''}${flags} --next ${pagination.next}`)}`);
232358
+ log(`To display the next page, run ${(0, pkg_name_1.getCommandName)(`ls${app ? ' ' + app : ''}${flags} --next ${pagination.next}`)}`);
232359
232359
  }
232360
232360
  }
232361
232361
  exports.default = main;
@@ -233480,7 +233480,7 @@ async function main(client) {
233480
233480
  if (!skipConfirmation) {
233481
233481
  const confirmation = (await readConfirmation(deployments, projects, output)).toLowerCase();
233482
233482
  if (confirmation !== 'y' && confirmation !== 'yes') {
233483
- output.log('Aborted');
233483
+ output.log('Canceled');
233484
233484
  return 1;
233485
233485
  }
233486
233486
  }
@@ -233607,7 +233607,7 @@ async function add(client) {
233607
233607
  }
233608
233608
  catch (err) {
233609
233609
  if ((0, is_error_1.isError)(err) && err.message === 'USER_ABORT') {
233610
- output.log('Aborted');
233610
+ output.log('Canceled');
233611
233611
  return 0;
233612
233612
  }
233613
233613
  throw err;
@@ -243116,7 +243116,7 @@ class UserAborted extends now_error_1.NowError {
243116
243116
  super({
243117
243117
  code: 'USER_ABORTED',
243118
243118
  meta: {},
243119
- message: `The user aborted the operation.`,
243119
+ message: `The user canceled the operation.`,
243120
243120
  });
243121
243121
  }
243122
243122
  }
@@ -244777,7 +244777,7 @@ function handleError(error, { debug = false } = {}) {
244777
244777
  console.error((0, error_1.default)('Unexpected server error. Please retry.'));
244778
244778
  }
244779
244779
  else if (code === 'USER_ABORT') {
244780
- (0, info_1.default)('Aborted');
244780
+ (0, info_1.default)('Canceled');
244781
244781
  }
244782
244782
  else {
244783
244783
  console.error((0, error_1.default)(`Unexpected error. Please try again later. (${message})`));
@@ -245596,7 +245596,7 @@ choices: _choices = [
245596
245596
  },
245597
245597
  ], pageSize = 15, // Show 15 lines without scrolling (~4 credit cards)
245598
245598
  separator = false, // Puts a blank separator between each choice
245599
- abort = 'end', // Whether the `abort` option will be at the `start` or the `end`,
245599
+ cancel = 'end', // Whether the `cancel` option will be at the `start` or the `end`,
245600
245600
  eraseFinalAnswer = false, // If true, the line with the final answer that inquirer prints will be erased before returning
245601
245601
  }) {
245602
245602
  __webpack_require__(92149);
@@ -245635,17 +245635,17 @@ eraseFinalAnswer = false, // If true, the line with the final answer that inquir
245635
245635
  choices.splice(i, 0, new inquirer_1.default.Separator(' '));
245636
245636
  }
245637
245637
  }
245638
- const abortSeparator = new inquirer_1.default.Separator('─'.repeat(biggestLength));
245639
- const _abort = {
245640
- name: 'Abort',
245638
+ const cancelSeparator = new inquirer_1.default.Separator('─'.repeat(biggestLength));
245639
+ const _cancel = {
245640
+ name: 'Cancel',
245641
245641
  value: '',
245642
245642
  short: '',
245643
245643
  };
245644
- if (abort === 'start') {
245645
- choices.unshift(_abort, abortSeparator);
245644
+ if (cancel === 'start') {
245645
+ choices.unshift(_cancel, cancelSeparator);
245646
245646
  }
245647
245647
  else {
245648
- choices.push(abortSeparator, _abort);
245648
+ choices.push(cancelSeparator, _cancel);
245649
245649
  }
245650
245650
  const answer = await client.prompt({
245651
245651
  name: 'value',
@@ -246486,19 +246486,19 @@ function getProjectSettings(project) {
246486
246486
  skipGitConnectDuringLink: project.skipGitConnectDuringLink,
246487
246487
  };
246488
246488
  }
246489
- async function addGitConnection(client, org, project, remoteUrls, settings) {
246489
+ async function addGitConnection(client, org, project, remoteUrls, autoConfirm, settings) {
246490
246490
  if (!settings) {
246491
246491
  settings = getProjectSettings(project);
246492
246492
  }
246493
246493
  if (Object.keys(remoteUrls).length === 1) {
246494
- return addSingleGitRemote(client, org, project, remoteUrls, settings || project);
246494
+ return addSingleGitRemote(client, org, project, remoteUrls, settings || project, autoConfirm);
246495
246495
  }
246496
246496
  else if (Object.keys(remoteUrls).length > 1 && !project.link) {
246497
- return addMultipleGitRemotes(client, org, project, remoteUrls, settings || project);
246497
+ return addMultipleGitRemotes(client, org, project, remoteUrls, settings || project, autoConfirm);
246498
246498
  }
246499
246499
  }
246500
246500
  exports.addGitConnection = addGitConnection;
246501
- async function addSingleGitRemote(client, org, project, remoteUrls, settings) {
246501
+ async function addSingleGitRemote(client, org, project, remoteUrls, settings, autoConfirm) {
246502
246502
  const [remoteName, remoteUrl] = Object.entries(remoteUrls)[0];
246503
246503
  const repoInfo = (0, connect_git_provider_1.parseRepoUrl)(remoteUrl);
246504
246504
  if (!repoInfo) {
@@ -246518,13 +246518,25 @@ async function addSingleGitRemote(client, org, project, remoteUrls, settings) {
246518
246518
  (project.link.org !== parsedOrg ||
246519
246519
  project.link.repo !== repo ||
246520
246520
  project.link.type !== provider);
246521
- const shouldConnect = await (0, git_connect_prompts_1.promptGitConnectSingleUrl)(client, project, remoteName, remoteUrl, replace);
246522
- return (0, handle_options_1.handleOptions)(shouldConnect, client, org, project, settings, repoInfo);
246521
+ let shouldConnectOption;
246522
+ if (autoConfirm) {
246523
+ shouldConnectOption = 'yes';
246524
+ }
246525
+ else {
246526
+ shouldConnectOption = await (0, git_connect_prompts_1.promptGitConnectSingleUrl)(client, project, remoteName, remoteUrl, replace);
246527
+ }
246528
+ return (0, handle_options_1.handleOptions)(shouldConnectOption, client, org, project, settings, repoInfo);
246523
246529
  }
246524
- async function addMultipleGitRemotes(client, org, project, remoteUrls, settings) {
246525
- client.output.log('Found multiple Git remote URLs in Git config.');
246526
- const remoteUrlOrOptions = await (0, git_connect_prompts_1.promptGitConnectMultipleUrls)(client, remoteUrls);
246527
- return (0, handle_options_1.handleOptions)(remoteUrlOrOptions, client, org, project, settings);
246530
+ async function addMultipleGitRemotes(client, org, project, remoteUrls, settings, autoConfirm) {
246531
+ let remoteUrl;
246532
+ if (autoConfirm) {
246533
+ remoteUrl = remoteUrls['origin'] || Object.values(remoteUrls)[0];
246534
+ }
246535
+ else {
246536
+ client.output.log('Found multiple Git remote URLs in Git config.');
246537
+ remoteUrl = await (0, git_connect_prompts_1.promptGitConnectMultipleUrls)(client, remoteUrls);
246538
+ }
246539
+ return (0, handle_options_1.handleOptions)(remoteUrl, client, org, project, settings);
246528
246540
  }
246529
246541
 
246530
246542
 
@@ -246740,7 +246752,7 @@ async function setupAndLink(client, path, { forceDelete = false, autoConfirm = f
246740
246752
  const shouldStartSetup = autoConfirm ||
246741
246753
  (await (0, confirm_1.default)(client, `${setupMsg} ${chalk_1.default.cyan(`“${(0, humanize_path_1.default)(path)}”`)}?`, true));
246742
246754
  if (!shouldStartSetup) {
246743
- output.print(`Aborted. Project not set up.\n`);
246755
+ output.print(`Canceled. Project not set up.\n`);
246744
246756
  return { status: 'not_linked', org: null, project: null };
246745
246757
  }
246746
246758
  try {
@@ -246769,7 +246781,7 @@ async function setupAndLink(client, path, { forceDelete = false, autoConfirm = f
246769
246781
  const project = projectOrNewProjectName;
246770
246782
  const remoteUrls = await (0, create_git_meta_1.getRemoteUrls)((0, path_1.join)(path, '.git/config'), output);
246771
246783
  if (remoteUrls && !project.skipGitConnectDuringLink) {
246772
- const connectGit = await (0, add_git_connection_1.addGitConnection)(client, org, project, remoteUrls);
246784
+ const connectGit = await (0, add_git_connection_1.addGitConnection)(client, org, project, remoteUrls, autoConfirm);
246773
246785
  if (typeof connectGit === 'number') {
246774
246786
  return { status: 'error', exitCode: connectGit };
246775
246787
  }
@@ -246848,7 +246860,7 @@ async function setupAndLink(client, path, { forceDelete = false, autoConfirm = f
246848
246860
  const project = await (0, create_project_1.default)(client, newProjectName);
246849
246861
  const remoteUrls = await (0, create_git_meta_1.getRemoteUrls)((0, path_1.join)(path, '.git/config'), output);
246850
246862
  if (remoteUrls) {
246851
- const connectGit = await (0, add_git_connection_1.addGitConnection)(client, org, project, remoteUrls, settings);
246863
+ const connectGit = await (0, add_git_connection_1.addGitConnection)(client, org, project, remoteUrls, autoConfirm, settings);
246852
246864
  if (typeof connectGit === 'number') {
246853
246865
  return { status: 'error', exitCode: connectGit };
246854
246866
  }
@@ -249515,7 +249527,7 @@ async function validatePaths(client, paths) {
249515
249527
  if (path === (0, os_1.homedir)()) {
249516
249528
  const shouldDeployHomeDirectory = await (0, confirm_1.default)(client, `You are deploying your home directory. Do you want to continue?`, false);
249517
249529
  if (!shouldDeployHomeDirectory) {
249518
- output.print(`Aborted\n`);
249530
+ output.print(`Canceled\n`);
249519
249531
  return { valid: false, exitCode: 0 };
249520
249532
  }
249521
249533
  }
@@ -249866,7 +249878,7 @@ module.exports = JSON.parse("{\"application/1d-interleaved-parityfec\":{\"source
249866
249878
  /***/ ((module) => {
249867
249879
 
249868
249880
  "use strict";
249869
- module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"28.0.2\",\"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.1\",\"@vercel/go\":\"2.1.1\",\"@vercel/hydrogen\":\"0.0.14\",\"@vercel/next\":\"3.1.18\",\"@vercel/node\":\"2.5.8\",\"@vercel/python\":\"3.1.9\",\"@vercel/redwood\":\"1.0.18\",\"@vercel/remix\":\"1.0.19\",\"@vercel/ruby\":\"1.3.27\",\"@vercel/static-build\":\"1.0.18\",\"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.2.0\",\"@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\",\"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\"]}}");
249881
+ module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"28.1.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.1\",\"@vercel/go\":\"2.2.0\",\"@vercel/hydrogen\":\"0.0.14\",\"@vercel/next\":\"3.1.19\",\"@vercel/node\":\"2.5.8\",\"@vercel/python\":\"3.1.9\",\"@vercel/redwood\":\"1.0.18\",\"@vercel/remix\":\"1.0.19\",\"@vercel/ruby\":\"1.3.27\",\"@vercel/static-build\":\"1.0.18\",\"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.2.0\",\"@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\",\"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\"]}}");
249870
249882
 
249871
249883
  /***/ }),
249872
249884
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vercel",
3
- "version": "28.0.2",
3
+ "version": "28.1.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.1",
45
- "@vercel/go": "2.1.1",
45
+ "@vercel/go": "2.2.0",
46
46
  "@vercel/hydrogen": "0.0.14",
47
- "@vercel/next": "3.1.18",
47
+ "@vercel/next": "3.1.19",
48
48
  "@vercel/node": "2.5.8",
49
49
  "@vercel/python": "3.1.9",
50
50
  "@vercel/redwood": "1.0.18",
@@ -195,5 +195,5 @@
195
195
  "<rootDir>/test/**/*.test.ts"
196
196
  ]
197
197
  },
198
- "gitHead": "05a236f944aec9a5f6c73fde5a01fadbd74b89e3"
198
+ "gitHead": "09c85f63d2aa47c147260d343767f6eea60e352c"
199
199
  }