vercel 23.1.3-canary.57 → 23.1.3-canary.60

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 +142 -137
  2. package/package.json +6 -6
package/dist/index.js CHANGED
@@ -217475,6 +217475,8 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
217475
217475
  await fs_extra_1.default.ensureDir(traceDir);
217476
217476
  let newPathsRuntime = new Set();
217477
217477
  let linkersRuntime = [];
217478
+ const entryDir = path_1.join('.output', 'server', 'pages');
217479
+ const entryRoot = path_1.join(workPath, entryDir);
217478
217480
  for (const entrypoint of Object.keys(entrypoints)) {
217479
217481
  const { output } = await buildRuntime({
217480
217482
  files: sourceFilesPreBuild,
@@ -217494,14 +217496,6 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
217494
217496
  // so we don't want to pollute this space unnecessarily. That means we have to clean
217495
217497
  // up files that were created by the build, which is done further below.
217496
217498
  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
217499
  // @ts-ignore This symbol is a private API
217506
217500
  const lambdaFiles = output[lambda_1.FILES_SYMBOL];
217507
217501
  // When deploying, the `files` that are passed to the Legacy Runtimes already
@@ -217513,20 +217507,33 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
217513
217507
  delete lambdaFiles[file];
217514
217508
  }
217515
217509
  }
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);
217510
+ let handlerFileBase = output.handler;
217511
+ let handlerFile = lambdaFiles[handlerFileBase];
217512
+ const { handler } = output;
217513
+ const handlerMethod = handler.split('.').pop();
217514
+ const handlerFileName = handler.replace(`.${handlerMethod}`, '');
217515
+ // For compiled languages, the launcher file for the Lambda generated
217516
+ // by the Legacy Runtime matches the `handler` defined for it, but for
217517
+ // interpreted languages, the `handler` consists of the launcher file name
217518
+ // without an extension, plus the name of the method inside of that file
217519
+ // that should be invoked, so we have to construct the file path explicitly.
217520
+ if (!handlerFile) {
217521
+ handlerFileBase = handlerFileName + ext;
217522
+ handlerFile = lambdaFiles[handlerFileBase];
217523
+ }
217524
+ if (!handlerFile || !handlerFile.fsPath) {
217525
+ 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\`.`);
217526
+ }
217527
+ const handlerExtName = path_1.extname(handlerFile.fsPath);
217528
+ const entryBase = path_1.basename(entrypoint).replace(ext, handlerExtName);
217529
+ const entryPath = path_1.join(path_1.dirname(entrypoint), entryBase);
217530
+ const entry = path_1.join(entryRoot, entryPath);
217524
217531
  // We never want to link here, only copy, because the launcher
217525
217532
  // file often has the same name for every entrypoint, which means that
217526
217533
  // every build for every entrypoint overwrites the launcher of the previous
217527
217534
  // one, so linking would end with a broken reference.
217528
217535
  await fs_extra_1.default.ensureDir(path_1.dirname(entry));
217529
- await fs_extra_1.default.copy(handlerFileOrigin, entry);
217536
+ await fs_extra_1.default.copy(handlerFile.fsPath, entry);
217530
217537
  const newFilesEntrypoint = [];
217531
217538
  const newDirectoriesEntrypoint = [];
217532
217539
  const preBuildFiles = Object.values(sourceFilesPreBuild).map(file => {
@@ -217577,7 +217584,7 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
217577
217584
  const linkers = Object.entries(lambdaFiles).map(async ([relPath, file]) => {
217578
217585
  const newPath = path_1.join(traceDir, relPath);
217579
217586
  // The handler was already moved into position above.
217580
- if (relPath === handlerFilePath) {
217587
+ if (relPath === handlerFileBase) {
217581
217588
  return;
217582
217589
  }
217583
217590
  tracedFiles.push({ absolutePath: newPath, relativePath: relPath });
@@ -217614,12 +217621,14 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
217614
217621
  }
217615
217622
  });
217616
217623
  linkersRuntime = linkersRuntime.concat(linkers);
217617
- const nft = path_1.join(workPath, '.output', 'server', 'pages', `${entrypoint}.nft.json`);
217624
+ const nft = `${entry}.nft.json`;
217618
217625
  const json = JSON.stringify({
217619
217626
  version: 1,
217620
217627
  files: tracedFiles.map(file => ({
217621
217628
  input: normalize_path_1.normalizePath(path_1.relative(path_1.dirname(nft), file.absolutePath)),
217622
- output: normalize_path_1.normalizePath(file.relativePath),
217629
+ // We'd like to place all the dependency files right next
217630
+ // to the final launcher file inside of the Lambda.
217631
+ output: normalize_path_1.normalizePath(path_1.join(entryDir, 'api', file.relativePath)),
217623
217632
  })),
217624
217633
  });
217625
217634
  await fs_extra_1.default.ensureDir(path_1.dirname(nft));
@@ -217632,11 +217641,14 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
217632
217641
  ...newFilesEntrypoint,
217633
217642
  ...newDirectoriesEntrypoint,
217634
217643
  ]);
