vercel 23.1.3-canary.48 → 23.1.3-canary.51

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 +152 -134
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -217406,6 +217406,20 @@ const glob_1 = __importDefault(__nested_webpack_require_917406__(4240));
217406
217406
  const normalize_path_1 = __nested_webpack_require_917406__(6261);
217407
217407
  const lambda_1 = __nested_webpack_require_917406__(6721);
217408
217408
  const _1 = __nested_webpack_require_917406__(2855);
217409
+ // `.output` was already created by the Build Command, so we have
217410
+ // to ensure its contents don't get bundled into the Lambda. Similarily,
217411
+ // we don't want to bundle anything from `.vercel` either. Lastly,
217412
+ // Builders/Runtimes didn't have `vercel.json` or `now.json`.
217413
+ const ignoredPaths = ['.output', '.vercel', 'vercel.json', 'now.json'];
217414
+ const shouldIgnorePath = (file, ignoreFilter, ignoreFile) => {
217415
+ const isNative = ignoredPaths.some(item => {
217416
+ return file.startsWith(item);
217417
+ });
217418
+ if (!ignoreFile) {
217419
+ return isNative;
217420
+ }
217421
+ return isNative || ignoreFilter(file);
217422
+ };
217409
217423
  /**
217410
217424
  * Convert legacy Runtime to a Plugin.
217411
217425
  * @param buildRuntime - a legacy build() function from a Runtime
@@ -217417,22 +217431,15 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
217417
217431
  return async function build({ workPath }) {
217418
217432
  const opts = { cwd: workPath };
217419
217433
  const files = await glob_1.default('**', opts);
217420
- // `.output` was already created by the Build Command, so we have
217421
- // to ensure its contents don't get bundled into the Lambda. Similarily,
217422
- // we don't want to bundle anything from `.vercel` either. Lastly,
217423
- // Builders/Runtimes didn't have `vercel.json` or `now.json`.
217424
- const ignoredPaths = ['.output', '.vercel', 'vercel.json', 'now.json'];
217425
217434
  // We also don't want to provide any files to Runtimes that were ignored
217426
217435
  // through `.vercelignore` or `.nowignore`, because the Build Step does the same.
217427
217436
  const ignoreFilter = await _1.getIgnoreFilter(workPath);
217428
217437
  // We're not passing this as an `ignore` filter to the `glob` function above,
217429
217438
  // so that we can re-use exactly the same `getIgnoreFilter` method that the
217430
- // Build Step uses (literally the same code).
217439
+ // Build Step uses (literally the same code). Note that this exclusion only applies
217440
+ // when deploying. Locally, another exclusion further below is needed.
217431
217441
  for (const file in files) {
217432
- const isNative = ignoredPaths.some(item => {
217433
- return file.startsWith(item);
217434
- });
217435
- if (isNative || ignoreFilter(file)) {
217442
+ if (shouldIgnorePath(file, ignoreFilter, true)) {
217436
217443
  delete files[file];
217437
217444
  }
217438
217445
  }
@@ -217469,6 +217476,15 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
217469
217476
  };
217470
217477
  // @ts-ignore This symbol is a private API
217471
217478
  const lambdaFiles = output[lambda_1.FILES_SYMBOL];
217479
+ // When deploying, the `files` that are passed to the Legacy Runtimes already
217480
+ // have certain files that are ignored stripped, but locally, that list of
217481
+ // files isn't used by the Legacy Runtimes, so we need to apply the filters
217482
+ // to the outputs that they are returning instead.
217483
+ for (const file in lambdaFiles) {
217484
+ if (shouldIgnorePath(file, ignoreFilter, false)) {
217485
+ delete lambdaFiles[file];
217486
+ }
217487
+ }
217472
217488
  const entry = path_1.join(workPath, '.output', 'server', 'pages', entrypoint);
217473
217489
  await fs_extra_1.default.ensureDir(path_1.dirname(entry));
217474
217490
  await linkOrCopy(files[entrypoint].fsPath, entry);
@@ -217585,12 +217601,12 @@ exports.updateRoutesManifest = updateRoutesManifest;
217585
217601
  /***/ }),
217586
217602
 
217587
217603
  /***/ 1868:
