vercel 23.1.3-canary.57 → 23.1.3-canary.58

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 +137 -128
  2. package/package.json +6 -6
package/dist/index.js CHANGED
@@ -217494,14 +217494,6 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
217494
217494
  // so we don't want to pollute this space unnecessarily. That means we have to clean
217495
217495
  // up files that were created by the build, which is done further below.
217496
217496
  const sourceFilesAfterBuild = await getSourceFiles(workPath, ignoreFilter);
217497
- // Further down, we will need the filename of the Lambda handler
217498
- // for placing it inside `server/pages/api`, but because Legacy Runtimes
217499
- // don't expose the filename directly, we have to construct it
217500
- // from the handler name, and then find the matching file further below,
217501
- // because we don't yet know its extension here.
217502
- const handler = output.handler;
217503
- const handlerMethod = handler.split('.').reverse()[0];
217504
- const handlerFileName = handler.replace(`.${handlerMethod}`, '');
217505
217497
  // @ts-ignore This symbol is a private API
217506
217498
  const lambdaFiles = output[lambda_1.FILES_SYMBOL];
217507
217499
  // When deploying, the `files` that are passed to the Legacy Runtimes already
@@ -217513,20 +217505,34 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
217513
217505
  delete lambdaFiles[file];
217514
217506
  }
217515
217507
  }
217516
- const handlerFilePath = Object.keys(lambdaFiles).find(item => {
217517
- return path_1.parse(item).name === handlerFileName;
217518
- });
217519
- const handlerFileOrigin = lambdaFiles[handlerFilePath || ''].fsPath;
217520
- if (!handlerFileOrigin) {
217521
- throw new Error(`Could not find a handler file. Please ensure that the list of \`files\` defined for the returned \`Lambda\` contains a file with the name ${handlerFileName} (+ any extension).`);
217522
- }
217523
- const entry = path_1.join(workPath, '.output', 'server', 'pages', entrypoint);
217508
+ let handlerFileBase = output.handler;
217509
+ let handlerFile = lambdaFiles[handlerFileBase];
217510
+ const { handler } = output;
217511
+ const handlerMethod = handler.split('.').pop();
217512
+ const handlerFileName = handler.replace(`.${handlerMethod}`, '');
217513
+ // For compiled languages, the launcher file for the Lambda generated
217514
+ // by the Legacy Runtime matches the `handler` defined for it, but for
217515
+ // interpreted languages, the `handler` consists of the launcher file name
217516
+ // without an extension, plus the name of the method inside of that file
217517
+ // that should be invoked, so we have to construct the file path explicitly.
217518
+ if (!handlerFile) {
217519
+ handlerFileBase = handlerFileName + ext;
217520
+ handlerFile = lambdaFiles[handlerFileBase];
217521
+ }
217522
+ if (!handlerFile || !handlerFile.fsPath) {
217523
+ throw new Error(`Could not find a handler file. Please ensure that \`files\` for the returned \`Lambda\` contains an \`FileFsRef\` named "${handlerFileBase}" with a valid \`fsPath\`.`);
217524
+ }
217525
+ const handlerExtName = path_1.extname(handlerFile.fsPath);
217526
+ const entryRoot = path_1.join(workPath, '.output', 'server', 'pages');
217527
+ const entryBase = path_1.basename(entrypoint).replace(ext, handlerExtName);
217528
+ const entryPath = path_1.join(path_1.dirname(entrypoint), entryBase);
217529
+ const entry = path_1.join(entryRoot, entryPath);
217524
217530
  // We never want to link here, only copy, because the launcher
217525
217531
  // file often has the same name for every entrypoint, which means that
217526
217532
  // every build for every entrypoint overwrites the launcher of the previous
217527
217533
  // one, so linking would end with a broken reference.
217528
217534
  await fs_extra_1.default.ensureDir(path_1.dirname(entry));
217529
- await fs_extra_1.default.copy(handlerFileOrigin, entry);
217535
+ await fs_extra_1.default.copy(handlerFile.fsPath, entry);
217530
217536
  const newFilesEntrypoint = [];
217531
217537
  const newDirectoriesEntrypoint = [];