217635
- const apiRouteHandler = `${path_1.parse(entry).name}.${handlerMethod}`;
217636
217644
  // Add an entry that will later on be added to the `functions-manifest.json`
217637
217645
  // file that is placed inside of the `.output` directory.
217638
- pages[entrypoint] = {
217639
- handler: apiRouteHandler,
217646
+ pages[normalize_path_1.normalizePath(entryPath)] = {
217647
+ // Because the underlying file used as a handler was placed
217648
+ // inside `.output/server/pages/api`, it no longer has the name it originally
217649
+ // had and is now named after the API Route that it's responsible for,
217650
+ // so we have to adjust the name of the Lambda handler accordingly.
217651
+ handler: handler.replace(handlerFileName, path_1.parse(entry).name),
217640
217652
  runtime: output.runtime,
217641
217653
  memory: output.memory,
217642
217654
  maxDuration: output.maxDuration,
@@ -217668,14 +217680,7 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
217668
217680
  }
217669
217681
  exports.convertRuntimeToPlugin = convertRuntimeToPlugin;
217670
217682
  async function linkOrCopy(existingPath, newPath) {
217671
- try {
217672
- await fs_extra_1.default.createLink(existingPath, newPath);
217673
- }
217674
- catch (err) {
217675
- if (err.code !== 'EEXIST') {
217676
- await fs_extra_1.default.copyFile(existingPath, newPath);
217677
- }
217678
- }
217683
+ await fs_extra_1.default.copyFile(existingPath, newPath);
217679
217684
  }
217680
217685
  async function readJson(filePath) {
217681
217686
  try {
@@ -217750,12 +217755,12 @@ exports.updateRoutesManifest = updateRoutesManifest;
217750
217755
  /***/ }),
217751
217756
 
217752
217757
  /***/ 1868:
217753
- /***/ ((__unused_webpack_module, exports, __nested_webpack_require_935813__) => {
217758
+ /***/ ((__unused_webpack_module, exports, __nested_webpack_require_936513__) => {
217754
217759
 
217755
217760
  "use strict";
217756
217761
 
217757
217762
  Object.defineProperty(exports, "__esModule", ({ value: true }));
217758
- const _1 = __nested_webpack_require_935813__(2855);
217763
+ const _1 = __nested_webpack_require_936513__(2855);
217759
217764
  function debug(message, ...additional) {
217760
217765
  if (_1.getPlatformEnv('BUILDER_DEBUG')) {
217761
217766
  console.log(message, ...additional);
@@ -217767,7 +217772,7 @@ exports.default = debug;
217767
217772
  /***/ }),
217768
217773
 
217769
217774
  /***/ 4246:
217770
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_936198__) {
217775
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_936898__) {
217771
217776
 
217772
217777
  "use strict";
217773
217778
 
@@ -217776,11 +217781,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
217776
217781
  };
217777
217782
  Object.defineProperty(exports, "__esModule", ({ value: true }));
217778
217783
  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);
217784
+ const minimatch_1 = __importDefault(__nested_webpack_require_936898__(9566));
217785
+ const semver_1 = __nested_webpack_require_936898__(2879);
217786
+ const path_1 = __nested_webpack_require_936898__(5622);
217787
+ const frameworks_1 = __importDefault(__nested_webpack_require_936898__(8438));
217788
+ const _1 = __nested_webpack_require_936898__(2855);
217784
217789
  const slugToFramework = new Map(frameworks_1.default.map(f => [f.slug, f]));
217785
217790
  // We need to sort the file paths by alphabet to make
217786
217791
  // sure the routes stay in the same order e.g. for deduping
@@ -218839,7 +218844,7 @@ function getSuggestion(topLevelProp, additionalProperty) {
218839
218844
  /***/ }),
218840
218845
 
218841
218846
  /***/ 2397:
218842
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_975582__) {
218847
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_976282__) {
218843
218848
 
218844
218849
  "use strict";
218845
218850
 
@@ -218847,8 +218852,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
218847
218852
  return (mod && mod.__esModule) ? mod : { "default": mod };
218848
218853
  };
218849
218854
  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));
