vercel 23.1.3-canary.63 → 23.1.3-canary.64

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 +117 -186
  2. package/package.json +5 -5
package/dist/index.js CHANGED
@@ -217409,7 +217409,6 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
217409
217409
  // need to be able to easily inspect the output.
217410
217410
  `api-routes-${pluginName}`);
217411
217411
  await fs_extra_1.default.ensureDir(traceDir);
217412
- let newPathsRuntime = new Set();
217413
217412
  const entryRoot = path_1.join(outputPath, 'server', 'pages');
217414
217413
  for (const entrypoint of Object.keys(entrypoints)) {
217415
217414
  const { output } = await buildRuntime({
@@ -217424,13 +217423,6 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
217424
217423
  skipDownload: true,
217425
217424
  },
217426
217425
  });
217427
- // Legacy Runtimes tend to pollute the `workPath` with compiled results,
217428
- // because the `workPath` used to be a place that was a place where they could
217429
- // just put anything, but nowadays it's the working directory of the `vercel build`
217430
- // command, which is the place where the developer keeps their source files,
217431
- // so we don't want to pollute this space unnecessarily. That means we have to clean
217432
- // up files that were created by the build, which is done further below.
217433
- const sourceFilesAfterBuild = await getSourceFiles(workPath, ignoreFilter);
217434
217426
  // @ts-ignore This symbol is a private API
217435
217427
  const lambdaFiles = output[lambda_1.FILES_SYMBOL];
217436
217428
  // When deploying, the `files` that are passed to the Legacy Runtimes already
@@ -217465,12 +217457,9 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
217465
217457
  const entryBase = path_1.basename(entrypoint).replace(ext, handlerExtName);
217466
217458
  const entryPath = path_1.join(path_1.dirname(entrypoint), entryBase);
217467
217459
  const entry = path_1.join(entryRoot, entryPath);
217468
- // We never want to link here, only copy, because the launcher
217469
- // file often has the same name for every entrypoint, which means that
217470
- // every build for every entrypoint overwrites the launcher of the previous
217471
- // one, so linking would end with a broken reference.
217460
+ // Create the parent directory of the API Route that will be created
217461
+ // for the current entrypoint inside of `.output/server/pages/api`.
217472
217462
  await fs_extra_1.default.ensureDir(path_1.dirname(entry));
217473
- await fs_extra_1.default.copy(handlerFile.fsPath, entry);
217474
217463
  // For compiled languages, the launcher file will be binary and therefore
217475
217464
  // won't try to import a user-provided request handler (instead, it will
217476
217465
  // contain it). But for interpreted languages, the launcher might try to
@@ -217518,52 +217507,15 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
217518
217507
  else {
217519
217508
  await fs_extra_1.default.copy(handlerFile.fsPath, entry);
217520
217509
  }
217521
- const newFilesEntrypoint = [];
217522
- const newDirectoriesEntrypoint = [];
217523
- const preBuildFiles = Object.values(sourceFilesPreBuild).map(file => {
217524
- return file.fsPath;
217525
- });
217526
- // Generate a list of directories and files that weren't present
217527
- // before the entrypoint was processed by the Legacy Runtime, so
217528
- // that we can perform a cleanup later. We need to divide into files
217529
- // and directories because only cleaning up files might leave empty
217530
- // directories, and listing directories separately also speeds up the
217531
- // build because we can just delete them, which wipes all of their nested
217532
- // paths, instead of iterating through all files that should be deleted.
217533
- for (const file in sourceFilesAfterBuild) {
217534
- if (!sourceFilesPreBuild[file]) {
217535
- const path = sourceFilesAfterBuild[file].fsPath;
217536
- const dirPath = path_1.dirname(path);
217537
- // If none of the files that were present before the entrypoint
217538
- // was processed are contained within the directory we're looking
217539
- // at right now, then we know it's a newly added directory
217540
- // and it can therefore be removed later on.
217541
- const isNewDir = !preBuildFiles.some(filePath => {
217542
- return path_1.dirname(filePath).startsWith(dirPath);
217543
- });
217544
- // Check out the list of tracked directories that were
217545
- // newly added and see if one of them contains the path
217546
- // we're looking at.
217547
- const hasParentDir = newDirectoriesEntrypoint.some(dir => {
217548
- return path.startsWith(dir);
217549
- });
217550
- // If we have already tracked a directory that was newly
217551
- // added that sits above the file or directory that we're
217552
- // looking at, we don't need to add more entries to the list
217553
- // because when the parent will get removed in the future,
217554
- // all of its children (and therefore the path we're looking at)
217555
- // will automatically get removed anyways.
217556
- if (hasParentDir) {
217557
- continue;
217558
- }
217559
- if (isNewDir) {
217560
- newDirectoriesEntrypoint.push(dirPath);
217561
- }
217562
- else {
217563
- newFilesEntrypoint.push(path);
217564
- }
217565
- }
217566
- }
217510
+ // Legacy Runtimes based on interpreted languages will create a new launcher file
217511
+ // for every entrypoint, but they will create each one inside `workPath`, which means that
217512
+ // the launcher for one entrypoint will overwrite the launcher provided for the previous
217513
+ // entrypoint. That's why, above, we copy the file contents into the new destination (and
217514
+ // optionally transform them along the way), instead of linking. We then also want to remove
217515
+ // the copy origin right here, so that the `workPath` doesn't contain a useless launcher file
217516
+ // once the build has finished running.
217517
+ await fs_extra_1.default.remove(handlerFile.fsPath);
217518
+ _1.debug(`Removed temporary file "${handlerFile.fsPath}"`);
217567
217519
  const nft = `${entry}.nft.json`;