217532
217538
  const preBuildFiles = Object.values(sourceFilesPreBuild).map(file => {
@@ -217577,7 +217583,7 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
217577
217583
  const linkers = Object.entries(lambdaFiles).map(async ([relPath, file]) => {
217578
217584
  const newPath = path_1.join(traceDir, relPath);
217579
217585
  // The handler was already moved into position above.
217580
- if (relPath === handlerFilePath) {
217586
+ if (relPath === handlerFileBase) {
217581
217587
  return;
217582
217588
  }
217583
217589
  tracedFiles.push({ absolutePath: newPath, relativePath: relPath });
@@ -217614,7 +217620,7 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
217614
217620
  }
217615
217621
  });
217616
217622
  linkersRuntime = linkersRuntime.concat(linkers);
217617
- const nft = path_1.join(workPath, '.output', 'server', 'pages', `${entrypoint}.nft.json`);
217623
+ const nft = `${entry}.nft.json`;
217618
217624
  const json = JSON.stringify({
217619
217625
  version: 1,
217620
217626
  files: tracedFiles.map(file => ({
@@ -217632,11 +217638,14 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
217632
217638
  ...newFilesEntrypoint,
217633
217639
  ...newDirectoriesEntrypoint,
217634
217640
  ]);
217635
- const apiRouteHandler = `${path_1.parse(entry).name}.${handlerMethod}`;
217636
217641
  // Add an entry that will later on be added to the `functions-manifest.json`
217637
217642
  // file that is placed inside of the `.output` directory.
217638
- pages[entrypoint] = {
217639
- handler: apiRouteHandler,
217643
+ pages[normalize_path_1.normalizePath(entryPath)] = {
217644
+ // Because the underlying file used as a handler was placed
217645
+ // inside `.output/server/pages/api`, it no longer has the name it originally
217646
+ // had and is now named after the API Route that it's responsible for,
217647
+ // so we have to adjust the name of the Lambda handler accordingly.
217648
+ handler: handler.replace(handlerFileName, path_1.parse(entry).name),
217640
217649
  runtime: output.runtime,
217641
217650
  memory: output.memory,
217642
217651
  maxDuration: output.maxDuration,
@@ -217750,12 +217759,12 @@ exports.updateRoutesManifest = updateRoutesManifest;
217750
217759
  /***/ }),
217751
217760
 
217752
217761
  /***/ 1868:
217753
- /***/ ((__unused_webpack_module, exports, __nested_webpack_require_935813__) => {
217762
+ /***/ ((__unused_webpack_module, exports, __nested_webpack_require_936452__) => {
217754
217763
 
217755
217764
  "use strict";
217756
217765
 
217757
217766
  Object.defineProperty(exports, "__esModule", ({ value: true }));
217758
- const _1 = __nested_webpack_require_935813__(2855);
217767
+ const _1 = __nested_webpack_require_936452__(2855);
217759
217768
  function debug(message, ...additional) {
217760
217769
  if (_1.getPlatformEnv('BUILDER_DEBUG')) {
217761
217770
  console.log(message, ...additional);
@@ -217767,7 +217776,7 @@ exports.default = debug;
217767
217776
  /***/ }),
217768
217777
 
217769
217778
  /***/ 4246:
217770
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_936198__) {
217779
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_936837__) {
217771
217780
 
217772
217781
  "use strict";
217773
217782
 
@@ -217776,11 +217785,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
217776
217785
  };
217777
217786
  Object.defineProperty(exports, "__esModule", ({ value: true }));
217778
217787
  exports.detectBuilders = exports.detectOutputDirectory = exports.detectApiDirectory = exports.detectApiExtensions = exports.sortFiles = void 0;
217779
- const minimatch_1 = __importDefault(__nested_webpack_require_936198__(9566));
217780
- const semver_1 = __nested_webpack_require_936198__(2879);
217781
- const path_1 = __nested_webpack_require_936198__(5622);
217782
- const frameworks_1 = __importDefault(__nested_webpack_require_936198__(8438));
217783
- const _1 = __nested_webpack_require_936198__(2855);
217788
+ const minimatch_1 = __importDefault(__nested_webpack_require_936837__(9566));
217789
+ const semver_1 = __nested_webpack_require_936837__(2879);
217790
+ const path_1 = __nested_webpack_require_936837__(5622);
217791
+ const frameworks_1 = __importDefault(__nested_webpack_require_936837__(8438));
217792
+ const _1 = __nested_webpack_require_936837__(2855);
217784
217793
  const slugToFramework = new Map(frameworks_1.default.map(f => [f.slug, f]));
217785
217794
  // We need to sort the file paths by alphabet to make
217786
217795
  // sure the routes stay in the same order e.g. for deduping
@@ -218839,7 +218848,7 @@ function getSuggestion(topLevelProp, additionalProperty) {
218839
218848
  /***/ }),
218840
218849
 
218841
218850
  /***/ 2397:
218842
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_975582__) {
218851
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_976221__) {
218843
218852
 
218844
218853
  "use strict";
218845
218854
 
@@ -218847,8 +218856,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
218847
218856
  return (mod && mod.__esModule) ? mod : { "default": mod };
218848
218857
  };
218849
218858
  Object.defineProperty(exports, "__esModule", ({ value: true }));
218850
- const assert_1 = __importDefault(__nested_webpack_require_975582__(2357));
218851
- const into_stream_1 = __importDefault(__nested_webpack_require_975582__(6130));
218859
+ const assert_1 = __importDefault(__nested_webpack_require_976221__(2357));
218860
+ const into_stream_1 = __importDefault(__nested_webpack_require_976221__(6130));
218852
218861
  class FileBlob {
218853
218862
  constructor({ mode = 0o100644, contentType, data }) {
218854
218863
  assert_1.default(typeof mode === 'number');
@@ -218880,7 +218889,7 @@ exports.default = FileBlob;
218880
218889
  /***/ }),
218881
218890
 
218882
218891
  /***/ 9331:
218883
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_977034__) {
218892
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_977673__) {
218884
218893
 
218885
218894
  "use strict";
218886
218895
 
@@ -218888,11 +218897,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
218888
218897
  return (mod && mod.__esModule) ? mod : { "default": mod };
218889
218898
  };
218890
218899
  Object.defineProperty(exports, "__esModule", ({ value: true }));
218891
- const assert_1 = __importDefault(__nested_webpack_require_977034__(2357));
218892
- const fs_extra_1 = __importDefault(__nested_webpack_require_977034__(5392));
218893
- const multistream_1 = __importDefault(__nested_webpack_require_977034__(8179));
218894
- const path_1 = __importDefault(__nested_webpack_require_977034__(5622));
218895
- const async_sema_1 = __importDefault(__nested_webpack_require_977034__(5758));
218900
+ const assert_1 = __importDefault(__nested_webpack_require_977673__(2357));
218901
+ const fs_extra_1 = __importDefault(__nested_webpack_require_977673__(5392));
218902
+ const multistream_1 = __importDefault(__nested_webpack_require_977673__(8179));
218903
+ const path_1 = __importDefault(__nested_webpack_require_977673__(5622));
218904
+ const async_sema_1 = __importDefault(__nested_webpack_require_977673__(5758));
218896
218905
  const semaToPreventEMFILE = new async_sema_1.default(20);
218897
218906
  class FileFsRef {
218898
218907
  constructor({ mode = 0o100644, contentType, fsPath }) {
@@ -218958,7 +218967,7 @@ exports.default = FileFsRef;
218958
218967
  /***/ }),
218959
218968
 
218960
218969
  /***/ 5187:
218961
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_979838__) {
218970
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_980477__) {
218962
218971
 
218963
218972
  "use strict";
218964
218973
 
@@ -218966,11 +218975,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
218966
218975
  return (mod && mod.__esModule) ? mod : { "default": mod };
218967
218976
  };
218968
218977
  Object.defineProperty(exports, "__esModule", ({ value: true }));
218969
- const assert_1 = __importDefault(__nested_webpack_require_979838__(2357));
218970
- const node_fetch_1 = __importDefault(__nested_webpack_require_979838__(2197));
218971
- const multistream_1 = __importDefault(__nested_webpack_require_979838__(8179));
218972
- const async_retry_1 = __importDefault(__nested_webpack_require_979838__(3691));
218973
- const async_sema_1 = __importDefault(__nested_webpack_require_979838__(5758));
218978
+ const assert_1 = __importDefault(__nested_webpack_require_980477__(2357));
218979
+ const node_fetch_1 = __importDefault(__nested_webpack_require_980477__(2197));
218980
+ const multistream_1 = __importDefault(__nested_webpack_require_980477__(8179));
218981
+ const async_retry_1 = __importDefault(__nested_webpack_require_980477__(3691));
218982
+ const async_sema_1 = __importDefault(__nested_webpack_require_980477__(5758));
218974
218983
  const semaToDownloadFromS3 = new async_sema_1.default(5);
218975
218984
  class BailableError extends Error {
218976
218985
  constructor(...args) {
@@ -219051,7 +219060,7 @@ exports.default = FileRef;
219051
219060
  /***/ }),
219052
219061
 
219053
219062
  /***/ 1611:
219054
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_983239__) {
219063
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_983878__) {
219055
219064
 
219056
219065
  "use strict";
219057
219066
 
@@ -219060,10 +219069,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219060
219069
  };
219061
219070
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219062
219071
  exports.isSymbolicLink = void 0;
219063
- const path_1 = __importDefault(__nested_webpack_require_983239__(5622));
219064
- const debug_1 = __importDefault(__nested_webpack_require_983239__(1868));
219065
- const file_fs_ref_1 = __importDefault(__nested_webpack_require_983239__(9331));
219066
- const fs_extra_1 = __nested_webpack_require_983239__(5392);
219072
+ const path_1 = __importDefault(__nested_webpack_require_983878__(5622));
219073
+ const debug_1 = __importDefault(__nested_webpack_require_983878__(1868));
219074
+ const file_fs_ref_1 = __importDefault(__nested_webpack_require_983878__(9331));
219075
+ const fs_extra_1 = __nested_webpack_require_983878__(5392);
219067
219076
  const S_IFMT = 61440; /* 0170000 type of file */
219068
219077
  const S_IFLNK = 40960; /* 0120000 symbolic link */
219069
219078
  function isSymbolicLink(mode) {
@@ -219125,14 +219134,14 @@ exports.default = download;
219125
219134
  /***/ }),
219126
219135
 
219127
219136
  /***/ 3838:
219128
- /***/ ((__unused_webpack_module, exports, __nested_webpack_require_986064__) => {
219137
+ /***/ ((__unused_webpack_module, exports, __nested_webpack_require_986703__) => {
219129
219138
 
219130
219139
  "use strict";
219131
219140
 
219132
219141
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219133
- const path_1 = __nested_webpack_require_986064__(5622);
219134
- const os_1 = __nested_webpack_require_986064__(2087);
219135
- const fs_extra_1 = __nested_webpack_require_986064__(5392);
219142
+ const path_1 = __nested_webpack_require_986703__(5622);
219143
+ const os_1 = __nested_webpack_require_986703__(2087);
219144
+ const fs_extra_1 = __nested_webpack_require_986703__(5392);
219136
219145
  async function getWritableDirectory() {
219137
219146
  const name = Math.floor(Math.random() * 0x7fffffff).toString(16);
219138
219147
  const directory = path_1.join(os_1.tmpdir(), name);
@@ -219145,7 +219154,7 @@ exports.default = getWritableDirectory;
219145
219154
  /***/ }),
219146
219155
 
219147
219156
  /***/ 4240:
219148
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_986644__) {
219157
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_987283__) {
219149
219158
 
219150
219159
  "use strict";
219151
219160
 
@@ -219153,13 +219162,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219153
219162
  return (mod && mod.__esModule) ? mod : { "default": mod };
219154
219163
  };
219155
219164
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219156
- const path_1 = __importDefault(__nested_webpack_require_986644__(5622));
219157
- const assert_1 = __importDefault(__nested_webpack_require_986644__(2357));
219158
- const glob_1 = __importDefault(__nested_webpack_require_986644__(1104));
219159
- const util_1 = __nested_webpack_require_986644__(1669);
219160
- const fs_extra_1 = __nested_webpack_require_986644__(5392);
219161
- const normalize_path_1 = __nested_webpack_require_986644__(6261);
219162
- const file_fs_ref_1 = __importDefault(__nested_webpack_require_986644__(9331));
219165
+ const path_1 = __importDefault(__nested_webpack_require_987283__(5622));
219166
+ const assert_1 = __importDefault(__nested_webpack_require_987283__(2357));
219167
+ const glob_1 = __importDefault(__nested_webpack_require_987283__(1104));
219168
+ const util_1 = __nested_webpack_require_987283__(1669);
219169
+ const fs_extra_1 = __nested_webpack_require_987283__(5392);
219170
+ const normalize_path_1 = __nested_webpack_require_987283__(6261);
219171
+ const file_fs_ref_1 = __importDefault(__nested_webpack_require_987283__(9331));
219163
219172
  const vanillaGlob = util_1.promisify(glob_1.default);
219164
219173
  async function glob(pattern, opts, mountpoint) {
219165
219174
  let options;
@@ -219205,7 +219214,7 @@ exports.default = glob;
219205
219214
  /***/ }),
219206
219215
 
219207
219216
  /***/ 7903:
219208
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_988840__) {
219217
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_989479__) {
219209
219218
 
219210
219219
  "use strict";
219211
219220
 
@@ -219214,9 +219223,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219214
219223
  };
219215
219224
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219216
219225
  exports.getSupportedNodeVersion = exports.getDiscontinuedNodeVersions = exports.getLatestNodeVersion = void 0;
219217
- const semver_1 = __nested_webpack_require_988840__(2879);
219218
- const errors_1 = __nested_webpack_require_988840__(3983);
219219
- const debug_1 = __importDefault(__nested_webpack_require_988840__(1868));
219226
+ const semver_1 = __nested_webpack_require_989479__(2879);
219227
+ const errors_1 = __nested_webpack_require_989479__(3983);
219228
+ const debug_1 = __importDefault(__nested_webpack_require_989479__(1868));
219220
219229
  const allOptions = [
219221
219230
  { major: 14, range: '14.x', runtime: 'nodejs14.x' },
219222
219231
  { major: 12, range: '12.x', runtime: 'nodejs12.x' },
@@ -219310,7 +219319,7 @@ exports.normalizePath = normalizePath;
219310
219319
  /***/ }),
219311
219320
 
219312
219321
  /***/ 7792:
219313
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_992708__) {
219322
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_993347__) {
219314
219323
 
219315
219324
  "use strict";
219316
219325
 
@@ -219319,9 +219328,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219319
219328
  };