217588
- /***/ ((__unused_webpack_module, exports, __nested_webpack_require_925701__) => {
217604
+ /***/ ((__unused_webpack_module, exports, __nested_webpack_require_926448__) => {
217589
217605
 
217590
217606
  "use strict";
217591
217607
 
217592
217608
  Object.defineProperty(exports, "__esModule", ({ value: true }));
217593
- const _1 = __nested_webpack_require_925701__(2855);
217609
+ const _1 = __nested_webpack_require_926448__(2855);
217594
217610
  function debug(message, ...additional) {
217595
217611
  if (_1.getPlatformEnv('BUILDER_DEBUG')) {
217596
217612
  console.log(message, ...additional);
@@ -217602,7 +217618,7 @@ exports.default = debug;
217602
217618
  /***/ }),
217603
217619
 
217604
217620
  /***/ 4246:
217605
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_926086__) {
217621
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_926833__) {
217606
217622
 
217607
217623
  "use strict";
217608
217624
 
@@ -217611,11 +217627,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
217611
217627
  };
217612
217628
  Object.defineProperty(exports, "__esModule", ({ value: true }));
217613
217629
  exports.detectBuilders = exports.detectOutputDirectory = exports.detectApiDirectory = exports.detectApiExtensions = exports.sortFiles = void 0;
217614
- const minimatch_1 = __importDefault(__nested_webpack_require_926086__(9566));
217615
- const semver_1 = __nested_webpack_require_926086__(2879);
217616
- const path_1 = __nested_webpack_require_926086__(5622);
217617
- const frameworks_1 = __importDefault(__nested_webpack_require_926086__(8438));
217618
- const _1 = __nested_webpack_require_926086__(2855);
217630
+ const minimatch_1 = __importDefault(__nested_webpack_require_926833__(9566));
217631
+ const semver_1 = __nested_webpack_require_926833__(2879);
217632
+ const path_1 = __nested_webpack_require_926833__(5622);
217633
+ const frameworks_1 = __importDefault(__nested_webpack_require_926833__(8438));
217634
+ const _1 = __nested_webpack_require_926833__(2855);
217619
217635
  const slugToFramework = new Map(frameworks_1.default.map(f => [f.slug, f]));
217620
217636
  // We need to sort the file paths by alphabet to make
217621
217637
  // sure the routes stay in the same order e.g. for deduping
@@ -218674,7 +218690,7 @@ function getSuggestion(topLevelProp, additionalProperty) {
218674
218690
  /***/ }),
218675
218691
 
218676
218692
  /***/ 2397:
218677
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_965470__) {
218693
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_966217__) {
218678
218694
 
218679
218695
  "use strict";
218680
218696
 
@@ -218682,8 +218698,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
218682
218698
  return (mod && mod.__esModule) ? mod : { "default": mod };
218683
218699
  };
218684
218700
  Object.defineProperty(exports, "__esModule", ({ value: true }));
218685
- const assert_1 = __importDefault(__nested_webpack_require_965470__(2357));
218686
- const into_stream_1 = __importDefault(__nested_webpack_require_965470__(6130));
218701
+ const assert_1 = __importDefault(__nested_webpack_require_966217__(2357));
218702
+ const into_stream_1 = __importDefault(__nested_webpack_require_966217__(6130));
218687
218703
  class FileBlob {
218688
218704
  constructor({ mode = 0o100644, contentType, data }) {
218689
218705
  assert_1.default(typeof mode === 'number');
@@ -218715,7 +218731,7 @@ exports.default = FileBlob;
218715
218731
  /***/ }),
218716
218732
 
218717
218733
  /***/ 9331:
218718
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_966922__) {
218734
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_967669__) {
218719
218735
 
218720
218736
  "use strict";
218721
218737
 
@@ -218723,11 +218739,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
218723
218739
  return (mod && mod.__esModule) ? mod : { "default": mod };
218724
218740
  };
218725
218741
  Object.defineProperty(exports, "__esModule", ({ value: true }));
218726
- const assert_1 = __importDefault(__nested_webpack_require_966922__(2357));
218727
- const fs_extra_1 = __importDefault(__nested_webpack_require_966922__(5392));
218728
- const multistream_1 = __importDefault(__nested_webpack_require_966922__(8179));
218729
- const path_1 = __importDefault(__nested_webpack_require_966922__(5622));
218730
- const async_sema_1 = __importDefault(__nested_webpack_require_966922__(5758));
218742
+ const assert_1 = __importDefault(__nested_webpack_require_967669__(2357));
218743
+ const fs_extra_1 = __importDefault(__nested_webpack_require_967669__(5392));
218744
+ const multistream_1 = __importDefault(__nested_webpack_require_967669__(8179));
218745
+ const path_1 = __importDefault(__nested_webpack_require_967669__(5622));
218746
+ const async_sema_1 = __importDefault(__nested_webpack_require_967669__(5758));
218731
218747
  const semaToPreventEMFILE = new async_sema_1.default(20);
218732
218748
  class FileFsRef {
218733
218749
  constructor({ mode = 0o100644, contentType, fsPath }) {
@@ -218793,7 +218809,7 @@ exports.default = FileFsRef;
218793
218809
  /***/ }),
218794
218810
 
218795
218811
  /***/ 5187:
218796
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_969726__) {
218812
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_970473__) {
218797
218813
 
218798
218814
  "use strict";
218799
218815
 
@@ -218801,11 +218817,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
218801
218817
  return (mod && mod.__esModule) ? mod : { "default": mod };
218802
218818
  };
218803
218819
  Object.defineProperty(exports, "__esModule", ({ value: true }));