217568
217520
  const json = JSON.stringify({
217569
217521
  version: 2,
@@ -217581,16 +217533,7 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
217581
217533
  })
217582
217534
  .filter(Boolean),
217583
217535
  });
217584
- await fs_extra_1.default.ensureDir(path_1.dirname(nft));
217585
217536
  await fs_extra_1.default.writeFile(nft, json);
217586
- // Extend the list of directories and files that were created by the
217587
- // Legacy Runtime with the list of directories and files that were
217588
- // created for the entrypoint that was just processed above.
217589
- newPathsRuntime = new Set([
217590
- ...newPathsRuntime,
217591
- ...newFilesEntrypoint,
217592
- ...newDirectoriesEntrypoint,
217593
- ]);
217594
217537
  // Add an entry that will later on be added to the `functions-manifest.json`
217595
217538
  // file that is placed inside of the `.output` directory.
217596
217539
  pages[normalize_path_1.normalizePath(entryPath)] = {
@@ -217606,18 +217549,6 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
217606
217549
  allowQuery: output.allowQuery,
217607
217550
  };
217608
217551
  }
217609
- // A list of all the files that were created by the Legacy Runtime,
217610
- // which we'd like to remove from the File System.
217611
- const toRemove = Array.from(newPathsRuntime).map(path => {
217612
- _1.debug(`Removing ${path} as part of cleanup`);
217613
- return fs_extra_1.default.remove(path);
217614
- });
217615
- // Once all the entrypoints have been processed, we'd like to
217616
- // remove all the files from `workPath` that originally weren't present
217617
- // before the Legacy Runtime began running, because the `workPath`
217618
- // is nowadays the directory in which the user keeps their source code, since
217619
- // we're no longer running separate parallel builds for every Legacy Runtime.
217620
- await Promise.all(toRemove);
217621
217552
  // Add any Serverless Functions that were exposed by the Legacy Runtime
217622
217553
  // to the `functions-manifest.json` file provided in `.output`.
217623
217554
  await updateFunctionsManifest({ workPath, pages });
@@ -217697,12 +217628,12 @@ exports.updateRoutesManifest = updateRoutesManifest;
217697
217628
  /***/ }),
217698
217629
 
217699
217630
  /***/ 1868:
217700
- /***/ ((__unused_webpack_module, exports, __nested_webpack_require_933756__) => {
217631
+ /***/ ((__unused_webpack_module, exports, __nested_webpack_require_929744__) => {
217701
217632
 
217702
217633
  "use strict";
217703
217634
 
217704
217635
  Object.defineProperty(exports, "__esModule", ({ value: true }));
217705
- const _1 = __nested_webpack_require_933756__(2855);
217636
+ const _1 = __nested_webpack_require_929744__(2855);
217706
217637
  function debug(message, ...additional) {
217707
217638
  if (_1.getPlatformEnv('BUILDER_DEBUG')) {
217708
217639
  console.log(message, ...additional);
@@ -217714,7 +217645,7 @@ exports.default = debug;
217714
217645
  /***/ }),
217715
217646
 
217716
217647
  /***/ 4246:
217717
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_934141__) {
217648
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_930129__) {
217718
217649
 
217719
217650
  "use strict";
217720
217651
 
@@ -217723,11 +217654,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
217723
217654
  };
217724
217655
  Object.defineProperty(exports, "__esModule", ({ value: true }));
217725
217656
  exports.detectBuilders = exports.detectOutputDirectory = exports.detectApiDirectory = exports.detectApiExtensions = exports.sortFiles = void 0;
217726
- const minimatch_1 = __importDefault(__nested_webpack_require_934141__(9566));
217727
- const semver_1 = __nested_webpack_require_934141__(2879);
217728
- const path_1 = __nested_webpack_require_934141__(5622);
217729
- const frameworks_1 = __importDefault(__nested_webpack_require_934141__(8438));
217730
- const _1 = __nested_webpack_require_934141__(2855);
217657
+ const minimatch_1 = __importDefault(__nested_webpack_require_930129__(9566));
217658
+ const semver_1 = __nested_webpack_require_930129__(2879);
217659
+ const path_1 = __nested_webpack_require_930129__(5622);
217660
+ const frameworks_1 = __importDefault(__nested_webpack_require_930129__(8438));
217661
+ const _1 = __nested_webpack_require_930129__(2855);
217731
217662
  const slugToFramework = new Map(frameworks_1.default.map(f => [f.slug, f]));
217732
217663
  // We need to sort the file paths by alphabet to make
217733
217664
  // sure the routes stay in the same order e.g. for deduping
@@ -218786,7 +218717,7 @@ function getSuggestion(topLevelProp, additionalProperty) {
218786
218717
  /***/ }),
218787
218718
 
218788
218719
  /***/ 2397:
218789
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_973525__) {
218720
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_969513__) {
218790
218721
 
218791
218722
  "use strict";
218792
218723
 
@@ -218794,8 +218725,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
218794
218725
  return (mod && mod.__esModule) ? mod : { "default": mod };
218795
218726
  };
218796
218727
  Object.defineProperty(exports, "__esModule", ({ value: true }));
218797
- const assert_1 = __importDefault(__nested_webpack_require_973525__(2357));
218798
- const into_stream_1 = __importDefault(__nested_webpack_require_973525__(6130));
218728
+ const assert_1 = __importDefault(__nested_webpack_require_969513__(2357));
218729
+ const into_stream_1 = __importDefault(__nested_webpack_require_969513__(6130));
218799
218730
  class FileBlob {
218800
218731
  constructor({ mode = 0o100644, contentType, data }) {
218801
218732
  assert_1.default(typeof mode === 'number');
@@ -218827,7 +218758,7 @@ exports.default = FileBlob;
218827
218758
  /***/ }),
218828
218759
 
218829
218760
  /***/ 9331:
218830
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_974977__) {
218761
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_970965__) {
218831
218762
 
218832
218763
  "use strict";
218833
218764
 
@@ -218835,11 +218766,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
218835
218766
  return (mod && mod.__esModule) ? mod : { "default": mod };
218836
218767
  };