218855
+ const assert_1 = __importDefault(__nested_webpack_require_976282__(2357));
218856
+ const into_stream_1 = __importDefault(__nested_webpack_require_976282__(6130));
218852
218857
  class FileBlob {
218853
218858
  constructor({ mode = 0o100644, contentType, data }) {
218854
218859
  assert_1.default(typeof mode === 'number');
@@ -218880,7 +218885,7 @@ exports.default = FileBlob;
218880
218885
  /***/ }),
218881
218886
 
218882
218887
  /***/ 9331:
218883
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_977034__) {
218888
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_977734__) {
218884
218889
 
218885
218890
  "use strict";
218886
218891
 
@@ -218888,11 +218893,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
218888
218893
  return (mod && mod.__esModule) ? mod : { "default": mod };
218889
218894
  };
218890
218895
  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));
218896
+ const assert_1 = __importDefault(__nested_webpack_require_977734__(2357));
218897
+ const fs_extra_1 = __importDefault(__nested_webpack_require_977734__(5392));
218898
+ const multistream_1 = __importDefault(__nested_webpack_require_977734__(8179));
218899
+ const path_1 = __importDefault(__nested_webpack_require_977734__(5622));
218900
+ const async_sema_1 = __importDefault(__nested_webpack_require_977734__(5758));
218896
218901
  const semaToPreventEMFILE = new async_sema_1.default(20);
218897
218902
  class FileFsRef {
218898
218903
  constructor({ mode = 0o100644, contentType, fsPath }) {
@@ -218958,7 +218963,7 @@ exports.default = FileFsRef;
218958
218963
  /***/ }),
218959
218964
 
218960
218965
  /***/ 5187:
218961
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_979838__) {
218966
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_980538__) {
218962
218967
 
218963
218968
  "use strict";
218964
218969
 
@@ -218966,11 +218971,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
218966
218971
  return (mod && mod.__esModule) ? mod : { "default": mod };
218967
218972
  };
218968
218973
  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));
218974
+ const assert_1 = __importDefault(__nested_webpack_require_980538__(2357));
218975
+ const node_fetch_1 = __importDefault(__nested_webpack_require_980538__(2197));
218976
+ const multistream_1 = __importDefault(__nested_webpack_require_980538__(8179));
218977
+ const async_retry_1 = __importDefault(__nested_webpack_require_980538__(3691));
218978
+ const async_sema_1 = __importDefault(__nested_webpack_require_980538__(5758));
218974
218979
  const semaToDownloadFromS3 = new async_sema_1.default(5);
218975
218980
  class BailableError extends Error {
218976
218981
  constructor(...args) {
@@ -219051,7 +219056,7 @@ exports.default = FileRef;
219051
219056
  /***/ }),
219052
219057
 
219053
219058
  /***/ 1611:
219054
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_983239__) {
219059
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_983939__) {
219055
219060
 
219056
219061
  "use strict";
219057
219062
 
@@ -219060,10 +219065,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219060
219065
  };
219061
219066
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219062
219067
  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);
219068
+ const path_1 = __importDefault(__nested_webpack_require_983939__(5622));
219069
+ const debug_1 = __importDefault(__nested_webpack_require_983939__(1868));
219070
+ const file_fs_ref_1 = __importDefault(__nested_webpack_require_983939__(9331));
219071
+ const fs_extra_1 = __nested_webpack_require_983939__(5392);
219067
219072
  const S_IFMT = 61440; /* 0170000 type of file */