218804
- const assert_1 = __importDefault(__nested_webpack_require_969726__(2357));
218805
- const node_fetch_1 = __importDefault(__nested_webpack_require_969726__(2197));
218806
- const multistream_1 = __importDefault(__nested_webpack_require_969726__(8179));
218807
- const async_retry_1 = __importDefault(__nested_webpack_require_969726__(3691));
218808
- const async_sema_1 = __importDefault(__nested_webpack_require_969726__(5758));
218820
+ const assert_1 = __importDefault(__nested_webpack_require_970473__(2357));
218821
+ const node_fetch_1 = __importDefault(__nested_webpack_require_970473__(2197));
218822
+ const multistream_1 = __importDefault(__nested_webpack_require_970473__(8179));
218823
+ const async_retry_1 = __importDefault(__nested_webpack_require_970473__(3691));
218824
+ const async_sema_1 = __importDefault(__nested_webpack_require_970473__(5758));
218809
218825
  const semaToDownloadFromS3 = new async_sema_1.default(5);
218810
218826
  class BailableError extends Error {
218811
218827
  constructor(...args) {
@@ -218886,7 +218902,7 @@ exports.default = FileRef;
218886
218902
  /***/ }),
218887
218903
 
218888
218904
  /***/ 1611:
218889
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_973127__) {
218905
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_973874__) {
218890
218906
 
218891
218907
  "use strict";
218892
218908
 
@@ -218895,10 +218911,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
218895
218911
  };
218896
218912
  Object.defineProperty(exports, "__esModule", ({ value: true }));
218897
218913
  exports.isSymbolicLink = void 0;
218898
- const path_1 = __importDefault(__nested_webpack_require_973127__(5622));
218899
- const debug_1 = __importDefault(__nested_webpack_require_973127__(1868));
218900
- const file_fs_ref_1 = __importDefault(__nested_webpack_require_973127__(9331));
218901
- const fs_extra_1 = __nested_webpack_require_973127__(5392);
218914
+ const path_1 = __importDefault(__nested_webpack_require_973874__(5622));
218915
+ const debug_1 = __importDefault(__nested_webpack_require_973874__(1868));
218916
+ const file_fs_ref_1 = __importDefault(__nested_webpack_require_973874__(9331));
218917
+ const fs_extra_1 = __nested_webpack_require_973874__(5392);
218902
218918
  const S_IFMT = 61440; /* 0170000 type of file */
218903
218919
  const S_IFLNK = 40960; /* 0120000 symbolic link */
218904
218920
  function isSymbolicLink(mode) {
@@ -218960,14 +218976,14 @@ exports.default = download;
218960
218976
  /***/ }),
218961
218977
 
218962
218978
  /***/ 3838:
218963
- /***/ ((__unused_webpack_module, exports, __nested_webpack_require_975952__) => {
218979
+ /***/ ((__unused_webpack_module, exports, __nested_webpack_require_976699__) => {
218964
218980
 
218965
218981
  "use strict";
218966
218982
 
218967
218983
  Object.defineProperty(exports, "__esModule", ({ value: true }));
218968
- const path_1 = __nested_webpack_require_975952__(5622);
218969
- const os_1 = __nested_webpack_require_975952__(2087);
218970
- const fs_extra_1 = __nested_webpack_require_975952__(5392);
218984
+ const path_1 = __nested_webpack_require_976699__(5622);
218985
+ const os_1 = __nested_webpack_require_976699__(2087);
218986
+ const fs_extra_1 = __nested_webpack_require_976699__(5392);
218971
218987
  async function getWritableDirectory() {
218972
218988
  const name = Math.floor(Math.random() * 0x7fffffff).toString(16);
218973
218989
  const directory = path_1.join(os_1.tmpdir(), name);
@@ -218980,7 +218996,7 @@ exports.default = getWritableDirectory;
218980
218996
  /***/ }),
218981
218997
 
218982
218998
  /***/ 4240:
218983
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_976532__) {
218999
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_977279__) {
218984
219000
 
218985
219001
  "use strict";
218986
219002
 
@@ -218988,13 +219004,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
218988
219004
  return (mod && mod.__esModule) ? mod : { "default": mod };
218989
219005
  };
218990
219006
  Object.defineProperty(exports, "__esModule", ({ value: true }));
218991
- const path_1 = __importDefault(__nested_webpack_require_976532__(5622));
218992
- const assert_1 = __importDefault(__nested_webpack_require_976532__(2357));
218993
- const glob_1 = __importDefault(__nested_webpack_require_976532__(1104));
218994
- const util_1 = __nested_webpack_require_976532__(1669);
218995
- const fs_extra_1 = __nested_webpack_require_976532__(5392);
218996
- const normalize_path_1 = __nested_webpack_require_976532__(6261);
218997
- const file_fs_ref_1 = __importDefault(__nested_webpack_require_976532__(9331));
219007
+ const path_1 = __importDefault(__nested_webpack_require_977279__(5622));
219008
+ const assert_1 = __importDefault(__nested_webpack_require_977279__(2357));
219009
+ const glob_1 = __importDefault(__nested_webpack_require_977279__(1104));
219010
+ const util_1 = __nested_webpack_require_977279__(1669);
219011
+ const fs_extra_1 = __nested_webpack_require_977279__(5392);
219012
+ const normalize_path_1 = __nested_webpack_require_977279__(6261);
219013
+ const file_fs_ref_1 = __importDefault(__nested_webpack_require_977279__(9331));
218998
219014
  const vanillaGlob = util_1.promisify(glob_1.default);
218999
219015
  async function glob(pattern, opts, mountpoint) {
219000
219016
  let options;
@@ -219040,7 +219056,7 @@ exports.default = glob;
219040
219056
  /***/ }),
219041
219057
 
219042
219058
  /***/ 7903:
219043
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_978728__) {
219059
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_979475__) {
219044
219060
 
219045
219061
  "use strict";
219046
219062
 
@@ -219049,9 +219065,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219049
219065
  };