218837
218768
  Object.defineProperty(exports, "__esModule", ({ value: true }));
218838
- const assert_1 = __importDefault(__nested_webpack_require_974977__(2357));
218839
- const fs_extra_1 = __importDefault(__nested_webpack_require_974977__(5392));
218840
- const multistream_1 = __importDefault(__nested_webpack_require_974977__(8179));
218841
- const path_1 = __importDefault(__nested_webpack_require_974977__(5622));
218842
- const async_sema_1 = __importDefault(__nested_webpack_require_974977__(5758));
218769
+ const assert_1 = __importDefault(__nested_webpack_require_970965__(2357));
218770
+ const fs_extra_1 = __importDefault(__nested_webpack_require_970965__(5392));
218771
+ const multistream_1 = __importDefault(__nested_webpack_require_970965__(8179));
218772
+ const path_1 = __importDefault(__nested_webpack_require_970965__(5622));
218773
+ const async_sema_1 = __importDefault(__nested_webpack_require_970965__(5758));
218843
218774
  const semaToPreventEMFILE = new async_sema_1.default(20);
218844
218775
  class FileFsRef {
218845
218776
  constructor({ mode = 0o100644, contentType, fsPath }) {
@@ -218905,7 +218836,7 @@ exports.default = FileFsRef;
218905
218836
  /***/ }),
218906
218837
 
218907
218838
  /***/ 5187:
218908
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_977781__) {
218839
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_973769__) {
218909
218840
 
218910
218841
  "use strict";
218911
218842
 
@@ -218913,11 +218844,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
218913
218844
  return (mod && mod.__esModule) ? mod : { "default": mod };
218914
218845
  };
218915
218846
  Object.defineProperty(exports, "__esModule", ({ value: true }));
218916
- const assert_1 = __importDefault(__nested_webpack_require_977781__(2357));
218917
- const node_fetch_1 = __importDefault(__nested_webpack_require_977781__(2197));
218918
- const multistream_1 = __importDefault(__nested_webpack_require_977781__(8179));
218919
- const async_retry_1 = __importDefault(__nested_webpack_require_977781__(3691));
218920
- const async_sema_1 = __importDefault(__nested_webpack_require_977781__(5758));
218847
+ const assert_1 = __importDefault(__nested_webpack_require_973769__(2357));
218848
+ const node_fetch_1 = __importDefault(__nested_webpack_require_973769__(2197));
218849
+ const multistream_1 = __importDefault(__nested_webpack_require_973769__(8179));
218850
+ const async_retry_1 = __importDefault(__nested_webpack_require_973769__(3691));
218851
+ const async_sema_1 = __importDefault(__nested_webpack_require_973769__(5758));
218921
218852
  const semaToDownloadFromS3 = new async_sema_1.default(5);
218922
218853
  class BailableError extends Error {
218923
218854
  constructor(...args) {
@@ -218998,7 +218929,7 @@ exports.default = FileRef;
218998
218929
  /***/ }),
218999
218930
 
219000
218931
  /***/ 1611:
219001
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_981182__) {
218932
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_977170__) {
219002
218933
 
219003
218934
  "use strict";
219004
218935
 
@@ -219007,10 +218938,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219007
218938
  };
219008
218939
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219009
218940
  exports.isSymbolicLink = void 0;
219010
- const path_1 = __importDefault(__nested_webpack_require_981182__(5622));
219011
- const debug_1 = __importDefault(__nested_webpack_require_981182__(1868));
219012
- const file_fs_ref_1 = __importDefault(__nested_webpack_require_981182__(9331));
219013
- const fs_extra_1 = __nested_webpack_require_981182__(5392);
218941
+ const path_1 = __importDefault(__nested_webpack_require_977170__(5622));
218942
+ const debug_1 = __importDefault(__nested_webpack_require_977170__(1868));
218943
+ const file_fs_ref_1 = __importDefault(__nested_webpack_require_977170__(9331));
218944
+ const fs_extra_1 = __nested_webpack_require_977170__(5392);
219014
218945
  const S_IFMT = 61440; /* 0170000 type of file */