219320
219329
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219321
219330
  exports.readConfigFile = void 0;
219322
- const js_yaml_1 = __importDefault(__nested_webpack_require_992708__(6540));
219323
- const toml_1 = __importDefault(__nested_webpack_require_992708__(9434));
219324
- const fs_extra_1 = __nested_webpack_require_992708__(5392);
219331
+ const js_yaml_1 = __importDefault(__nested_webpack_require_993347__(6540));
219332
+ const toml_1 = __importDefault(__nested_webpack_require_993347__(9434));
219333
+ const fs_extra_1 = __nested_webpack_require_993347__(5392);
219325
219334
  async function readFileOrNull(file) {
219326
219335
  try {
219327
219336
  const data = await fs_extra_1.readFile(file);
@@ -219376,7 +219385,7 @@ exports.default = rename;
219376
219385
  /***/ }),
219377
219386
 
219378
219387
  /***/ 1442:
219379
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_994501__) {
219388
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_995140__) {
219380
219389
 
219381
219390
  "use strict";
219382
219391
 
@@ -219385,14 +219394,14 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219385
219394
  };
219386
219395
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219387
219396
  exports.installDependencies = exports.getScriptName = exports.runPipInstall = exports.runBundleInstall = exports.runPackageJsonScript = exports.runNpmInstall = exports.walkParentDirs = exports.scanParentDirs = exports.getNodeVersion = exports.getSpawnOptions = exports.runShellScript = exports.getNodeBinPath = exports.execCommand = exports.spawnCommand = exports.execAsync = exports.spawnAsync = void 0;