219068
219073
  const S_IFLNK = 40960; /* 0120000 symbolic link */
219069
219074
  function isSymbolicLink(mode) {
@@ -219125,14 +219130,14 @@ exports.default = download;
219125
219130
  /***/ }),
219126
219131
 
219127
219132
  /***/ 3838:
219128
- /***/ ((__unused_webpack_module, exports, __nested_webpack_require_986064__) => {
219133
+ /***/ ((__unused_webpack_module, exports, __nested_webpack_require_986764__) => {
219129
219134
 
219130
219135
  "use strict";
219131
219136
 
219132
219137
  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);
219138
+ const path_1 = __nested_webpack_require_986764__(5622);
219139
+ const os_1 = __nested_webpack_require_986764__(2087);
219140
+ const fs_extra_1 = __nested_webpack_require_986764__(5392);
219136
219141
  async function getWritableDirectory() {
219137
219142
  const name = Math.floor(Math.random() * 0x7fffffff).toString(16);
219138
219143
  const directory = path_1.join(os_1.tmpdir(), name);
@@ -219145,7 +219150,7 @@ exports.default = getWritableDirectory;
219145
219150
  /***/ }),
219146
219151
 
219147
219152
  /***/ 4240:
219148
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_986644__) {
219153
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_987344__) {
219149
219154
 
219150
219155
  "use strict";
219151
219156
 
@@ -219153,13 +219158,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219153
219158
  return (mod && mod.__esModule) ? mod : { "default": mod };
219154
219159
  };
219155
219160
  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));
219161
+ const path_1 = __importDefault(__nested_webpack_require_987344__(5622));
219162
+ const assert_1 = __importDefault(__nested_webpack_require_987344__(2357));
219163
+ const glob_1 = __importDefault(__nested_webpack_require_987344__(1104));
219164
+ const util_1 = __nested_webpack_require_987344__(1669);
219165
+ const fs_extra_1 = __nested_webpack_require_987344__(5392);
219166
+ const normalize_path_1 = __nested_webpack_require_987344__(6261);
219167
+ const file_fs_ref_1 = __importDefault(__nested_webpack_require_987344__(9331));
219163
219168
  const vanillaGlob = util_1.promisify(glob_1.default);
219164
219169
  async function glob(pattern, opts, mountpoint) {
219165
219170
  let options;
@@ -219205,7 +219210,7 @@ exports.default = glob;
219205
219210
  /***/ }),
219206
219211
 
219207
219212
  /***/ 7903:
219208
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_988840__) {
219213
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_989540__) {
219209
219214
 
219210
219215
  "use strict";
219211
219216
 
@@ -219214,9 +219219,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219214
219219
  };
219215
219220
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219216
219221
  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));
219222
+ const semver_1 = __nested_webpack_require_989540__(2879);
219223
+ const errors_1 = __nested_webpack_require_989540__(3983);
219224
+ const debug_1 = __importDefault(__nested_webpack_require_989540__(1868));
219220
219225
  const allOptions = [
219221
219226
  { major: 14, range: '14.x', runtime: 'nodejs14.x' },
219222
219227
  { major: 12, range: '12.x', runtime: 'nodejs12.x' },
@@ -219310,7 +219315,7 @@ exports.normalizePath = normalizePath;
219310
219315
  /***/ }),
219311
219316
 
219312
219317
  /***/ 7792:
219313
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_992708__) {
219318
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_993408__) {
219314
219319
 
219315
219320
  "use strict";
219316
219321
 
@@ -219319,9 +219324,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219319
219324
  };
219320
219325
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219321
219326
  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);
219327
+ const js_yaml_1 = __importDefault(__nested_webpack_require_993408__(6540));
219328
+ const toml_1 = __importDefault(__nested_webpack_require_993408__(9434));
219329
+ const fs_extra_1 = __nested_webpack_require_993408__(5392);
219325
219330
  async function readFileOrNull(file) {
219326
219331
  try {
219327
219332
  const data = await fs_extra_1.readFile(file);
@@ -219376,7 +219381,7 @@ exports.default = rename;
219376
219381
  /***/ }),
219377
219382
 