219015
218946
  const S_IFLNK = 40960; /* 0120000 symbolic link */
219016
218947
  function isSymbolicLink(mode) {
@@ -219072,14 +219003,14 @@ exports.default = download;
219072
219003
  /***/ }),
219073
219004
 
219074
219005
  /***/ 3838:
219075
- /***/ ((__unused_webpack_module, exports, __nested_webpack_require_984007__) => {
219006
+ /***/ ((__unused_webpack_module, exports, __nested_webpack_require_979995__) => {
219076
219007
 
219077
219008
  "use strict";
219078
219009
 
219079
219010
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219080
- const path_1 = __nested_webpack_require_984007__(5622);
219081
- const os_1 = __nested_webpack_require_984007__(2087);
219082
- const fs_extra_1 = __nested_webpack_require_984007__(5392);
219011
+ const path_1 = __nested_webpack_require_979995__(5622);
219012
+ const os_1 = __nested_webpack_require_979995__(2087);
219013
+ const fs_extra_1 = __nested_webpack_require_979995__(5392);
219083
219014
  async function getWritableDirectory() {
219084
219015
  const name = Math.floor(Math.random() * 0x7fffffff).toString(16);
219085
219016
  const directory = path_1.join(os_1.tmpdir(), name);
@@ -219092,7 +219023,7 @@ exports.default = getWritableDirectory;
219092
219023
  /***/ }),
219093
219024
 
219094
219025
  /***/ 4240:
219095
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_984587__) {
219026
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_980575__) {
219096
219027
 
219097
219028
  "use strict";
219098
219029
 
@@ -219100,13 +219031,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219100
219031
  return (mod && mod.__esModule) ? mod : { "default": mod };
219101
219032
  };
219102
219033
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219103
- const path_1 = __importDefault(__nested_webpack_require_984587__(5622));
219104
- const assert_1 = __importDefault(__nested_webpack_require_984587__(2357));
219105
- const glob_1 = __importDefault(__nested_webpack_require_984587__(1104));
219106
- const util_1 = __nested_webpack_require_984587__(1669);
219107
- const fs_extra_1 = __nested_webpack_require_984587__(5392);
219108
- const normalize_path_1 = __nested_webpack_require_984587__(6261);
219109
- const file_fs_ref_1 = __importDefault(__nested_webpack_require_984587__(9331));
219034
+ const path_1 = __importDefault(__nested_webpack_require_980575__(5622));
219035
+ const assert_1 = __importDefault(__nested_webpack_require_980575__(2357));
219036
+ const glob_1 = __importDefault(__nested_webpack_require_980575__(1104));
219037
+ const util_1 = __nested_webpack_require_980575__(1669);
219038
+ const fs_extra_1 = __nested_webpack_require_980575__(5392);
219039
+ const normalize_path_1 = __nested_webpack_require_980575__(6261);
219040
+ const file_fs_ref_1 = __importDefault(__nested_webpack_require_980575__(9331));
219110
219041
  const vanillaGlob = util_1.promisify(glob_1.default);
219111
219042
  async function glob(pattern, opts, mountpoint) {
219112
219043
  let options;
@@ -219152,7 +219083,7 @@ exports.default = glob;
219152
219083
  /***/ }),
219153
219084
 
219154
219085
  /***/ 7903:
219155
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_986783__) {
219086
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_982771__) {
219156
219087
 
219157
219088
  "use strict";
219158
219089
 
@@ -219161,9 +219092,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219161
219092
  };
219162
219093
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219163
219094
  exports.getSupportedNodeVersion = exports.getDiscontinuedNodeVersions = exports.getLatestNodeVersion = void 0;
219164
- const semver_1 = __nested_webpack_require_986783__(2879);
219165
- const errors_1 = __nested_webpack_require_986783__(3983);
219166
- const debug_1 = __importDefault(__nested_webpack_require_986783__(1868));
219095
+ const semver_1 = __nested_webpack_require_982771__(2879);
219096
+ const errors_1 = __nested_webpack_require_982771__(3983);
219097
+ const debug_1 = __importDefault(__nested_webpack_require_982771__(1868));
219167
219098
  const allOptions = [
219168
219099
  { major: 14, range: '14.x', runtime: 'nodejs14.x' },
219169
219100
  { major: 12, range: '12.x', runtime: 'nodejs12.x' },
@@ -219257,7 +219188,7 @@ exports.normalizePath = normalizePath;
219257
219188
  /***/ }),
219258
219189
 
219259
219190
  /***/ 7792:
219260
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_990651__) {
219191
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_986639__) {
219261
219192
 
219262
219193
  "use strict";
219263
219194
 
@@ -219266,9 +219197,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219266
219197
  };
219267
219198
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219268
219199
  exports.readConfigFile = void 0;