219388
- const assert_1 = __importDefault(__nested_webpack_require_994501__(2357));
219389
- const fs_extra_1 = __importDefault(__nested_webpack_require_994501__(5392));
219390
- const path_1 = __importDefault(__nested_webpack_require_994501__(5622));
219391
- const debug_1 = __importDefault(__nested_webpack_require_994501__(1868));
219392
- const cross_spawn_1 = __importDefault(__nested_webpack_require_994501__(7618));
219393
- const util_1 = __nested_webpack_require_994501__(1669);
219394
- const errors_1 = __nested_webpack_require_994501__(3983);
219395
- const node_version_1 = __nested_webpack_require_994501__(7903);
219397
+ const assert_1 = __importDefault(__nested_webpack_require_995140__(2357));
219398
+ const fs_extra_1 = __importDefault(__nested_webpack_require_995140__(5392));
219399
+ const path_1 = __importDefault(__nested_webpack_require_995140__(5622));
219400
+ const debug_1 = __importDefault(__nested_webpack_require_995140__(1868));
219401
+ const cross_spawn_1 = __importDefault(__nested_webpack_require_995140__(7618));
219402
+ const util_1 = __nested_webpack_require_995140__(1669);
219403
+ const errors_1 = __nested_webpack_require_995140__(3983);
219404
+ const node_version_1 = __nested_webpack_require_995140__(7903);
219396
219405
  function spawnAsync(command, args, opts = {}) {
219397
219406
  return new Promise((resolve, reject) => {
219398
219407
  const stderrLogs = [];
@@ -219703,7 +219712,7 @@ exports.installDependencies = util_1.deprecate(runNpmInstall, 'installDependenci
219703
219712
  /***/ }),
219704
219713
 
219705
219714
  /***/ 2560:
219706
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1008491__) {
219715
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1009130__) {
219707
219716
 
219708
219717
  "use strict";
219709
219718
 
@@ -219711,7 +219720,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219711
219720
  return (mod && mod.__esModule) ? mod : { "default": mod };
219712
219721
  };
219713
219722
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219714
- const end_of_stream_1 = __importDefault(__nested_webpack_require_1008491__(687));
219723
+ const end_of_stream_1 = __importDefault(__nested_webpack_require_1009130__(687));
219715
219724
  function streamToBuffer(stream) {
219716
219725
  return new Promise((resolve, reject) => {
219717
219726
  const buffers = [];
@@ -219740,7 +219749,7 @@ exports.default = streamToBuffer;
219740
219749
  /***/ }),
219741
219750
 
219742
219751
  /***/ 1148:
219743
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1009559__) {
219752
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1010198__) {
219744
219753
 
219745
219754
  "use strict";
219746
219755
 
@@ -219748,9 +219757,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219748
219757
  return (mod && mod.__esModule) ? mod : { "default": mod };
219749
219758
  };
219750
219759
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219751
- const path_1 = __importDefault(__nested_webpack_require_1009559__(5622));
219752
- const fs_extra_1 = __importDefault(__nested_webpack_require_1009559__(5392));
219753
- const ignore_1 = __importDefault(__nested_webpack_require_1009559__(3556));
219760
+ const path_1 = __importDefault(__nested_webpack_require_1010198__(5622));
219761
+ const fs_extra_1 = __importDefault(__nested_webpack_require_1010198__(5392));
219762
+ const ignore_1 = __importDefault(__nested_webpack_require_1010198__(3556));
219754
219763
  function isCodedError(error) {
219755
219764
  return (error !== null &&
219756
219765
  error !== undefined &&
@@ -219807,7 +219816,7 @@ exports.default = default_1;
219807
219816
  /***/ }),
219808
219817
 
219809
219818
  /***/ 2855:
219810
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1011941__) {
219819
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1012580__) {
219811
219820
 
219812
219821
  "use strict";
219813
219822
 
@@ -219838,29 +219847,29 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219838
219847
  };
219839
219848
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219840
219849
  exports.getInputHash = exports.getPlatformEnv = exports.isStaticRuntime = exports.isOfficialRuntime = exports.updateRoutesManifest = exports.updateFunctionsManifest = exports.convertRuntimeToPlugin = exports.normalizePath = exports.readConfigFile = exports.DetectorFilesystem = exports.detectFramework = exports.detectApiExtensions = exports.detectApiDirectory = exports.detectOutputDirectory = exports.detectBuilders = exports.getIgnoreFilter = exports.scanParentDirs = exports.getLambdaOptionsFromFunction = exports.isSymbolicLink = exports.debug = exports.shouldServe = exports.streamToBuffer = exports.getSpawnOptions = exports.getDiscontinuedNodeVersions = exports.getLatestNodeVersion = exports.getNodeVersion = exports.runShellScript = exports.runPipInstall = exports.runBundleInstall = exports.runNpmInstall = exports.getNodeBinPath = exports.walkParentDirs = exports.spawnCommand = exports.execCommand = exports.runPackageJsonScript = exports.installDependencies = exports.getScriptName = exports.spawnAsync = exports.execAsync = exports.rename = exports.glob = exports.getWriteableDirectory = exports.download = exports.Prerender = exports.createLambda = exports.Lambda = exports.FileRef = exports.FileFsRef = exports.FileBlob = void 0;