219050
219066
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219051
219067
  exports.getSupportedNodeVersion = exports.getDiscontinuedNodeVersions = exports.getLatestNodeVersion = void 0;
219052
- const semver_1 = __nested_webpack_require_978728__(2879);
219053
- const errors_1 = __nested_webpack_require_978728__(3983);
219054
- const debug_1 = __importDefault(__nested_webpack_require_978728__(1868));
219068
+ const semver_1 = __nested_webpack_require_979475__(2879);
219069
+ const errors_1 = __nested_webpack_require_979475__(3983);
219070
+ const debug_1 = __importDefault(__nested_webpack_require_979475__(1868));
219055
219071
  const allOptions = [
219056
219072
  { major: 14, range: '14.x', runtime: 'nodejs14.x' },
219057
219073
  { major: 12, range: '12.x', runtime: 'nodejs12.x' },
@@ -219145,7 +219161,7 @@ exports.normalizePath = normalizePath;
219145
219161
  /***/ }),
219146
219162
 
219147
219163
  /***/ 7792:
219148
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_982596__) {
219164
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_983343__) {
219149
219165
 
219150
219166
  "use strict";
219151
219167
 
@@ -219154,9 +219170,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219154
219170
  };
219155
219171
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219156
219172
  exports.readConfigFile = void 0;
219157
- const js_yaml_1 = __importDefault(__nested_webpack_require_982596__(6540));
219158
- const toml_1 = __importDefault(__nested_webpack_require_982596__(9434));
219159
- const fs_extra_1 = __nested_webpack_require_982596__(5392);
219173
+ const js_yaml_1 = __importDefault(__nested_webpack_require_983343__(6540));
219174
+ const toml_1 = __importDefault(__nested_webpack_require_983343__(9434));
219175
+ const fs_extra_1 = __nested_webpack_require_983343__(5392);
219160
219176
  async function readFileOrNull(file) {
219161
219177
  try {
219162
219178
  const data = await fs_extra_1.readFile(file);
@@ -219211,7 +219227,7 @@ exports.default = rename;
219211
219227
  /***/ }),
219212
219228
 
219213
219229
  /***/ 1442:
219214
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_984389__) {
219230
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_985136__) {
219215
219231
 
219216
219232
  "use strict";
219217
219233
 
@@ -219220,14 +219236,14 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219220
219236
  };
219221
219237
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219222
219238
  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;
219223
- const assert_1 = __importDefault(__nested_webpack_require_984389__(2357));
219224
- const fs_extra_1 = __importDefault(__nested_webpack_require_984389__(5392));
219225
- const path_1 = __importDefault(__nested_webpack_require_984389__(5622));
219226
- const debug_1 = __importDefault(__nested_webpack_require_984389__(1868));
219227
- const cross_spawn_1 = __importDefault(__nested_webpack_require_984389__(7618));
219228
- const util_1 = __nested_webpack_require_984389__(1669);
219229
- const errors_1 = __nested_webpack_require_984389__(3983);
219230
- const node_version_1 = __nested_webpack_require_984389__(7903);
219239
+ const assert_1 = __importDefault(__nested_webpack_require_985136__(2357));
219240
+ const fs_extra_1 = __importDefault(__nested_webpack_require_985136__(5392));
219241
+ const path_1 = __importDefault(__nested_webpack_require_985136__(5622));
219242
+ const debug_1 = __importDefault(__nested_webpack_require_985136__(1868));
219243
+ const cross_spawn_1 = __importDefault(__nested_webpack_require_985136__(7618));
219244
+ const util_1 = __nested_webpack_require_985136__(1669);
219245
+ const errors_1 = __nested_webpack_require_985136__(3983);
219246
+ const node_version_1 = __nested_webpack_require_985136__(7903);
219231
219247
  function spawnAsync(command, args, opts = {}) {
219232
219248
  return new Promise((resolve, reject) => {
219233
219249
  const stderrLogs = [];
@@ -219538,7 +219554,7 @@ exports.installDependencies = util_1.deprecate(runNpmInstall, 'installDependenci
219538
219554
  /***/ }),
219539
219555
 
219540
219556
  /***/ 2560:
219541
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_998379__) {
219557
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_999126__) {
219542
219558
 
219543
219559
  "use strict";
219544
219560
 
@@ -219546,7 +219562,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219546
219562
  return (mod && mod.__esModule) ? mod : { "default": mod };
219547
219563
  };
219548
219564
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219549
- const end_of_stream_1 = __importDefault(__nested_webpack_require_998379__(687));
219565
+ const end_of_stream_1 = __importDefault(__nested_webpack_require_999126__(687));
219550
219566
  function streamToBuffer(stream) {
219551
219567
  return new Promise((resolve, reject) => {
219552
219568
  const buffers = [];
@@ -219575,7 +219591,7 @@ exports.default = streamToBuffer;
219575
219591
  /***/ }),
219576
219592
 
219577
219593
  /***/ 1148:
219578
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_999447__) {
219594
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1000194__) {
219579
219595
 
219580
219596
  "use strict";
219581
219597
 
@@ -219583,9 +219599,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219583
219599
  return (mod && mod.__esModule) ? mod : { "default": mod };
219584
219600
  };
219585
219601
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219586
- const path_1 = __importDefault(__nested_webpack_require_999447__(5622));
219587
- const fs_extra_1 = __importDefault(__nested_webpack_require_999447__(5392));
219588
- const ignore_1 = __importDefault(__nested_webpack_require_999447__(3556));
219602
+ const path_1 = __importDefault(__nested_webpack_require_1000194__(5622));
219603
+ const fs_extra_1 = __importDefault(__nested_webpack_require_1000194__(5392));
219604
+ const ignore_1 = __importDefault(__nested_webpack_require_1000194__(3556));
219589
219605
  function isCodedError(error) {
219590
219606
  return (error !== null &&
219591
219607
  error !== undefined &&
@@ -219642,7 +219658,7 @@ exports.default = default_1;
219642
219658
  /***/ }),
219643
219659
 
219644
219660
  /***/ 2855:
219645
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1001829__) {
219661
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1002576__) {
219646
219662
 
219647
219663
  "use strict";
219648
219664
 
@@ -219673,29 +219689,29 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219673
219689
  };