219269
- const js_yaml_1 = __importDefault(__nested_webpack_require_990651__(6540));
219270
- const toml_1 = __importDefault(__nested_webpack_require_990651__(9434));
219271
- const fs_extra_1 = __nested_webpack_require_990651__(5392);
219200
+ const js_yaml_1 = __importDefault(__nested_webpack_require_986639__(6540));
219201
+ const toml_1 = __importDefault(__nested_webpack_require_986639__(9434));
219202
+ const fs_extra_1 = __nested_webpack_require_986639__(5392);
219272
219203
  async function readFileOrNull(file) {
219273
219204
  try {
219274
219205
  const data = await fs_extra_1.readFile(file);
@@ -219323,7 +219254,7 @@ exports.default = rename;
219323
219254
  /***/ }),
219324
219255
 
219325
219256
  /***/ 1442:
219326
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_992444__) {
219257
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_988432__) {
219327
219258
 
219328
219259
  "use strict";
219329
219260
 
@@ -219332,14 +219263,14 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219332
219263
  };
219333
219264
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219334
219265
  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;
219335
- const assert_1 = __importDefault(__nested_webpack_require_992444__(2357));
219336
- const fs_extra_1 = __importDefault(__nested_webpack_require_992444__(5392));
219337
- const path_1 = __importDefault(__nested_webpack_require_992444__(5622));
219338
- const debug_1 = __importDefault(__nested_webpack_require_992444__(1868));
219339
- const cross_spawn_1 = __importDefault(__nested_webpack_require_992444__(7618));
219340
- const util_1 = __nested_webpack_require_992444__(1669);
219341
- const errors_1 = __nested_webpack_require_992444__(3983);
219342
- const node_version_1 = __nested_webpack_require_992444__(7903);
219266
+ const assert_1 = __importDefault(__nested_webpack_require_988432__(2357));
219267
+ const fs_extra_1 = __importDefault(__nested_webpack_require_988432__(5392));
219268
+ const path_1 = __importDefault(__nested_webpack_require_988432__(5622));
219269
+ const debug_1 = __importDefault(__nested_webpack_require_988432__(1868));
219270
+ const cross_spawn_1 = __importDefault(__nested_webpack_require_988432__(7618));
219271
+ const util_1 = __nested_webpack_require_988432__(1669);
219272
+ const errors_1 = __nested_webpack_require_988432__(3983);
219273
+ const node_version_1 = __nested_webpack_require_988432__(7903);
219343
219274
  function spawnAsync(command, args, opts = {}) {
219344
219275
  return new Promise((resolve, reject) => {
219345
219276
  const stderrLogs = [];
@@ -219650,7 +219581,7 @@ exports.installDependencies = util_1.deprecate(runNpmInstall, 'installDependenci
219650
219581
  /***/ }),
219651
219582
 
219652
219583
  /***/ 2560:
219653
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1006434__) {
219584
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1002422__) {
219654
219585
 
219655
219586
  "use strict";
219656
219587
 
@@ -219658,7 +219589,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219658
219589
  return (mod && mod.__esModule) ? mod : { "default": mod };
219659
219590
  };
219660
219591
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219661
- const end_of_stream_1 = __importDefault(__nested_webpack_require_1006434__(687));
219592
+ const end_of_stream_1 = __importDefault(__nested_webpack_require_1002422__(687));
219662
219593
  function streamToBuffer(stream) {
219663
219594
  return new Promise((resolve, reject) => {
219664
219595
  const buffers = [];
@@ -219687,7 +219618,7 @@ exports.default = streamToBuffer;
219687
219618
  /***/ }),
219688
219619
 
219689
219620
  /***/ 1148:
219690
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1007502__) {
219621
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1003490__) {
219691
219622
 
219692
219623
  "use strict";
219693
219624
 
@@ -219695,9 +219626,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219695
219626
  return (mod && mod.__esModule) ? mod : { "default": mod };
219696
219627
  };
219697
219628
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219698
- const path_1 = __importDefault(__nested_webpack_require_1007502__(5622));
219699
- const fs_extra_1 = __importDefault(__nested_webpack_require_1007502__(5392));
219700
- const ignore_1 = __importDefault(__nested_webpack_require_1007502__(3556));
219629
+ const path_1 = __importDefault(__nested_webpack_require_1003490__(5622));
219630
+ const fs_extra_1 = __importDefault(__nested_webpack_require_1003490__(5392));
219631
+ const ignore_1 = __importDefault(__nested_webpack_require_1003490__(3556));
219701
219632
  function isCodedError(error) {
219702
219633
  return (error !== null &&
219703
219634
  error !== undefined &&
@@ -219754,7 +219685,7 @@ exports.default = default_1;
219754
219685
  /***/ }),
219755
219686
 
219756
219687
  /***/ 2855:
219757
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1009884__) {
219688
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1005872__) {
219758
219689
 
219759
219690
  "use strict";
219760
219691
 
@@ -219785,29 +219716,29 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219785
219716
  };
219786
219717
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219787
219718
  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;
219788
- const crypto_1 = __nested_webpack_require_1009884__(6417);
219789
- const file_blob_1 = __importDefault(__nested_webpack_require_1009884__(2397));
219719
+ const crypto_1 = __nested_webpack_require_1005872__(6417);
219720
+ const file_blob_1 = __importDefault(__nested_webpack_require_1005872__(2397));
219790
219721
  exports.FileBlob = file_blob_1.default;