219841
- const crypto_1 = __nested_webpack_require_1011941__(6417);
219842
- const file_blob_1 = __importDefault(__nested_webpack_require_1011941__(2397));
219850
+ const crypto_1 = __nested_webpack_require_1012580__(6417);
219851
+ const file_blob_1 = __importDefault(__nested_webpack_require_1012580__(2397));
219843
219852
  exports.FileBlob = file_blob_1.default;
219844
- const file_fs_ref_1 = __importDefault(__nested_webpack_require_1011941__(9331));
219853
+ const file_fs_ref_1 = __importDefault(__nested_webpack_require_1012580__(9331));
219845
219854
  exports.FileFsRef = file_fs_ref_1.default;
219846
- const file_ref_1 = __importDefault(__nested_webpack_require_1011941__(5187));
219855
+ const file_ref_1 = __importDefault(__nested_webpack_require_1012580__(5187));
219847
219856
  exports.FileRef = file_ref_1.default;
219848
- const lambda_1 = __nested_webpack_require_1011941__(6721);
219857
+ const lambda_1 = __nested_webpack_require_1012580__(6721);
219849
219858
  Object.defineProperty(exports, "Lambda", ({ enumerable: true, get: function () { return lambda_1.Lambda; } }));
219850
219859
  Object.defineProperty(exports, "createLambda", ({ enumerable: true, get: function () { return lambda_1.createLambda; } }));
219851
219860
  Object.defineProperty(exports, "getLambdaOptionsFromFunction", ({ enumerable: true, get: function () { return lambda_1.getLambdaOptionsFromFunction; } }));
219852
- const prerender_1 = __nested_webpack_require_1011941__(2850);
219861
+ const prerender_1 = __nested_webpack_require_1012580__(2850);
219853
219862
  Object.defineProperty(exports, "Prerender", ({ enumerable: true, get: function () { return prerender_1.Prerender; } }));
219854
- const download_1 = __importStar(__nested_webpack_require_1011941__(1611));
219863
+ const download_1 = __importStar(__nested_webpack_require_1012580__(1611));
219855
219864
  exports.download = download_1.default;
219856
219865
  Object.defineProperty(exports, "isSymbolicLink", ({ enumerable: true, get: function () { return download_1.isSymbolicLink; } }));
219857
- const get_writable_directory_1 = __importDefault(__nested_webpack_require_1011941__(3838));
219866
+ const get_writable_directory_1 = __importDefault(__nested_webpack_require_1012580__(3838));
219858
219867
  exports.getWriteableDirectory = get_writable_directory_1.default;
219859
- const glob_1 = __importDefault(__nested_webpack_require_1011941__(4240));
219868
+ const glob_1 = __importDefault(__nested_webpack_require_1012580__(4240));
219860
219869
  exports.glob = glob_1.default;
219861
- const rename_1 = __importDefault(__nested_webpack_require_1011941__(6718));
219870
+ const rename_1 = __importDefault(__nested_webpack_require_1012580__(6718));
219862
219871
  exports.rename = rename_1.default;
219863
- const run_user_scripts_1 = __nested_webpack_require_1011941__(1442);
219872
+ const run_user_scripts_1 = __nested_webpack_require_1012580__(1442);
219864
219873
  Object.defineProperty(exports, "execAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.execAsync; } }));
219865
219874
  Object.defineProperty(exports, "spawnAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.spawnAsync; } }));
219866
219875
  Object.defineProperty(exports, "execCommand", ({ enumerable: true, get: function () { return run_user_scripts_1.execCommand; } }));
@@ -219877,38 +219886,38 @@ Object.defineProperty(exports, "getNodeVersion", ({ enumerable: true, get: funct
219877
219886
  Object.defineProperty(exports, "getSpawnOptions", ({ enumerable: true, get: function () { return run_user_scripts_1.getSpawnOptions; } }));
219878
219887
  Object.defineProperty(exports, "getNodeBinPath", ({ enumerable: true, get: function () { return run_user_scripts_1.getNodeBinPath; } }));
219879
219888
  Object.defineProperty(exports, "scanParentDirs", ({ enumerable: true, get: function () { return run_user_scripts_1.scanParentDirs; } }));
219880
- const node_version_1 = __nested_webpack_require_1011941__(7903);
219889
+ const node_version_1 = __nested_webpack_require_1012580__(7903);
219881
219890
  Object.defineProperty(exports, "getLatestNodeVersion", ({ enumerable: true, get: function () { return node_version_1.getLatestNodeVersion; } }));
219882
219891
  Object.defineProperty(exports, "getDiscontinuedNodeVersions", ({ enumerable: true, get: function () { return node_version_1.getDiscontinuedNodeVersions; } }));
219883
- const errors_1 = __nested_webpack_require_1011941__(3983);
219884
- const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1011941__(2560));
219892
+ const errors_1 = __nested_webpack_require_1012580__(3983);
219893
+ const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1012580__(2560));
219885
219894
  exports.streamToBuffer = stream_to_buffer_1.default;
219886
- const should_serve_1 = __importDefault(__nested_webpack_require_1011941__(2564));
219895
+ const should_serve_1 = __importDefault(__nested_webpack_require_1012580__(2564));
219887
219896
  exports.shouldServe = should_serve_1.default;
219888
- const debug_1 = __importDefault(__nested_webpack_require_1011941__(1868));
219897
+ const debug_1 = __importDefault(__nested_webpack_require_1012580__(1868));
219889
219898
  exports.debug = debug_1.default;
219890
- const get_ignore_filter_1 = __importDefault(__nested_webpack_require_1011941__(1148));
219899
+ const get_ignore_filter_1 = __importDefault(__nested_webpack_require_1012580__(1148));
219891
219900
  exports.getIgnoreFilter = get_ignore_filter_1.default;
219892
- var detect_builders_1 = __nested_webpack_require_1011941__(4246);
219901
+ var detect_builders_1 = __nested_webpack_require_1012580__(4246);
219893
219902
  Object.defineProperty(exports, "detectBuilders", ({ enumerable: true, get: function () { return detect_builders_1.detectBuilders; } }));
219894
219903
  Object.defineProperty(exports, "detectOutputDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectOutputDirectory; } }));
219895
219904
  Object.defineProperty(exports, "detectApiDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectApiDirectory; } }));
219896
219905
  Object.defineProperty(exports, "detectApiExtensions", ({ enumerable: true, get: function () { return detect_builders_1.detectApiExtensions; } }));
219897
- var detect_framework_1 = __nested_webpack_require_1011941__(5224);
219906
+ var detect_framework_1 = __nested_webpack_require_1012580__(5224);
219898
219907
  Object.defineProperty(exports, "detectFramework", ({ enumerable: true, get: function () { return detect_framework_1.detectFramework; } }));
219899
- var filesystem_1 = __nested_webpack_require_1011941__(461);
219908
+ var filesystem_1 = __nested_webpack_require_1012580__(461);
219900
219909
  Object.defineProperty(exports, "DetectorFilesystem", ({ enumerable: true, get: function () { return filesystem_1.DetectorFilesystem; } }));
219901
- var read_config_file_1 = __nested_webpack_require_1011941__(7792);
219910
+ var read_config_file_1 = __nested_webpack_require_1012580__(7792);
219902
219911
  Object.defineProperty(exports, "readConfigFile", ({ enumerable: true, get: function () { return read_config_file_1.readConfigFile; } }));
219903
- var normalize_path_1 = __nested_webpack_require_1011941__(6261);
219912
+ var normalize_path_1 = __nested_webpack_require_1012580__(6261);
219904
219913
  Object.defineProperty(exports, "normalizePath", ({ enumerable: true, get: function () { return normalize_path_1.normalizePath; } }));
219905
- var convert_runtime_to_plugin_1 = __nested_webpack_require_1011941__(7276);
219914
+ var convert_runtime_to_plugin_1 = __nested_webpack_require_1012580__(7276);
219906
219915
  Object.defineProperty(exports, "convertRuntimeToPlugin", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.convertRuntimeToPlugin; } }));
219907
219916
  Object.defineProperty(exports, "updateFunctionsManifest", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.updateFunctionsManifest; } }));