219674
219690
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219675
219691
  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;
219676
- const crypto_1 = __nested_webpack_require_1001829__(6417);
219677
- const file_blob_1 = __importDefault(__nested_webpack_require_1001829__(2397));
219692
+ const crypto_1 = __nested_webpack_require_1002576__(6417);
219693
+ const file_blob_1 = __importDefault(__nested_webpack_require_1002576__(2397));
219678
219694
  exports.FileBlob = file_blob_1.default;
219679
- const file_fs_ref_1 = __importDefault(__nested_webpack_require_1001829__(9331));
219695
+ const file_fs_ref_1 = __importDefault(__nested_webpack_require_1002576__(9331));
219680
219696
  exports.FileFsRef = file_fs_ref_1.default;
219681
- const file_ref_1 = __importDefault(__nested_webpack_require_1001829__(5187));
219697
+ const file_ref_1 = __importDefault(__nested_webpack_require_1002576__(5187));
219682
219698
  exports.FileRef = file_ref_1.default;
219683
- const lambda_1 = __nested_webpack_require_1001829__(6721);
219699
+ const lambda_1 = __nested_webpack_require_1002576__(6721);
219684
219700
  Object.defineProperty(exports, "Lambda", ({ enumerable: true, get: function () { return lambda_1.Lambda; } }));
219685
219701
  Object.defineProperty(exports, "createLambda", ({ enumerable: true, get: function () { return lambda_1.createLambda; } }));
219686
219702
  Object.defineProperty(exports, "getLambdaOptionsFromFunction", ({ enumerable: true, get: function () { return lambda_1.getLambdaOptionsFromFunction; } }));
219687
- const prerender_1 = __nested_webpack_require_1001829__(2850);
219703
+ const prerender_1 = __nested_webpack_require_1002576__(2850);
219688
219704
  Object.defineProperty(exports, "Prerender", ({ enumerable: true, get: function () { return prerender_1.Prerender; } }));
219689
- const download_1 = __importStar(__nested_webpack_require_1001829__(1611));
219705
+ const download_1 = __importStar(__nested_webpack_require_1002576__(1611));
219690
219706
  exports.download = download_1.default;
219691
219707
  Object.defineProperty(exports, "isSymbolicLink", ({ enumerable: true, get: function () { return download_1.isSymbolicLink; } }));
219692
- const get_writable_directory_1 = __importDefault(__nested_webpack_require_1001829__(3838));
219708
+ const get_writable_directory_1 = __importDefault(__nested_webpack_require_1002576__(3838));
219693
219709
  exports.getWriteableDirectory = get_writable_directory_1.default;
219694
- const glob_1 = __importDefault(__nested_webpack_require_1001829__(4240));
219710
+ const glob_1 = __importDefault(__nested_webpack_require_1002576__(4240));
219695
219711
  exports.glob = glob_1.default;
219696
- const rename_1 = __importDefault(__nested_webpack_require_1001829__(6718));
219712
+ const rename_1 = __importDefault(__nested_webpack_require_1002576__(6718));
219697
219713
  exports.rename = rename_1.default;