219378
219383
  /***/ 1442:
219379
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_994501__) {
219384
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_995201__) {
219380
219385
 
219381
219386
  "use strict";
219382
219387
 
@@ -219385,14 +219390,14 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219385
219390
  };
219386
219391
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219387
219392
  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);
219393
+ const assert_1 = __importDefault(__nested_webpack_require_995201__(2357));
219394
+ const fs_extra_1 = __importDefault(__nested_webpack_require_995201__(5392));
219395
+ const path_1 = __importDefault(__nested_webpack_require_995201__(5622));
219396
+ const debug_1 = __importDefault(__nested_webpack_require_995201__(1868));
219397
+ const cross_spawn_1 = __importDefault(__nested_webpack_require_995201__(7618));
219398
+ const util_1 = __nested_webpack_require_995201__(1669);
219399
+ const errors_1 = __nested_webpack_require_995201__(3983);
219400
+ const node_version_1 = __nested_webpack_require_995201__(7903);
219396
219401
  function spawnAsync(command, args, opts = {}) {
219397
219402
  return new Promise((resolve, reject) => {
219398
219403
  const stderrLogs = [];
@@ -219703,7 +219708,7 @@ exports.installDependencies = util_1.deprecate(runNpmInstall, 'installDependenci
219703
219708
  /***/ }),
219704
219709
 
219705
219710
  /***/ 2560:
219706
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1008491__) {
219711
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1009191__) {
219707
219712
 
219708
219713
  "use strict";
219709
219714
 
@@ -219711,7 +219716,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219711
219716
  return (mod && mod.__esModule) ? mod : { "default": mod };
219712
219717
  };
219713
219718
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219714
- const end_of_stream_1 = __importDefault(__nested_webpack_require_1008491__(687));
219719
+ const end_of_stream_1 = __importDefault(__nested_webpack_require_1009191__(687));
219715
219720
  function streamToBuffer(stream) {
219716
219721
  return new Promise((resolve, reject) => {
219717
219722
  const buffers = [];
@@ -219740,7 +219745,7 @@ exports.default = streamToBuffer;
219740
219745
  /***/ }),
219741
219746
 
219742
219747
  /***/ 1148:
219743
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1009559__) {
219748
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1010259__) {
219744
219749
 
219745
219750
  "use strict";
219746
219751
 
@@ -219748,9 +219753,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219748
219753
  return (mod && mod.__esModule) ? mod : { "default": mod };
219749
219754
  };
219750
219755
  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));
219756
+ const path_1 = __importDefault(__nested_webpack_require_1010259__(5622));
219757
+ const fs_extra_1 = __importDefault(__nested_webpack_require_1010259__(5392));
219758
+ const ignore_1 = __importDefault(__nested_webpack_require_1010259__(3556));
219754
219759
  function isCodedError(error) {
219755
219760
  return (error !== null &&
219756
219761
  error !== undefined &&
@@ -219807,7 +219812,7 @@ exports.default = default_1;
219807
219812
  /***/ }),
219808
219813
 
219809
219814
  /***/ 2855:
219810
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1011941__) {
219815
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1012641__) {
219811
219816
 
219812
219817
  "use strict";
219813
219818
 
@@ -219838,29 +219843,29 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219838
219843
  };
219839
219844
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219840
219845
  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));
219846
+ const crypto_1 = __nested_webpack_require_1012641__(6417);
219847
+ const file_blob_1 = __importDefault(__nested_webpack_require_1012641__(2397));
219843
219848
  exports.FileBlob = file_blob_1.default;
219844
- const file_fs_ref_1 = __importDefault(__nested_webpack_require_1011941__(9331));
219849
+ const file_fs_ref_1 = __importDefault(__nested_webpack_require_1012641__(9331));
219845
219850
  exports.FileFsRef = file_fs_ref_1.default;
219846
- const file_ref_1 = __importDefault(__nested_webpack_require_1011941__(5187));
219851
+ const file_ref_1 = __importDefault(__nested_webpack_require_1012641__(5187));
219847
219852
  exports.FileRef = file_ref_1.default;