219908
219917
  Object.defineProperty(exports, "updateRoutesManifest", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.updateRoutesManifest; } }));
219909
- __exportStar(__nested_webpack_require_1011941__(2416), exports);
219910
- __exportStar(__nested_webpack_require_1011941__(5748), exports);
219911
- __exportStar(__nested_webpack_require_1011941__(3983), exports);
219918
+ __exportStar(__nested_webpack_require_1012580__(2416), exports);
219919
+ __exportStar(__nested_webpack_require_1012580__(5748), exports);
219920
+ __exportStar(__nested_webpack_require_1012580__(3983), exports);
219912
219921
  /**
219913
219922
  * Helper function to support both `@vercel` and legacy `@now` official Runtimes.
219914
219923
  */
@@ -219961,7 +219970,7 @@ exports.getInputHash = getInputHash;
219961
219970
  /***/ }),
219962
219971
 
219963
219972
  /***/ 6721:
219964
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1022919__) {
219973
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1023558__) {
219965
219974
 
219966
219975
  "use strict";
219967
219976
 
@@ -219970,13 +219979,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219970
219979
  };
219971
219980
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219972
219981
  exports.getLambdaOptionsFromFunction = exports.createZip = exports.createLambda = exports.Lambda = exports.FILES_SYMBOL = void 0;
219973
- const assert_1 = __importDefault(__nested_webpack_require_1022919__(2357));
219974
- const async_sema_1 = __importDefault(__nested_webpack_require_1022919__(5758));
219975
- const yazl_1 = __nested_webpack_require_1022919__(1223);
219976
- const minimatch_1 = __importDefault(__nested_webpack_require_1022919__(9566));
219977
- const fs_extra_1 = __nested_webpack_require_1022919__(5392);
219978
- const download_1 = __nested_webpack_require_1022919__(1611);
219979
- const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1022919__(2560));
219982
+ const assert_1 = __importDefault(__nested_webpack_require_1023558__(2357));
219983
+ const async_sema_1 = __importDefault(__nested_webpack_require_1023558__(5758));
219984
+ const yazl_1 = __nested_webpack_require_1023558__(1223);
219985
+ const minimatch_1 = __importDefault(__nested_webpack_require_1023558__(9566));
219986
+ const fs_extra_1 = __nested_webpack_require_1023558__(5392);
219987
+ const download_1 = __nested_webpack_require_1023558__(1611);
219988
+ const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1023558__(2560));
219980
219989
  exports.FILES_SYMBOL = Symbol('files');