219791
- const file_fs_ref_1 = __importDefault(__nested_webpack_require_1009884__(9331));
219722
+ const file_fs_ref_1 = __importDefault(__nested_webpack_require_1005872__(9331));
219792
219723
  exports.FileFsRef = file_fs_ref_1.default;
219793
- const file_ref_1 = __importDefault(__nested_webpack_require_1009884__(5187));
219724
+ const file_ref_1 = __importDefault(__nested_webpack_require_1005872__(5187));
219794
219725
  exports.FileRef = file_ref_1.default;
219795
- const lambda_1 = __nested_webpack_require_1009884__(6721);
219726
+ const lambda_1 = __nested_webpack_require_1005872__(6721);
219796
219727
  Object.defineProperty(exports, "Lambda", ({ enumerable: true, get: function () { return lambda_1.Lambda; } }));
219797
219728
  Object.defineProperty(exports, "createLambda", ({ enumerable: true, get: function () { return lambda_1.createLambda; } }));
219798
219729
  Object.defineProperty(exports, "getLambdaOptionsFromFunction", ({ enumerable: true, get: function () { return lambda_1.getLambdaOptionsFromFunction; } }));
219799
- const prerender_1 = __nested_webpack_require_1009884__(2850);
219730
+ const prerender_1 = __nested_webpack_require_1005872__(2850);
219800
219731
  Object.defineProperty(exports, "Prerender", ({ enumerable: true, get: function () { return prerender_1.Prerender; } }));
219801
- const download_1 = __importStar(__nested_webpack_require_1009884__(1611));
219732
+ const download_1 = __importStar(__nested_webpack_require_1005872__(1611));
219802
219733
  exports.download = download_1.default;
219803
219734
  Object.defineProperty(exports, "isSymbolicLink", ({ enumerable: true, get: function () { return download_1.isSymbolicLink; } }));
219804
- const get_writable_directory_1 = __importDefault(__nested_webpack_require_1009884__(3838));
219735
+ const get_writable_directory_1 = __importDefault(__nested_webpack_require_1005872__(3838));
219805
219736
  exports.getWriteableDirectory = get_writable_directory_1.default;
219806
- const glob_1 = __importDefault(__nested_webpack_require_1009884__(4240));
219737
+ const glob_1 = __importDefault(__nested_webpack_require_1005872__(4240));
219807
219738
  exports.glob = glob_1.default;
219808
- const rename_1 = __importDefault(__nested_webpack_require_1009884__(6718));
219739
+ const rename_1 = __importDefault(__nested_webpack_require_1005872__(6718));
219809
219740
  exports.rename = rename_1.default;
219810
- const run_user_scripts_1 = __nested_webpack_require_1009884__(1442);
219741
+ const run_user_scripts_1 = __nested_webpack_require_1005872__(1442);
219811
219742
  Object.defineProperty(exports, "execAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.execAsync; } }));
219812
219743
  Object.defineProperty(exports, "spawnAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.spawnAsync; } }));
219813
219744
  Object.defineProperty(exports, "execCommand", ({ enumerable: true, get: function () { return run_user_scripts_1.execCommand; } }));
@@ -219824,38 +219755,38 @@ Object.defineProperty(exports, "getNodeVersion", ({ enumerable: true, get: funct
219824
219755
  Object.defineProperty(exports, "getSpawnOptions", ({ enumerable: true, get: function () { return run_user_scripts_1.getSpawnOptions; } }));
219825
219756
  Object.defineProperty(exports, "getNodeBinPath", ({ enumerable: true, get: function () { return run_user_scripts_1.getNodeBinPath; } }));
219826
219757
  Object.defineProperty(exports, "scanParentDirs", ({ enumerable: true, get: function () { return run_user_scripts_1.scanParentDirs; } }));
219827
- const node_version_1 = __nested_webpack_require_1009884__(7903);
219758
+ const node_version_1 = __nested_webpack_require_1005872__(7903);
219828
219759
  Object.defineProperty(exports, "getLatestNodeVersion", ({ enumerable: true, get: function () { return node_version_1.getLatestNodeVersion; } }));
219829
219760
  Object.defineProperty(exports, "getDiscontinuedNodeVersions", ({ enumerable: true, get: function () { return node_version_1.getDiscontinuedNodeVersions; } }));
219830
- const errors_1 = __nested_webpack_require_1009884__(3983);
219831
- const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1009884__(2560));
219761
+ const errors_1 = __nested_webpack_require_1005872__(3983);
219762
+ const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1005872__(2560));
219832
219763
  exports.streamToBuffer = stream_to_buffer_1.default;
219833
- const should_serve_1 = __importDefault(__nested_webpack_require_1009884__(2564));
219764
+ const should_serve_1 = __importDefault(__nested_webpack_require_1005872__(2564));
219834
219765
  exports.shouldServe = should_serve_1.default;
219835
- const debug_1 = __importDefault(__nested_webpack_require_1009884__(1868));
219766
+ const debug_1 = __importDefault(__nested_webpack_require_1005872__(1868));
219836
219767
  exports.debug = debug_1.default;
219837
- const get_ignore_filter_1 = __importDefault(__nested_webpack_require_1009884__(1148));
219768
+ const get_ignore_filter_1 = __importDefault(__nested_webpack_require_1005872__(1148));
219838
219769
  exports.getIgnoreFilter = get_ignore_filter_1.default;
219839
- var detect_builders_1 = __nested_webpack_require_1009884__(4246);
219770
+ var detect_builders_1 = __nested_webpack_require_1005872__(4246);
219840
219771
  Object.defineProperty(exports, "detectBuilders", ({ enumerable: true, get: function () { return detect_builders_1.detectBuilders; } }));
219841
219772
  Object.defineProperty(exports, "detectOutputDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectOutputDirectory; } }));
219842
219773
  Object.defineProperty(exports, "detectApiDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectApiDirectory; } }));
219843
219774
  Object.defineProperty(exports, "detectApiExtensions", ({ enumerable: true, get: function () { return detect_builders_1.detectApiExtensions; } }));
219844
- var detect_framework_1 = __nested_webpack_require_1009884__(5224);
219775
+ var detect_framework_1 = __nested_webpack_require_1005872__(5224);
219845
219776
  Object.defineProperty(exports, "detectFramework", ({ enumerable: true, get: function () { return detect_framework_1.detectFramework; } }));
219846
- var filesystem_1 = __nested_webpack_require_1009884__(461);
219777
+ var filesystem_1 = __nested_webpack_require_1005872__(461);
219847
219778
  Object.defineProperty(exports, "DetectorFilesystem", ({ enumerable: true, get: function () { return filesystem_1.DetectorFilesystem; } }));
219848
- var read_config_file_1 = __nested_webpack_require_1009884__(7792);
219779
+ var read_config_file_1 = __nested_webpack_require_1005872__(7792);
219849
219780
  Object.defineProperty(exports, "readConfigFile", ({ enumerable: true, get: function () { return read_config_file_1.readConfigFile; } }));
219850
- var normalize_path_1 = __nested_webpack_require_1009884__(6261);
219781
+ var normalize_path_1 = __nested_webpack_require_1005872__(6261);
219851
219782
  Object.defineProperty(exports, "normalizePath", ({ enumerable: true, get: function () { return normalize_path_1.normalizePath; } }));
219852
- var convert_runtime_to_plugin_1 = __nested_webpack_require_1009884__(7276);
219783
+ var convert_runtime_to_plugin_1 = __nested_webpack_require_1005872__(7276);
219853
219784
  Object.defineProperty(exports, "convertRuntimeToPlugin", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.convertRuntimeToPlugin; } }));
219854
219785
  Object.defineProperty(exports, "updateFunctionsManifest", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.updateFunctionsManifest; } }));
