vercel 28.8.0 → 28.9.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 +75 -52
  2. package/package.json +15 -16
package/dist/index.js CHANGED
@@ -215156,20 +215156,21 @@ exports.frameworks = [
215156
215156
  ],
215157
215157
  },
215158
215158
  {
215159
- name: 'SvelteKit',
215159
+ name: 'SvelteKit (Legacy Beta)',
215160
215160
  slug: 'sveltekit',
215161
215161
  demo: 'https://sveltekit-template.vercel.app',
215162
215162
  logo: 'https://api-frameworks.vercel.sh/framework-logos/svelte.svg',
215163
215163
  screenshot: 'https://assets.vercel.com/image/upload/v1647366075/front/import/sveltekit.png',
215164
215164
  tagline: 'SvelteKit is a framework for building web applications of all sizes.',
215165
- description: 'A SvelteKit app optimized Edge-first.',
215165
+ description: 'A SvelteKit legacy app optimized Edge-first.',
215166
215166
  website: 'https://kit.svelte.dev',
215167
+ sort: 99,
215167
215168
  envPrefix: 'VITE_',
215168
215169
  detectors: {
215169
215170
  every: [
215170
215171
  {
215171
215172
  path: 'package.json',
215172
- matchContent: '"(dev)?(d|D)ependencies":\\s*{[^}]*"@sveltejs\\/kit":\\s*".+?"[^}]*}',
215173
+ matchContent: '"(dev)?(d|D)ependencies":\\s*{[^}]*"@sveltejs\\/kit":\\s*"1\\.0\\.0-next\\.(\\d+)"[^}]*}',
215173
215174
  },
215174
215175
  ],
215175
215176
  },
@@ -215191,6 +215192,41 @@ exports.frameworks = [
215191
215192
  },
215192
215193
  getOutputDirName: async () => 'public',
215193
215194
  },
215195
+ {
215196
+ name: 'SvelteKit',
215197
+ slug: 'sveltekit-1',
215198
+ demo: 'https://sveltekit-1-template.vercel.app',
215199
+ logo: 'https://api-frameworks.vercel.sh/framework-logos/svelte.svg',
215200
+ screenshot: 'https://assets.vercel.com/image/upload/v1647366075/front/import/sveltekit.png',
215201
+ tagline: 'SvelteKit is a framework for building web applications of all sizes.',
215202
+ description: 'A SvelteKit app optimized Edge-first.',
215203
+ website: 'https://kit.svelte.dev',
215204
+ detectors: {
215205
+ every: [
215206
+ {
215207
+ path: 'package.json',
215208
+ matchContent: '"(dev)?(d|D)ependencies":\\s*{[^}]*"@sveltejs\\/kit":\\s*".+?"[^}]*}',
215209
+ },
215210
+ ],
215211
+ },
215212
+ settings: {
215213
+ installCommand: {
215214
+ placeholder: '`yarn install`, `pnpm install`, or `npm install`',
215215
+ },
215216
+ buildCommand: {
215217
+ placeholder: 'vite build',
215218
+ value: 'vite build',
215219
+ },
215220
+ devCommand: {
215221
+ placeholder: 'vite dev',
215222
+ value: 'vite dev --port $PORT',
215223
+ },
215224
+ outputDirectory: {
215225
+ value: 'public',
215226
+ },
215227
+ },
215228
+ getOutputDirName: async () => 'public',
215229
+ },
215194
215230
  {
215195
215231
  name: 'Ionic React',
215196
215232
  slug: 'ionic-react',
@@ -215864,7 +215900,7 @@ exports.frameworks = [
215864
215900
  every: [
215865
215901
  {
215866
215902
  path: 'package.json',
215867
- matchContent: '"(dev)?(d|D)ependencies":\\s*{[^}]*vitepress:\\s*".+?"[^}]*}',
215903
+ matchContent: '"(dev)?(d|D)ependencies":\\s*{[^}]*"vitepress":\\s*".+?"[^}]*}',
215868
215904
  },
215869
215905
  ],
215870
215906
  },
@@ -237201,6 +237237,7 @@ const help = () => {
237201
237237
 
237202
237238
  -h, --help Output usage information
237203
237239
  --environment Set the Environment (development, preview, production) when pulling Environment Variables
237240
+ --git-branch Specify the Git branch to pull specific Environment Variables for
237204
237241
  -A ${chalk_1.default.bold.underline('FILE')}, --local-config=${chalk_1.default.bold.underline('FILE')} Path to the local ${'`vercel.json`'} file
237205
237242
  -Q ${chalk_1.default.bold.underline('DIR')}, --global-config=${chalk_1.default.bold.underline('DIR')} Path to the global ${'`.vercel`'} directory
237206
237243
  -d, --debug Debug mode [off]
@@ -237264,6 +237301,7 @@ async function main(client) {
237264
237301
  '--yes': Boolean,
237265
237302
  '-y': '--yes',
237266
237303
  '--environment': String,
237304
+ '--git-branch': String,
237267
237305
  });
237268
237306
  }