219848
- const lambda_1 = __nested_webpack_require_1011941__(6721);
219853
+ const lambda_1 = __nested_webpack_require_1012641__(6721);
219849
219854
  Object.defineProperty(exports, "Lambda", ({ enumerable: true, get: function () { return lambda_1.Lambda; } }));
219850
219855
  Object.defineProperty(exports, "createLambda", ({ enumerable: true, get: function () { return lambda_1.createLambda; } }));
219851
219856
  Object.defineProperty(exports, "getLambdaOptionsFromFunction", ({ enumerable: true, get: function () { return lambda_1.getLambdaOptionsFromFunction; } }));
219852
- const prerender_1 = __nested_webpack_require_1011941__(2850);
219857
+ const prerender_1 = __nested_webpack_require_1012641__(2850);
219853
219858
  Object.defineProperty(exports, "Prerender", ({ enumerable: true, get: function () { return prerender_1.Prerender; } }));
219854
- const download_1 = __importStar(__nested_webpack_require_1011941__(1611));
219859
+ const download_1 = __importStar(__nested_webpack_require_1012641__(1611));
219855
219860
  exports.download = download_1.default;
219856
219861
  Object.defineProperty(exports, "isSymbolicLink", ({ enumerable: true, get: function () { return download_1.isSymbolicLink; } }));
219857
- const get_writable_directory_1 = __importDefault(__nested_webpack_require_1011941__(3838));
219862
+ const get_writable_directory_1 = __importDefault(__nested_webpack_require_1012641__(3838));
219858
219863
  exports.getWriteableDirectory = get_writable_directory_1.default;
219859
- const glob_1 = __importDefault(__nested_webpack_require_1011941__(4240));
219864
+ const glob_1 = __importDefault(__nested_webpack_require_1012641__(4240));
219860
219865
  exports.glob = glob_1.default;
219861
- const rename_1 = __importDefault(__nested_webpack_require_1011941__(6718));
219866
+ const rename_1 = __importDefault(__nested_webpack_require_1012641__(6718));
219862
219867
  exports.rename = rename_1.default;