219981
219990
  class Lambda {
219982
219991
  constructor({ zipBuffer, handler, runtime, maxDuration, memory, environment, allowQuery, regions, }) {
@@ -220205,12 +220214,12 @@ exports.buildsSchema = {
220205
220214
  /***/ }),
220206
220215
 
220207
220216
  /***/ 2564:
220208
- /***/ ((__unused_webpack_module, exports, __nested_webpack_require_1031429__) => {
220217
+ /***/ ((__unused_webpack_module, exports, __nested_webpack_require_1032068__) => {
220209
220218
 
220210
220219
  "use strict";
220211
220220
 
220212
220221
  Object.defineProperty(exports, "__esModule", ({ value: true }));
220213
- const path_1 = __nested_webpack_require_1031429__(5622);
220222
+ const path_1 = __nested_webpack_require_1032068__(5622);
220214
220223
  function shouldServe({ entrypoint, files, requestPath, }) {
220215
220224
  requestPath = requestPath.replace(/\/$/, ''); // sanitize trailing '/'
220216
220225
  entrypoint = entrypoint.replace(/\\/, '/'); // windows compatibility
@@ -220447,7 +220456,7 @@ module.exports = __webpack_require__(78761);
220447
220456
  /******/ var __webpack_module_cache__ = {};
220448
220457
  /******/
220449
220458
  /******/ // The require function
220450
- /******/ function __nested_webpack_require_1131164__(moduleId) {
220459
+ /******/ function __nested_webpack_require_1131803__(moduleId) {
220451
220460
  /******/ // Check if module is in cache
220452
220461
  /******/ if(__webpack_module_cache__[moduleId]) {
220453
220462
  /******/ return __webpack_module_cache__[moduleId].exports;
@@ -220462,7 +220471,7 @@ module.exports = __webpack_require__(78761);
220462
220471
  /******/ // Execute the module function
220463
220472
  /******/ var threw = true;
220464
220473
  /******/ try {
220465
- /******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __nested_webpack_require_1131164__);
220474
+ /******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __nested_webpack_require_1131803__);
220466
220475
  /******/ threw = false;
220467
220476
  /******/ } finally {
220468
220477
  /******/ if(threw) delete __webpack_module_cache__[moduleId];
@@ -220475,11 +220484,11 @@ module.exports = __webpack_require__(78761);
220475
220484
  /************************************************************************/
220476
220485
  /******/ /* webpack/runtime/compat */
220477
220486
  /******/
220478
- /******/ __nested_webpack_require_1131164__.ab = __dirname + "/";/************************************************************************/
220487
+ /******/ __nested_webpack_require_1131803__.ab = __dirname + "/";/************************************************************************/
220479
220488
  /******/ // module exports must be returned from runtime so entry inlining is disabled
220480
220489
  /******/ // startup
220481
220490
  /******/ // Load entry module and return exports
220482
- /******/ return __nested_webpack_require_1131164__(2855);
220491
+ /******/ return __nested_webpack_require_1131803__(2855);
220483
220492
  /******/ })()
220484
220493
  ;
220485
220494
 
@@ -271311,7 +271320,7 @@ module.exports = JSON.parse("[\"ac\",\"com.ac\",\"edu.ac\",\"gov.ac\",\"net.ac\"
271311
271320
  /***/ ((module) => {
271312
271321
 
271313
271322
  "use strict";
271314
- module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"23.1.3-canary.57\",\"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\",\"test-unit\":\"jest --coverage --verbose\",\"test-integration-cli\":\"rimraf test/fixtures/integration && ava test/integration.js --serial --fail-fast --verbose\",\"test-integration-dev\":\"ava test/dev/integration.js --serial --fail-fast --verbose\",\"prepublishOnly\":\"yarn build\",\"coverage\":\"codecov\",\"build\":\"node -r ts-eager/register ./scripts/build.ts\",\"build-dev\":\"node -r ts-eager/register ./scripts/build.ts --dev\"},\"bin\":{\"vc\":\"./dist/index.js\",\"vercel\":\"./dist/index.js\"},\"files\":[\"dist\",\"scripts/preinstall.js\"],\"ava\":{\"compileEnhancements\":false,\"extensions\":[\"ts\"],\"require\":[\"ts-node/register/transpile-only\",\"esm\"]},\"engines\":{\"node\":\">= 12\"},\"dependencies\":{\"@vercel/build-utils\":\"2.12.3-canary.34\",\"@vercel/go\":\"1.2.4-canary.4\",\"@vercel/node\":\"1.12.2-canary.7\",\"@vercel/python\":\"2.1.2-canary.1\",\"@vercel/ruby\":\"1.2.8-canary.7\",\"update-notifier\":\"4.1.0\",\"vercel-plugin-middleware\":\"0.0.0-canary.10\",\"vercel-plugin-node\":\"1.12.2-canary.26\"},\"devDependencies\":{\"@next/env\":\"11.1.2\",\"@sentry/node\":\"5.5.0\",\"@sindresorhus/slugify\":\"0.11.0\",\"@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/inquirer\":\"7.3.1\",\"@types/jest\":\"27.0.1\",\"@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\",\"@vercel/frameworks\":\"0.5.1-canary.16\",\"@vercel/ncc\":\"0.24.0\",\"@vercel/nft\":\"0.17.0\",\"@zeit/fun\":\"0.11.2\",\"@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\",\"bytes\":\"3.0.0\",\"chalk\":\"4.1.0\",\"chance\":\"1.1.7\",\"chokidar\":\"3.3.1\",\"clipboardy\":\"2.1.0\",\"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\",\"glob\":\"7.1.2\",\"http-proxy\":\"1.18.1\",\"inquirer\":\"7.0.4\",\"is-docker\":\"2.2.1\",\"is-port-reachable\":\"3.0.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.1\",\"npm-package-arg\":\"6.1.0\",\"open\":\"8.2.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-eager\":\"2.0.2\",\"ts-node\":\"8.3.0\",\"typescript\":\"4.3.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\"},\"jest\":{\"preset\":\"ts-jest\",\"globals\":{\"ts-jest\":{\"diagnostics\":false,\"isolatedModules\":true}},\"verbose\":false,\"testEnvironment\":\"node\",\"testMatch\":[\"<rootDir>/test/**/*.test.ts\"]},\"gitHead\":\"8d619bd7cccbcd0d25c9a75133a24eaedcf72474\"}");
271323
+ module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"23.1.3-canary.58\",\"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\",\"test-unit\":\"jest --coverage --verbose\",\"test-integration-cli\":\"rimraf test/fixtures/integration && ava test/integration.js --serial --fail-fast --verbose\",\"test-integration-dev\":\"ava test/dev/integration.js --serial --fail-fast --verbose\",\"prepublishOnly\":\"yarn build\",\"coverage\":\"codecov\",\"build\":\"node -r ts-eager/register ./scripts/build.ts\",\"build-dev\":\"node -r ts-eager/register ./scripts/build.ts --dev\"},\"bin\":{\"vc\":\"./dist/index.js\",\"vercel\":\"./dist/index.js\"},\"files\":[\"dist\",\"scripts/preinstall.js\"],\"ava\":{\"compileEnhancements\":false,\"extensions\":[\"ts\"],\"require\":[\"ts-node/register/transpile-only\",\"esm\"]},\"engines\":{\"node\":\">= 12\"},\"dependencies\":{\"@vercel/build-utils\":\"2.12.3-canary.35\",\"@vercel/go\":\"1.2.4-canary.4\",\"@vercel/node\":\"1.12.2-canary.7\",\"@vercel/python\":\"2.1.2-canary.1\",\"@vercel/ruby\":\"1.2.10-canary.0\",\"update-notifier\":\"4.1.0\",\"vercel-plugin-middleware\":\"0.0.0-canary.11\",\"vercel-plugin-node\":\"1.12.2-canary.27\"},\"devDependencies\":{\"@next/env\":\"11.1.2\",\"@sentry/node\":\"5.5.0\",\"@sindresorhus/slugify\":\"0.11.0\",\"@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/inquirer\":\"7.3.1\",\"@types/jest\":\"27.0.1\",\"@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\",\"@vercel/frameworks\":\"0.5.1-canary.16\",\"@vercel/ncc\":\"0.24.0\",\"@vercel/nft\":\"0.17.0\",\"@zeit/fun\":\"0.11.2\",\"@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\",\"bytes\":\"3.0.0\",\"chalk\":\"4.1.0\",\"chance\":\"1.1.7\",\"chokidar\":\"3.3.1\",\"clipboardy\":\"2.1.0\",\"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\",\"glob\":\"7.1.2\",\"http-proxy\":\"1.18.1\",\"inquirer\":\"7.0.4\",\"is-docker\":\"2.2.1\",\"is-port-reachable\":\"3.0.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.1\",\"npm-package-arg\":\"6.1.0\",\"open\":\"8.2.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-eager\":\"2.0.2\",\"ts-node\":\"8.3.0\",\"typescript\":\"4.3.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\"},\"jest\":{\"preset\":\"ts-jest\",\"globals\":{\"ts-jest\":{\"diagnostics\":false,\"isolatedModules\":true}},\"verbose\":false,\"testEnvironment\":\"node\",\"testMatch\":[\"<rootDir>/test/**/*.test.ts\"]},\"gitHead\":\"2c3ddffaacb370eb4c0893815b3bc7417f92d432\"}");
271315
271324
 
271316
271325
  /***/ }),
271317
271326
 
@@ -271327,7 +271336,7 @@ module.exports = JSON.parse("{\"VISA\":\"Visa\",\"MASTERCARD\":\"MasterCard\",\"
271327
271336
  /***/ ((module) => {
271328
271337
 
271329
271338
  "use strict";
271330
- module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.2.3-canary.35\",\"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\":\"jest --verbose --runInBand --bail tests/create-deployment.test.ts tests/create-legacy-deployment.test.ts tests/paths.test.ts\",\"test-unit\":\"jest --verbose --runInBand --bail tests/unit.*test.*\"},\"engines\":{\"node\":\">= 12\"},\"devDependencies\":{\"@types/async-retry\":\"1.4.1\",\"@types/fs-extra\":\"7.0.0\",\"@types/jest\":\"27.0.1\",\"@types/ms\":\"0.7.30\",\"@types/node\":\"12.0.4\",\"@types/node-fetch\":\"2.5.4\",\"@types/recursive-readdir\":\"2.2.0\",\"typescript\":\"4.3.4\"},\"jest\":{\"preset\":\"ts-jest\",\"testEnvironment\":\"node\",\"verbose\":false,\"setupFilesAfterEnv\":[\"<rootDir>/tests/setup/index.ts\"]},\"dependencies\":{\"@vercel/build-utils\":\"2.12.3-canary.34\",\"@zeit/fetch\":\"5.2.0\",\"async-retry\":\"1.2.3\",\"async-sema\":\"3.0.0\",\"fs-extra\":\"8.0.1\",\"ignore\":\"4.0.6\",\"ms\":\"2.1.2\",\"node-fetch\":\"2.6.1\",\"querystring\":\"^0.2.0\",\"recursive-readdir\":\"2.2.2\",\"sleep-promise\":\"8.0.1\"}}");
271339
+ module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.2.3-canary.36\",\"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\":\"jest --verbose --runInBand --bail tests/create-deployment.test.ts tests/create-legacy-deployment.test.ts tests/paths.test.ts\",\"test-unit\":\"jest --verbose --runInBand --bail tests/unit.*test.*\"},\"engines\":{\"node\":\">= 12\"},\"devDependencies\":{\"@types/async-retry\":\"1.4.1\",\"@types/fs-extra\":\"7.0.0\",\"@types/jest\":\"27.0.1\",\"@types/ms\":\"0.7.30\",\"@types/node\":\"12.0.4\",\"@types/node-fetch\":\"2.5.4\",\"@types/recursive-readdir\":\"2.2.0\",\"typescript\":\"4.3.4\"},\"jest\":{\"preset\":\"ts-jest\",\"testEnvironment\":\"node\",\"verbose\":false,\"setupFilesAfterEnv\":[\"<rootDir>/tests/setup/index.ts\"]},\"dependencies\":{\"@vercel/build-utils\":\"2.12.3-canary.35\",\"@zeit/fetch\":\"5.2.0\",\"async-retry\":\"1.2.3\",\"async-sema\":\"3.0.0\",\"fs-extra\":\"8.0.1\",\"ignore\":\"4.0.6\",\"ms\":\"2.1.2\",\"node-fetch\":\"2.6.1\",\"querystring\":\"^0.2.0\",\"recursive-readdir\":\"2.2.2\",\"sleep-promise\":\"8.0.1\"},\"gitHead\":\"2c3ddffaacb370eb4c0893815b3bc7417f92d432\"}");
271331
271340
 
271332
271341
  /***/ }),
271333
271342
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vercel",
3
- "version": "23.1.3-canary.57",
3
+ "version": "23.1.3-canary.58",
4
4
  "preferGlobal": true,
5
5
  "license": "Apache-2.0",
6
6
  "description": "The command-line interface for Vercel",
@@ -43,14 +43,14 @@
43
43
  "node": ">= 12"
44
44
  },
45
45
  "dependencies": {
46
- "@vercel/build-utils": "2.12.3-canary.34",
46
+ "@vercel/build-utils": "2.12.3-canary.35",
47
47
  "@vercel/go": "1.2.4-canary.4",
48
48
  "@vercel/node": "1.12.2-canary.7",
49
49
  "@vercel/python": "2.1.2-canary.1",
50
- "@vercel/ruby": "1.2.8-canary.7",
50
+ "@vercel/ruby": "1.2.10-canary.0",
51
51
  "update-notifier": "4.1.0",
52
- "vercel-plugin-middleware": "0.0.0-canary.10",
53
- "vercel-plugin-node": "1.12.2-canary.26"
52
+ "vercel-plugin-middleware": "0.0.0-canary.11",
53
+ "vercel-plugin-node": "1.12.2-canary.27"
54
54
  },
55
55
  "devDependencies": {
56
56
  "@next/env": "11.1.2",
@@ -184,5 +184,5 @@
184
184
  "<rootDir>/test/**/*.test.ts"
185
185
  ]
186
186
  },
187
- "gitHead": "8d619bd7cccbcd0d25c9a75133a24eaedcf72474"
187
+ "gitHead": "2c3ddffaacb370eb4c0893815b3bc7417f92d432"
188
188
  }