219698
- const run_user_scripts_1 = __nested_webpack_require_1001829__(1442);
219714
+ const run_user_scripts_1 = __nested_webpack_require_1002576__(1442);
219699
219715
  Object.defineProperty(exports, "execAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.execAsync; } }));
219700
219716
  Object.defineProperty(exports, "spawnAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.spawnAsync; } }));
219701
219717
  Object.defineProperty(exports, "execCommand", ({ enumerable: true, get: function () { return run_user_scripts_1.execCommand; } }));
@@ -219712,38 +219728,38 @@ Object.defineProperty(exports, "getNodeVersion", ({ enumerable: true, get: funct
219712
219728
  Object.defineProperty(exports, "getSpawnOptions", ({ enumerable: true, get: function () { return run_user_scripts_1.getSpawnOptions; } }));
219713
219729
  Object.defineProperty(exports, "getNodeBinPath", ({ enumerable: true, get: function () { return run_user_scripts_1.getNodeBinPath; } }));
219714
219730
  Object.defineProperty(exports, "scanParentDirs", ({ enumerable: true, get: function () { return run_user_scripts_1.scanParentDirs; } }));
219715
- const node_version_1 = __nested_webpack_require_1001829__(7903);
219731
+ const node_version_1 = __nested_webpack_require_1002576__(7903);
219716
219732
  Object.defineProperty(exports, "getLatestNodeVersion", ({ enumerable: true, get: function () { return node_version_1.getLatestNodeVersion; } }));
219717
219733
  Object.defineProperty(exports, "getDiscontinuedNodeVersions", ({ enumerable: true, get: function () { return node_version_1.getDiscontinuedNodeVersions; } }));
219718
- const errors_1 = __nested_webpack_require_1001829__(3983);
219719
- const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1001829__(2560));
219734
+ const errors_1 = __nested_webpack_require_1002576__(3983);
219735
+ const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1002576__(2560));
219720
219736
  exports.streamToBuffer = stream_to_buffer_1.default;
219721
- const should_serve_1 = __importDefault(__nested_webpack_require_1001829__(2564));
219737
+ const should_serve_1 = __importDefault(__nested_webpack_require_1002576__(2564));
219722
219738
  exports.shouldServe = should_serve_1.default;
219723
- const debug_1 = __importDefault(__nested_webpack_require_1001829__(1868));
219739
+ const debug_1 = __importDefault(__nested_webpack_require_1002576__(1868));
219724
219740
  exports.debug = debug_1.default;
219725
- const get_ignore_filter_1 = __importDefault(__nested_webpack_require_1001829__(1148));
219741
+ const get_ignore_filter_1 = __importDefault(__nested_webpack_require_1002576__(1148));
219726
219742
  exports.getIgnoreFilter = get_ignore_filter_1.default;
219727
- var detect_builders_1 = __nested_webpack_require_1001829__(4246);
219743
+ var detect_builders_1 = __nested_webpack_require_1002576__(4246);
219728
219744
  Object.defineProperty(exports, "detectBuilders", ({ enumerable: true, get: function () { return detect_builders_1.detectBuilders; } }));
219729
219745
  Object.defineProperty(exports, "detectOutputDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectOutputDirectory; } }));
219730
219746
  Object.defineProperty(exports, "detectApiDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectApiDirectory; } }));
219731
219747
  Object.defineProperty(exports, "detectApiExtensions", ({ enumerable: true, get: function () { return detect_builders_1.detectApiExtensions; } }));
219732
- var detect_framework_1 = __nested_webpack_require_1001829__(5224);
219748
+ var detect_framework_1 = __nested_webpack_require_1002576__(5224);
219733
219749
  Object.defineProperty(exports, "detectFramework", ({ enumerable: true, get: function () { return detect_framework_1.detectFramework; } }));
219734
- var filesystem_1 = __nested_webpack_require_1001829__(461);
219750
+ var filesystem_1 = __nested_webpack_require_1002576__(461);
219735
219751
  Object.defineProperty(exports, "DetectorFilesystem", ({ enumerable: true, get: function () { return filesystem_1.DetectorFilesystem; } }));
219736
- var read_config_file_1 = __nested_webpack_require_1001829__(7792);
219752
+ var read_config_file_1 = __nested_webpack_require_1002576__(7792);
219737
219753
  Object.defineProperty(exports, "readConfigFile", ({ enumerable: true, get: function () { return read_config_file_1.readConfigFile; } }));
219738
- var normalize_path_1 = __nested_webpack_require_1001829__(6261);
219754
+ var normalize_path_1 = __nested_webpack_require_1002576__(6261);
219739
219755
  Object.defineProperty(exports, "normalizePath", ({ enumerable: true, get: function () { return normalize_path_1.normalizePath; } }));
219740
- var convert_runtime_to_plugin_1 = __nested_webpack_require_1001829__(7276);
219756
+ var convert_runtime_to_plugin_1 = __nested_webpack_require_1002576__(7276);
219741
219757
  Object.defineProperty(exports, "convertRuntimeToPlugin", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.convertRuntimeToPlugin; } }));
219742
219758
  Object.defineProperty(exports, "updateFunctionsManifest", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.updateFunctionsManifest; } }));
219743
219759
  Object.defineProperty(exports, "updateRoutesManifest", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.updateRoutesManifest; } }));