219863
- const run_user_scripts_1 = __nested_webpack_require_1011941__(1442);
219868
+ const run_user_scripts_1 = __nested_webpack_require_1012641__(1442);
219864
219869
  Object.defineProperty(exports, "execAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.execAsync; } }));
219865
219870
  Object.defineProperty(exports, "spawnAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.spawnAsync; } }));
219866
219871
  Object.defineProperty(exports, "execCommand", ({ enumerable: true, get: function () { return run_user_scripts_1.execCommand; } }));
@@ -219877,38 +219882,38 @@ Object.defineProperty(exports, "getNodeVersion", ({ enumerable: true, get: funct
219877
219882
  Object.defineProperty(exports, "getSpawnOptions", ({ enumerable: true, get: function () { return run_user_scripts_1.getSpawnOptions; } }));
219878
219883
  Object.defineProperty(exports, "getNodeBinPath", ({ enumerable: true, get: function () { return run_user_scripts_1.getNodeBinPath; } }));
219879
219884
  Object.defineProperty(exports, "scanParentDirs", ({ enumerable: true, get: function () { return run_user_scripts_1.scanParentDirs; } }));
219880
- const node_version_1 = __nested_webpack_require_1011941__(7903);
219885
+ const node_version_1 = __nested_webpack_require_1012641__(7903);
219881
219886
  Object.defineProperty(exports, "getLatestNodeVersion", ({ enumerable: true, get: function () { return node_version_1.getLatestNodeVersion; } }));
219882
219887
  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));
219888
+ const errors_1 = __nested_webpack_require_1012641__(3983);
219889
+ const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1012641__(2560));
219885
219890
  exports.streamToBuffer = stream_to_buffer_1.default;
219886
- const should_serve_1 = __importDefault(__nested_webpack_require_1011941__(2564));
219891
+ const should_serve_1 = __importDefault(__nested_webpack_require_1012641__(2564));
219887
219892
  exports.shouldServe = should_serve_1.default;
219888
- const debug_1 = __importDefault(__nested_webpack_require_1011941__(1868));
219893
+ const debug_1 = __importDefault(__nested_webpack_require_1012641__(1868));
219889
219894
  exports.debug = debug_1.default;
219890
- const get_ignore_filter_1 = __importDefault(__nested_webpack_require_1011941__(1148));
219895
+ const get_ignore_filter_1 = __importDefault(__nested_webpack_require_1012641__(1148));
219891
219896
  exports.getIgnoreFilter = get_ignore_filter_1.default;
219892
- var detect_builders_1 = __nested_webpack_require_1011941__(4246);
219897
+ var detect_builders_1 = __nested_webpack_require_1012641__(4246);
219893
219898
  Object.defineProperty(exports, "detectBuilders", ({ enumerable: true, get: function () { return detect_builders_1.detectBuilders; } }));
219894
219899
  Object.defineProperty(exports, "detectOutputDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectOutputDirectory; } }));
219895
219900
  Object.defineProperty(exports, "detectApiDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectApiDirectory; } }));
219896
219901
  Object.defineProperty(exports, "detectApiExtensions", ({ enumerable: true, get: function () { return detect_builders_1.detectApiExtensions; } }));
219897
- var detect_framework_1 = __nested_webpack_require_1011941__(5224);
219902
+ var detect_framework_1 = __nested_webpack_require_1012641__(5224);
219898
219903
  Object.defineProperty(exports, "detectFramework", ({ enumerable: true, get: function () { return detect_framework_1.detectFramework; } }));
219899
- var filesystem_1 = __nested_webpack_require_1011941__(461);
219904
+ var filesystem_1 = __nested_webpack_require_1012641__(461);
219900
219905
  Object.defineProperty(exports, "DetectorFilesystem", ({ enumerable: true, get: function () { return filesystem_1.DetectorFilesystem; } }));
219901
- var read_config_file_1 = __nested_webpack_require_1011941__(7792);
219906
+ var read_config_file_1 = __nested_webpack_require_1012641__(7792);
219902
219907
  Object.defineProperty(exports, "readConfigFile", ({ enumerable: true, get: function () { return read_config_file_1.readConfigFile; } }));
219903
- var normalize_path_1 = __nested_webpack_require_1011941__(6261);
219908
+ var normalize_path_1 = __nested_webpack_require_1012641__(6261);
219904
219909
  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);
219910
+ var convert_runtime_to_plugin_1 = __nested_webpack_require_1012641__(7276);
219906
219911
  Object.defineProperty(exports, "convertRuntimeToPlugin", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.convertRuntimeToPlugin; } }));
219907
219912
  Object.defineProperty(exports, "updateFunctionsManifest", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.updateFunctionsManifest; } }));
219908
219913
  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);
219914
+ __exportStar(__nested_webpack_require_1012641__(2416), exports);
219915
+ __exportStar(__nested_webpack_require_1012641__(5748), exports);
219916
+ __exportStar(__nested_webpack_require_1012641__(3983), exports);
219912
219917
  /**
219913
219918
  * Helper function to support both `@vercel` and legacy `@now` official Runtimes.
219914
219919
  */
@@ -219961,7 +219966,7 @@ exports.getInputHash = getInputHash;
219961
219966
  /***/ }),
219962
219967
 
219963
219968
  /***/ 6721:
219964
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1022919__) {
219969
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1023619__) {
219965
219970
 
219966
219971
  "use strict";
219967
219972
 
@@ -219970,13 +219975,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219970
219975
  };
219971
219976
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219972
219977
  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));
219978
+ const assert_1 = __importDefault(__nested_webpack_require_1023619__(2357));
219979
+ const async_sema_1 = __importDefault(__nested_webpack_require_1023619__(5758));
219980
+ const yazl_1 = __nested_webpack_require_1023619__(1223);
219981
+ const minimatch_1 = __importDefault(__nested_webpack_require_1023619__(9566));
219982
+ const fs_extra_1 = __nested_webpack_require_1023619__(5392);
219983
+ const download_1 = __nested_webpack_require_1023619__(1611);
219984
+ const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1023619__(2560));
219980
219985
  exports.FILES_SYMBOL = Symbol('files');