219855
219786
  Object.defineProperty(exports, "updateRoutesManifest", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.updateRoutesManifest; } }));
219856
- __exportStar(__nested_webpack_require_1009884__(2416), exports);
219857
- __exportStar(__nested_webpack_require_1009884__(5748), exports);
219858
- __exportStar(__nested_webpack_require_1009884__(3983), exports);
219787
+ __exportStar(__nested_webpack_require_1005872__(2416), exports);
219788
+ __exportStar(__nested_webpack_require_1005872__(5748), exports);
219789
+ __exportStar(__nested_webpack_require_1005872__(3983), exports);
219859
219790
  /**
219860
219791
  * Helper function to support both `@vercel` and legacy `@now` official Runtimes.
219861
219792
  */
@@ -219908,7 +219839,7 @@ exports.getInputHash = getInputHash;
219908
219839
  /***/ }),
219909
219840
 
219910
219841
  /***/ 6721:
219911
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1020862__) {
219842
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1016850__) {
219912
219843
 
219913
219844
  "use strict";
219914
219845
 
@@ -219917,13 +219848,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219917
219848
  };
219918
219849
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219919
219850
  exports.getLambdaOptionsFromFunction = exports.createZip = exports.createLambda = exports.Lambda = exports.FILES_SYMBOL = void 0;
219920
- const assert_1 = __importDefault(__nested_webpack_require_1020862__(2357));
219921
- const async_sema_1 = __importDefault(__nested_webpack_require_1020862__(5758));
219922
- const yazl_1 = __nested_webpack_require_1020862__(1223);
219923
- const minimatch_1 = __importDefault(__nested_webpack_require_1020862__(9566));
219924
- const fs_extra_1 = __nested_webpack_require_1020862__(5392);
219925
- const download_1 = __nested_webpack_require_1020862__(1611);
219926
- const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1020862__(2560));
219851
+ const assert_1 = __importDefault(__nested_webpack_require_1016850__(2357));
219852
+ const async_sema_1 = __importDefault(__nested_webpack_require_1016850__(5758));
219853
+ const yazl_1 = __nested_webpack_require_1016850__(1223);
219854
+ const minimatch_1 = __importDefault(__nested_webpack_require_1016850__(9566));
219855
+ const fs_extra_1 = __nested_webpack_require_1016850__(5392);
219856
+ const download_1 = __nested_webpack_require_1016850__(1611);
219857
+ const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1016850__(2560));
219927
219858
  exports.FILES_SYMBOL = Symbol('files');