219744
- __exportStar(__nested_webpack_require_1001829__(2416), exports);
219745
- __exportStar(__nested_webpack_require_1001829__(5748), exports);
219746
- __exportStar(__nested_webpack_require_1001829__(3983), exports);
219760
+ __exportStar(__nested_webpack_require_1002576__(2416), exports);
219761
+ __exportStar(__nested_webpack_require_1002576__(5748), exports);
219762
+ __exportStar(__nested_webpack_require_1002576__(3983), exports);
219747
219763
  /**
219748
219764
  * Helper function to support both `@vercel` and legacy `@now` official Runtimes.
219749
219765
  */
@@ -219796,7 +219812,7 @@ exports.getInputHash = getInputHash;
219796
219812
  /***/ }),
219797
219813
 
219798
219814
  /***/ 6721:
219799
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1012807__) {
219815
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1013554__) {
219800
219816
 
219801
219817
  "use strict";
219802
219818
 
@@ -219805,13 +219821,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219805
219821
  };
219806
219822
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219807
219823
  exports.getLambdaOptionsFromFunction = exports.createZip = exports.createLambda = exports.Lambda = exports.FILES_SYMBOL = void 0;
219808
- const assert_1 = __importDefault(__nested_webpack_require_1012807__(2357));
219809
- const async_sema_1 = __importDefault(__nested_webpack_require_1012807__(5758));
219810
- const yazl_1 = __nested_webpack_require_1012807__(1223);
219811
- const minimatch_1 = __importDefault(__nested_webpack_require_1012807__(9566));
219812
- const fs_extra_1 = __nested_webpack_require_1012807__(5392);
219813
- const download_1 = __nested_webpack_require_1012807__(1611);
219814
- const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1012807__(2560));
219824
+ const assert_1 = __importDefault(__nested_webpack_require_1013554__(2357));
219825
+ const async_sema_1 = __importDefault(__nested_webpack_require_1013554__(5758));
219826
+ const yazl_1 = __nested_webpack_require_1013554__(1223);
219827
+ const minimatch_1 = __importDefault(__nested_webpack_require_1013554__(9566));
219828
+ const fs_extra_1 = __nested_webpack_require_1013554__(5392);
219829
+ const download_1 = __nested_webpack_require_1013554__(1611);
219830
+ const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1013554__(2560));
219815
219831
  exports.FILES_SYMBOL = Symbol('files');