219981
219986
  class Lambda {
219982
219987
  constructor({ zipBuffer, handler, runtime, maxDuration, memory, environment, allowQuery, regions, }) {
@@ -220205,12 +220210,12 @@ exports.buildsSchema = {
220205
220210
  /***/ }),
220206
220211
 
220207
220212
  /***/ 2564:
220208
- /***/ ((__unused_webpack_module, exports, __nested_webpack_require_1031429__) => {
220213
+ /***/ ((__unused_webpack_module, exports, __nested_webpack_require_1032129__) => {
220209
220214
 
220210
220215
  "use strict";
220211
220216
 
220212
220217
  Object.defineProperty(exports, "__esModule", ({ value: true }));
220213
- const path_1 = __nested_webpack_require_1031429__(5622);
220218
+ const path_1 = __nested_webpack_require_1032129__(5622);
220214
220219
  function shouldServe({ entrypoint, files, requestPath, }) {
220215
220220
  requestPath = requestPath.replace(/\/$/, ''); // sanitize trailing '/'
220216
220221
  entrypoint = entrypoint.replace(/\\/, '/'); // windows compatibility
@@ -220447,7 +220452,7 @@ module.exports = __webpack_require__(78761);
220447
220452
  /******/ var __webpack_module_cache__ = {};
220448
220453
  /******/
220449
220454
  /******/ // The require function
220450
- /******/ function __nested_webpack_require_1131164__(moduleId) {
220455
+ /******/ function __nested_webpack_require_1131864__(moduleId) {
220451
220456
  /******/ // Check if module is in cache
220452
220457
  /******/ if(__webpack_module_cache__[moduleId]) {
220453
220458
  /******/ return __webpack_module_cache__[moduleId].exports;
@@ -220462,7 +220467,7 @@ module.exports = __webpack_require__(78761);
220462
220467
  /******/ // Execute the module function
220463
220468
  /******/ var threw = true;
220464
220469
  /******/ try {
220465
- /******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __nested_webpack_require_1131164__);
220470
+ /******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __nested_webpack_require_1131864__);
220466
220471
  /******/ threw = false;
220467
220472
  /******/ } finally {
220468
220473
  /******/ if(threw) delete __webpack_module_cache__[moduleId];
@@ -220475,11 +220480,11 @@ module.exports = __webpack_require__(78761);
220475
220480
  /************************************************************************/
220476
220481
  /******/ /* webpack/runtime/compat */
220477
220482
  /******/
220478
- /******/ __nested_webpack_require_1131164__.ab = __dirname + "/";/************************************************************************/
220483
+ /******/ __nested_webpack_require_1131864__.ab = __dirname + "/";/************************************************************************/
220479
220484
  /******/ // module exports must be returned from runtime so entry inlining is disabled
220480
220485
  /******/ // startup
220481
220486
  /******/ // Load entry module and return exports
220482
- /******/ return __nested_webpack_require_1131164__(2855);
220487
+ /******/ return __nested_webpack_require_1131864__(2855);
220483
220488
  /******/ })()
220484
220489
  ;
220485
220490
 
@@ -271311,7 +271316,7 @@ module.exports = JSON.parse("[\"ac\",\"com.ac\",\"edu.ac\",\"gov.ac\",\"net.ac\"
271311
271316
  /***/ ((module) => {
271312
271317
 
271313
271318
  "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\"}");
271319
+ module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"23.1.3-canary.60\",\"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.37\",\"@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.13\",\"vercel-plugin-node\":\"1.12.2-canary.29\"},\"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\":\"fe43c9c4b2e8fdefbc4b35778e4593a55feddac0\"}");
271315
271320
 
271316
271321
  /***/ }),
271317
271322
 
@@ -271327,7 +271332,7 @@ module.exports = JSON.parse("{\"VISA\":\"Visa\",\"MASTERCARD\":\"MasterCard\",\"
271327
271332
  /***/ ((module) => {
271328
271333
 
271329
271334
  "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\"}}");
271335
+ module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.2.3-canary.38\",\"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.37\",\"@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\":\"fe43c9c4b2e8fdefbc4b35778e4593a55feddac0\"}");
271331
271336
 
271332
271337
  /***/ }),
271333
271338
 
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.60",
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.37",
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.13",
53
+ "vercel-plugin-node": "1.12.2-canary.29"
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": "fe43c9c4b2e8fdefbc4b35778e4593a55feddac0"
188
188
  }