237269
237307
  catch (error) {
@@ -237450,6 +237488,7 @@ async function pull(client, project, environment, opts, args, output, cwd, sourc
237450
237488
  const [filename = '.env'] = args;
237451
237489
  const fullPath = (0, path_1.resolve)(cwd, filename);
237452
237490
  const skipConfirmation = opts['--yes'];
237491
+ const gitBranch = opts['--git-branch'];
237453
237492
  const head = tryReadHeadSync(fullPath, Buffer.byteLength(CONTENTS_PREFIX));
237454
237493
  const exists = typeof head !== 'undefined';
237455
237494
  if (head === CONTENTS_PREFIX) {
@@ -237466,6 +237505,7 @@ async function pull(client, project, environment, opts, args, output, cwd, sourc
237466
237505
  output.spinner('Downloading');
237467
237506
  const records = (await (0, get_env_records_1.pullEnvRecords)(output, client, project.id, source, {
237468
237507
  target: environment || types_1.ProjectEnvTarget.Development,
237508
+ gitBranch,
237469
237509
  })).env;
237470
237510
  let deltaString = '';
237471
237511
  let oldEnv;
@@ -239710,6 +239750,7 @@ function processArgs(client) {
239710
239750
  return (0, get_args_1.default)(client.argv.slice(2), {
239711
239751
  '--yes': Boolean,
239712
239752
  '--environment': String,
239753
+ '--git-branch': String,
239713
239754
  '--debug': Boolean,
239714
239755
  '-d': '--debug',
239715
239756
  '-y': '--yes',
@@ -243888,16 +243929,20 @@ async function createGitMeta(directory, output, project) {
243888
243929
  if (!remoteUrl) {
243889
243930
  return;
243890
243931
  }
243891
- const [commit, dirty] = await Promise.all([
243892
- getLastCommit(directory).catch(err => {
243893
- output.debug(`Failed to get last commit. The directory is likely not a Git repo, there are no latest commits, or it is corrupted.\n${err}`);
243894
- return;
243895
- }),
243896
- isDirty(directory, output),
243932
+ const [commitResult, dirtyResult] = await Promise.allSettled([
243933
+ getLastCommit(directory),
243934
+ isDirty(directory),
243897
243935
  ]);
243898
- if (!commit) {
243936
+ if (commitResult.status === 'rejected') {
243937
+ output.debug(`Failed to get last commit. The directory is likely not a Git repo, there are no latest commits, or it is corrupted.\n${commitResult.reason}`);
243938
+ return;
243939
+ }
243940
+ if (dirtyResult.status === 'rejected') {
243941
+ output.debug(`Failed to determine if Git repo has been modified:\n${dirtyResult.reason}`);
243899
243942
  return;
243900
243943
  }
243944
+ const dirty = dirtyResult.value;
243945
+ const commit = commitResult.value;
243901
243946
  return {
243902
243947
  remoteUrl,
243903
243948
  commitAuthorName: commit.author.name,
@@ -243911,28 +243956,27 @@ exports.createGitMeta = createGitMeta;
243911
243956
  function getLastCommit(directory) {
243912
243957
  return new Promise((resolve, reject) => {
243913
243958
  git_last_commit_1.default.getLastCommit((err, commit) => {
243914
- if (err)
243915
- return reject(err);
243959
+ if (err) {
243960
+ return reject((0, error_utils_1.normalizeError)(err));
243961
+ }
243916
243962
  resolve(commit);
243917
243963
  }, { dst: directory });
243918
243964
  });
243919
243965
  }
243920
- function isDirty(directory, output) {
243921
- return new Promise(resolve => {
243966
+ function isDirty(directory) {
243967
+ return new Promise((resolve, reject) => {
243922
243968
  // note: we specify the `--no-optional-locks` git flag so that `git status`
243923
243969
  // does not perform any "optional" operations such as optimizing the index
243924
243970
  // in the background: https://git-scm.com/docs/git-status#_background_refresh
243925
243971
  (0, child_process_1.exec)('git --no-optional-locks status -s', { cwd: directory }, function (err, stdout, stderr) {
243926
- let debugMessage = `Failed to determine if Git repo has been modified:`;
243927
- stderr = stderr && stderr.trim();
243928
- if (err || stderr) {
243929
- if (err)
243930
- debugMessage += `\n${err}`;
243931
- if (stderr)
243932
- debugMessage += `\n${stderr.trim()}`;
243933
- output.debug(debugMessage);
243934
- return resolve(false);
243972
+ if (err) {
243973
+ return reject(err);
243935
243974
  }
243975
+ if (stderr !== undefined && stderr.trim().length > 0) {
243976
+ return reject(new Error(stderr));
243977
+ }
243978
+ // Example output (when dirty):
243979
+ // M ../fs-detectors/src/index.ts
243936
243980
  resolve(stdout.trim().length > 0);
243937
243981
  });
243938
243982
  });
@@ -248884,37 +248928,13 @@ exports.default = formatEnvTarget;
248884
248928
  /***/ }),
248885
248929
 
248886
248930
  /***/ 4622:
248887
- /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
248931
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
248888
248932
 
248889
248933
  "use strict";
248890
248934
 
248891
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
248892
- if (k2 === undefined) k2 = k;
248893
- var desc = Object.getOwnPropertyDescriptor(m, k);
248894
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
248895
- desc = { enumerable: true, get: function() { return m[k]; } };
248896
- }
248897
- Object.defineProperty(o, k2, desc);
248898
- }) : (function(o, m, k, k2) {
248899
- if (k2 === undefined) k2 = k;
248900
- o[k2] = m[k];
248901
- }));
248902
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
248903
- Object.defineProperty(o, "default", { enumerable: true, value: v });
248904
- }) : function(o, v) {
248905
- o["default"] = v;
248906
- });
248907
- var __importStar = (this && this.__importStar) || function (mod) {
248908
- if (mod && mod.__esModule) return mod;
248909
- var result = {};
248910
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
248911
- __setModuleDefault(result, mod);
248912
- return result;
248913
- };
248914
248935
  Object.defineProperty(exports, "__esModule", ({ value: true }));
248915
248936
  exports.pullEnvRecords = void 0;
248916
248937
  const url_1 = __webpack_require__(78835);
248917
- const path = __importStar(__webpack_require__(85622));
248918
248938
  async function getEnvRecords(output, client, projectId, source, { target, gitBranch, decrypt, } = {}) {
248919
248939
  output.debug(`Fetching Environment Variables of project ${projectId} and target ${target}`);
248920
248940
  const query = new url_1.URLSearchParams();
@@ -248939,7 +248959,10 @@ async function pullEnvRecords(output, client, projectId, source, { target, gitBr
248939
248959
  const query = new url_1.URLSearchParams();
248940
248960
  let url = `/v1/env/pull/${projectId}`;
248941
248961
  if (target) {
248942
- url = path.join(url, target, gitBranch ?? '');
248962
+ url += `/${encodeURIComponent(target)}`;
248963
+ if (gitBranch) {
248964
+ url += `/${encodeURIComponent(gitBranch)}`;
248965
+ }
248943
248966
  }
248944
248967
  if (source) {
248945
248968
  query.set('source', source);
@@ -256356,7 +256379,7 @@ module.exports = JSON.parse("{\"application/1d-interleaved-parityfec\":{\"source
256356
256379
  /***/ ((module) => {
256357
256380
 
256358
256381
  "use strict";
256359
- module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"28.8.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 --bail\",\"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.7.0\",\"@vercel/go\":\"2.2.19\",\"@vercel/hydrogen\":\"0.0.33\",\"@vercel/next\":\"3.3.2\",\"@vercel/node\":\"2.8.0\",\"@vercel/python\":\"3.1.29\",\"@vercel/redwood\":\"1.0.39\",\"@vercel/remix\":\"1.1.1\",\"@vercel/ruby\":\"1.3.45\",\"@vercel/static-build\":\"1.0.42\",\"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\":\"14.18.33\",\"@types/node-fetch\":\"2.5.10\",\"@types/npm-package-arg\":\"6.1.0\",\"@types/pluralize\":\"0.0.29\",\"@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.21\",\"@vercel/error-utils\":\"1.0.3\",\"@vercel/frameworks\":\"1.1.14\",\"@vercel/fs-detectors\":\"3.5.4\",\"@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\",\"json5\":\"2.2.1\",\"jsonlines\":\"0.1.1\",\"line-async-iterator\":\"3.0.0\",\"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\",\"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\",\"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\"]}}");
256382
+ module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"28.9.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 --bail\",\"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.7.1\",\"@vercel/go\":\"2.2.20\",\"@vercel/hydrogen\":\"0.0.34\",\"@vercel/next\":\"3.3.3\",\"@vercel/node\":\"2.8.1\",\"@vercel/python\":\"3.1.30\",\"@vercel/redwood\":\"1.0.40\",\"@vercel/remix\":\"1.1.2\",\"@vercel/ruby\":\"1.3.46\",\"@vercel/static-build\":\"1.0.43\",\"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\":\"14.18.33\",\"@types/node-fetch\":\"2.5.10\",\"@types/npm-package-arg\":\"6.1.0\",\"@types/pluralize\":\"0.0.29\",\"@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.22\",\"@vercel/error-utils\":\"1.0.3\",\"@vercel/frameworks\":\"1.1.15\",\"@vercel/fs-detectors\":\"3.5.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-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\",\"json5\":\"2.2.1\",\"jsonlines\":\"0.1.1\",\"line-async-iterator\":\"3.0.0\",\"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\",\"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\",\"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\"]}}");
256360
256383
 
256361
256384
  /***/ }),
256362
256385
 
@@ -256364,7 +256387,7 @@ module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"28.8.0\",\"prefe
256364
256387
  /***/ ((module) => {
256365
256388
 
256366
256389
  "use strict";
256367
- module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"12.2.21\",\"main\":\"dist/index.js\",\"typings\":\"dist/index.d.ts\",\"homepage\":\"https://vercel.com\",\"license\":\"MIT\",\"files\":[\"dist\"],\"repository\":{\"type\":\"git\",\"url\":\"https://github.com/vercel/vercel.git\",\"directory\":\"packages/client\"},\"scripts\":{\"build\":\"tsc\",\"test-integration-once\":\"yarn test tests/create-deployment.test.ts tests/create-legacy-deployment.test.ts tests/paths.test.ts\",\"test\":\"jest --env node --verbose --runInBand --bail\",\"test-unit\":\"yarn test tests/unit.*test.*\"},\"engines\":{\"node\":\">= 14\"},\"devDependencies\":{\"@types/async-retry\":\"1.4.1\",\"@types/fs-extra\":\"7.0.0\",\"@types/jest\":\"27.4.1\",\"@types/minimatch\":\"3.0.5\",\"@types/ms\":\"0.7.30\",\"@types/node\":\"14.18.33\",\"@types/node-fetch\":\"2.5.4\",\"@types/recursive-readdir\":\"2.2.0\",\"@types/tar-fs\":\"1.16.1\",\"typescript\":\"4.3.4\"},\"jest\":{\"preset\":\"ts-jest\",\"testEnvironment\":\"node\",\"verbose\":false,\"setupFilesAfterEnv\":[\"<rootDir>/tests/setup/index.ts\"]},\"dependencies\":{\"@vercel/build-utils\":\"5.7.0\",\"@vercel/routing-utils\":\"2.1.3\",\"@zeit/fetch\":\"5.2.0\",\"async-retry\":\"1.2.3\",\"async-sema\":\"3.0.0\",\"fs-extra\":\"8.0.1\",\"ignore\":\"4.0.6\",\"minimatch\":\"5.0.1\",\"ms\":\"2.1.2\",\"node-fetch\":\"2.6.7\",\"querystring\":\"^0.2.0\",\"sleep-promise\":\"8.0.1\",\"tar-fs\":\"1.16.3\"}}");
256390
+ module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"12.2.22\",\"main\":\"dist/index.js\",\"typings\":\"dist/index.d.ts\",\"homepage\":\"https://vercel.com\",\"license\":\"MIT\",\"files\":[\"dist\"],\"repository\":{\"type\":\"git\",\"url\":\"https://github.com/vercel/vercel.git\",\"directory\":\"packages/client\"},\"scripts\":{\"build\":\"tsc\",\"test-integration-once\":\"yarn test tests/create-deployment.test.ts tests/create-legacy-deployment.test.ts tests/paths.test.ts\",\"test\":\"jest --env node --verbose --runInBand --bail\",\"test-unit\":\"yarn test tests/unit.*test.*\"},\"engines\":{\"node\":\">= 14\"},\"devDependencies\":{\"@types/async-retry\":\"1.4.1\",\"@types/fs-extra\":\"7.0.0\",\"@types/jest\":\"27.4.1\",\"@types/minimatch\":\"3.0.5\",\"@types/ms\":\"0.7.30\",\"@types/node\":\"14.18.33\",\"@types/node-fetch\":\"2.5.4\",\"@types/recursive-readdir\":\"2.2.0\",\"@types/tar-fs\":\"1.16.1\",\"typescript\":\"4.3.4\"},\"jest\":{\"preset\":\"ts-jest\",\"testEnvironment\":\"node\",\"verbose\":false,\"setupFilesAfterEnv\":[\"<rootDir>/tests/setup/index.ts\"]},\"dependencies\":{\"@vercel/build-utils\":\"5.7.1\",\"@vercel/routing-utils\":\"2.1.3\",\"@zeit/fetch\":\"5.2.0\",\"async-retry\":\"1.2.3\",\"async-sema\":\"3.0.0\",\"fs-extra\":\"8.0.1\",\"ignore\":\"4.0.6\",\"minimatch\":\"5.0.1\",\"ms\":\"2.1.2\",\"node-fetch\":\"2.6.7\",\"querystring\":\"^0.2.0\",\"sleep-promise\":\"8.0.1\",\"tar-fs\":\"1.16.3\"}}");
256368
256391
 
256369
256392
  /***/ }),
256370
256393
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vercel",
3
- "version": "28.8.0",
3
+ "version": "28.9.0",
4
4
  "preferGlobal": true,
5
5
  "license": "Apache-2.0",
6
6
  "description": "The command-line interface for Vercel",
@@ -41,16 +41,16 @@
41
41
  "node": ">= 14"
42
42
  },
43
43
  "dependencies": {
44
- "@vercel/build-utils": "5.7.0",
45
- "@vercel/go": "2.2.19",
46
- "@vercel/hydrogen": "0.0.33",
47
- "@vercel/next": "3.3.2",
48
- "@vercel/node": "2.8.0",
49
- "@vercel/python": "3.1.29",
50
- "@vercel/redwood": "1.0.39",
51
- "@vercel/remix": "1.1.1",
52
- "@vercel/ruby": "1.3.45",
53
- "@vercel/static-build": "1.0.42",
44
+ "@vercel/build-utils": "5.7.1",
45
+ "@vercel/go": "2.2.20",
46
+ "@vercel/hydrogen": "0.0.34",
47
+ "@vercel/next": "3.3.3",
48
+ "@vercel/node": "2.8.1",
49
+ "@vercel/python": "3.1.30",
50
+ "@vercel/redwood": "1.0.40",
51
+ "@vercel/remix": "1.1.2",
52
+ "@vercel/ruby": "1.3.46",
53
+ "@vercel/static-build": "1.0.43",
54
54
  "update-notifier": "5.1.0"
55
55
  },
56
56
  "devDependencies": {
@@ -95,10 +95,10 @@
95
95
  "@types/which": "1.3.2",
96
96
  "@types/write-json-file": "2.2.1",
97
97
  "@types/yauzl-promise": "2.1.0",
98
- "@vercel/client": "12.2.21",
98
+ "@vercel/client": "12.2.22",
99
99
  "@vercel/error-utils": "1.0.3",
100
- "@vercel/frameworks": "1.1.14",
101
- "@vercel/fs-detectors": "3.5.4",
100
+ "@vercel/frameworks": "1.1.15",
101
+ "@vercel/fs-detectors": "3.5.5",
102
102
  "@vercel/fun": "1.0.4",
103
103
  "@vercel/ncc": "0.24.0",
104
104
  "@zeit/source-map-support": "0.6.2",
@@ -122,7 +122,6 @@
122
122
  "debug": "3.1.0",
123
123
  "dot": "1.1.3",
124
124
  "dotenv": "4.0.0",
125
- "email-prompt": "0.3.2",
126
125
  "email-validator": "1.1.1",
127
126
  "epipebomb": "1.0.0",
128
127
  "escape-html": "1.0.3",
@@ -195,5 +194,5 @@
195
194
  "<rootDir>/test/**/*.test.ts"
196
195
  ]
197
196
  },
198
- "gitHead": "584d0ea8535f1fad5588a4dc51269d4985a32875"
197
+ "gitHead": "4484c134487214af68bc97da322688ec027db532"
199
198
  }