219816
219832
  class Lambda {
219817
219833
  constructor({ zipBuffer, handler, runtime, maxDuration, memory, environment, allowQuery, regions, }) {
@@ -220040,12 +220056,12 @@ exports.buildsSchema = {
220040
220056
  /***/ }),
220041
220057
 
220042
220058
  /***/ 2564:
220043
- /***/ ((__unused_webpack_module, exports, __nested_webpack_require_1021317__) => {
220059
+ /***/ ((__unused_webpack_module, exports, __nested_webpack_require_1022064__) => {
220044
220060
 
220045
220061
  "use strict";
220046
220062
 
220047
220063
  Object.defineProperty(exports, "__esModule", ({ value: true }));
220048
- const path_1 = __nested_webpack_require_1021317__(5622);
220064
+ const path_1 = __nested_webpack_require_1022064__(5622);
220049
220065
  function shouldServe({ entrypoint, files, requestPath, }) {
220050
220066
  requestPath = requestPath.replace(/\/$/, ''); // sanitize trailing '/'
220051
220067
  entrypoint = entrypoint.replace(/\\/, '/'); // windows compatibility
@@ -220282,7 +220298,7 @@ module.exports = __webpack_require__(78761);
220282
220298
  /******/ var __webpack_module_cache__ = {};
220283
220299
  /******/
220284
220300
  /******/ // The require function
220285
- /******/ function __nested_webpack_require_1121052__(moduleId) {
220301
+ /******/ function __nested_webpack_require_1121799__(moduleId) {
220286
220302
  /******/ // Check if module is in cache
220287
220303
  /******/ if(__webpack_module_cache__[moduleId]) {
220288
220304
  /******/ return __webpack_module_cache__[moduleId].exports;
@@ -220297,7 +220313,7 @@ module.exports = __webpack_require__(78761);
220297
220313
  /******/ // Execute the module function
220298
220314
  /******/ var threw = true;
220299
220315
  /******/ try {
220300
- /******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __nested_webpack_require_1121052__);
220316
+ /******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __nested_webpack_require_1121799__);
220301
220317
  /******/ threw = false;
220302
220318
  /******/ } finally {
220303
220319
  /******/ if(threw) delete __webpack_module_cache__[moduleId];
@@ -220310,11 +220326,11 @@ module.exports = __webpack_require__(78761);
220310
220326
  /************************************************************************/
220311
220327
  /******/ /* webpack/runtime/compat */
220312
220328
  /******/
220313
- /******/ __nested_webpack_require_1121052__.ab = __dirname + "/";/************************************************************************/
220329
+ /******/ __nested_webpack_require_1121799__.ab = __dirname + "/";/************************************************************************/
220314
220330
  /******/ // module exports must be returned from runtime so entry inlining is disabled
220315
220331
  /******/ // startup
220316
220332
  /******/ // Load entry module and return exports
220317
- /******/ return __nested_webpack_require_1121052__(2855);
220333
+ /******/ return __nested_webpack_require_1121799__(2855);
220318
220334
  /******/ })()
220319
220335
  ;
220320
220336
 
@@ -250711,25 +250727,27 @@ async function main(client) {
250711
250727
  });
250712
250728
  }
250713
250729
  }
250714
- client.output.debug(`Resolve ${param_1.default('required-server-files.json')}.`);
250715
250730
  const requiredServerFilesPath = path_1.join(OUTPUT_DIR, 'required-server-files.json');
250716
- const requiredServerFilesJson = await fs_extra_1.default.readJSON(requiredServerFilesPath);
250717
- await fs_extra_1.default.writeJSON(requiredServerFilesPath, {
250718
- ...requiredServerFilesJson,
250719
- appDir: '.',
250720
- files: requiredServerFilesJson.files.map((i) => {
250721
- const originalPath = path_1.join(requiredServerFilesJson.appDir, i);
250722
- const relPath = path_1.join(OUTPUT_DIR, path_1.relative(distDir, originalPath));
250723
- const absolutePath = path_1.join(cwd, relPath);
250724
- const output = path_1.relative(baseDir, absolutePath);
250725
- return relPath === output
250726
- ? relPath
250727
- : {
250728
- input: relPath,
250729
- output,
250730
- };
250731
- }),
250732
- });
250731
+ if (fs_extra_1.default.existsSync(requiredServerFilesPath)) {
250732
+ client.output.debug(`Resolve ${param_1.default('required-server-files.json')}.`);
250733
+ const requiredServerFilesJson = await fs_extra_1.default.readJSON(requiredServerFilesPath);
250734
+ await fs_extra_1.default.writeJSON(requiredServerFilesPath, {
250735
+ ...requiredServerFilesJson,
250736
+ appDir: '.',
250737
+ files: requiredServerFilesJson.files.map((i) => {
250738
+ const originalPath = path_1.join(requiredServerFilesJson.appDir, i);
250739
+ const relPath = path_1.join(OUTPUT_DIR, path_1.relative(distDir, originalPath));
250740
+ const absolutePath = path_1.join(cwd, relPath);
250741
+ const output = path_1.relative(baseDir, absolutePath);
250742
+ return relPath === output
250743
+ ? relPath
250744
+ : {
250745
+ input: relPath,
250746
+ output,
250747
+ };
250748
+ }),
250749
+ });
250750
+ }
250733
250751
  }
250734
250752
  }
250735
250753
  // Build Plugins
@@ -271073,7 +271091,7 @@ module.exports = JSON.parse("[\"ac\",\"com.ac\",\"edu.ac\",\"gov.ac\",\"net.ac\"
271073
271091
  /***/ ((module) => {
271074
271092
 
271075
271093
  "use strict";
271076
- module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"23.1.3-canary.48\",\"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.28\",\"@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.6\",\"update-notifier\":\"4.1.0\",\"vercel-plugin-middleware\":\"0.0.0-canary.7\",\"vercel-plugin-node\":\"1.12.2-canary.20\"},\"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\":\"82fdd5d121457c4b1ab8254eb8b88c77375ffa4b\"}");
271094
+ module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"23.1.3-canary.51\",\"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.30\",\"@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.6\",\"update-notifier\":\"4.1.0\",\"vercel-plugin-middleware\":\"0.0.0-canary.7\",\"vercel-plugin-node\":\"1.12.2-canary.22\"},\"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\":\"9227471acaa7102c0e37b338c6ebcc05cbc95486\"}");
271077
271095
 
271078
271096
  /***/ }),
271079
271097
 
@@ -271089,7 +271107,7 @@ module.exports = JSON.parse("{\"VISA\":\"Visa\",\"MASTERCARD\":\"MasterCard\",\"
271089
271107
  /***/ ((module) => {
271090
271108
 
271091
271109
  "use strict";
271092
- module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.2.3-canary.29\",\"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.28\",\"@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\"}}");
271110
+ module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.2.3-canary.31\",\"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.30\",\"@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\":\"9227471acaa7102c0e37b338c6ebcc05cbc95486\"}");
271093
271111
 
271094
271112
  /***/ }),
271095
271113
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vercel",
3
- "version": "23.1.3-canary.48",
3
+ "version": "23.1.3-canary.51",
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.28",
46
+ "@vercel/build-utils": "2.12.3-canary.30",
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.8-canary.6",
51
51
  "update-notifier": "4.1.0",
52
52
  "vercel-plugin-middleware": "0.0.0-canary.7",
53
- "vercel-plugin-node": "1.12.2-canary.20"
53
+ "vercel-plugin-node": "1.12.2-canary.22"
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": "82fdd5d121457c4b1ab8254eb8b88c77375ffa4b"
187
+ "gitHead": "9227471acaa7102c0e37b338c6ebcc05cbc95486"
188
188
  }