219928
219859
  class Lambda {
219929
219860
  constructor({ zipBuffer, handler, runtime, maxDuration, memory, environment, allowQuery, regions, }) {
@@ -220152,12 +220083,12 @@ exports.buildsSchema = {
220152
220083
  /***/ }),
220153
220084
 
220154
220085
  /***/ 2564:
220155
- /***/ ((__unused_webpack_module, exports, __nested_webpack_require_1029372__) => {
220086
+ /***/ ((__unused_webpack_module, exports, __nested_webpack_require_1025360__) => {
220156
220087
 
220157
220088
  "use strict";
220158
220089
 
220159
220090
  Object.defineProperty(exports, "__esModule", ({ value: true }));
220160
- const path_1 = __nested_webpack_require_1029372__(5622);
220091
+ const path_1 = __nested_webpack_require_1025360__(5622);
220161
220092
  function shouldServe({ entrypoint, files, requestPath, }) {
220162
220093
  requestPath = requestPath.replace(/\/$/, ''); // sanitize trailing '/'
220163
220094
  entrypoint = entrypoint.replace(/\\/, '/'); // windows compatibility
@@ -220394,7 +220325,7 @@ module.exports = __webpack_require__(78761);
220394
220325
  /******/ var __webpack_module_cache__ = {};
220395
220326
  /******/
220396
220327
  /******/ // The require function
220397
- /******/ function __nested_webpack_require_1129107__(moduleId) {
220328
+ /******/ function __nested_webpack_require_1125095__(moduleId) {
220398
220329
  /******/ // Check if module is in cache
220399
220330
  /******/ if(__webpack_module_cache__[moduleId]) {
220400
220331
  /******/ return __webpack_module_cache__[moduleId].exports;
@@ -220409,7 +220340,7 @@ module.exports = __webpack_require__(78761);
220409
220340
  /******/ // Execute the module function
220410
220341
  /******/ var threw = true;
220411
220342
  /******/ try {
220412
- /******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __nested_webpack_require_1129107__);
220343
+ /******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __nested_webpack_require_1125095__);
220413
220344
  /******/ threw = false;
220414
220345
  /******/ } finally {
220415
220346
  /******/ if(threw) delete __webpack_module_cache__[moduleId];
@@ -220422,11 +220353,11 @@ module.exports = __webpack_require__(78761);
220422
220353
  /************************************************************************/
220423
220354
  /******/ /* webpack/runtime/compat */
220424
220355
  /******/
220425
- /******/ __nested_webpack_require_1129107__.ab = __dirname + "/";/************************************************************************/
220356
+ /******/ __nested_webpack_require_1125095__.ab = __dirname + "/";/************************************************************************/
220426
220357
  /******/ // module exports must be returned from runtime so entry inlining is disabled
220427
220358
  /******/ // startup
220428
220359
  /******/ // Load entry module and return exports
220429
- /******/ return __nested_webpack_require_1129107__(2855);
220360
+ /******/ return __nested_webpack_require_1125095__(2855);
220430
220361
  /******/ })()
220431
220362
  ;
220432
220363
 
@@ -271113,7 +271044,7 @@ module.exports = JSON.parse("[\"ac\",\"com.ac\",\"edu.ac\",\"gov.ac\",\"net.ac\"
271113
271044
  /***/ ((module) => {
271114
271045
 
271115
271046
  "use strict";
271116
- module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"23.1.3-canary.63\",\"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.40\",\"@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.16\",\"vercel-plugin-node\":\"1.12.2-canary.32\"},\"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.17\",\"@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\":\"d31ebbabe4d9533d0e98137d76eb319b01ac8b13\"}");
271047
+ module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"23.1.3-canary.64\",\"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.41\",\"@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.17\",\"vercel-plugin-node\":\"1.12.2-canary.33\"},\"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.17\",\"@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\":\"35c8fc272905524eeb83268bdc09edb165d3382a\"}");
271117
271048
 
271118
271049
  /***/ }),
271119
271050
 
@@ -271129,7 +271060,7 @@ module.exports = JSON.parse("{\"VISA\":\"Visa\",\"MASTERCARD\":\"MasterCard\",\"
271129
271060
  /***/ ((module) => {
271130
271061
 
271131
271062
  "use strict";
271132
- module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.2.3-canary.41\",\"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.40\",\"@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\":\"d31ebbabe4d9533d0e98137d76eb319b01ac8b13\"}");
271063
+ module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.2.3-canary.42\",\"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.41\",\"@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\":\"35c8fc272905524eeb83268bdc09edb165d3382a\"}");
271133
271064
 
271134
271065
  /***/ }),
271135
271066
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vercel",
3
- "version": "23.1.3-canary.63",
3
+ "version": "23.1.3-canary.64",
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.40",
46
+ "@vercel/build-utils": "2.12.3-canary.41",
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
50
  "@vercel/ruby": "1.2.10-canary.0",
51
51
  "update-notifier": "4.1.0",
52
- "vercel-plugin-middleware": "0.0.0-canary.16",
53
- "vercel-plugin-node": "1.12.2-canary.32"
52
+ "vercel-plugin-middleware": "0.0.0-canary.17",
53
+ "vercel-plugin-node": "1.12.2-canary.33"
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": "d31ebbabe4d9533d0e98137d76eb319b01ac8b13"
187
+ "gitHead": "35c8fc272905524eeb83268bdc09edb165d3382a"
188
188
  }