vercel 23.1.3-canary.58 → 23.1.3-canary.61

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 +237 -362
  2. package/package.json +6 -6
package/dist/index.js CHANGED
@@ -211342,7 +211342,6 @@ exports.frameworks = [
211342
211342
  },
211343
211343
  dependency: 'gatsby',
211344
211344
  getOutputDirName: async () => 'public',
211345
- getFsOutputDir: async () => 'public',
211346
211345
  defaultRoutes: async (dirPrefix) => {
211347
211346
  // This file could be generated by gatsby-plugin-now or gatsby-plugin-zeit-now
211348
211347
  try {
@@ -211423,7 +211422,6 @@ exports.frameworks = [
211423
211422
  },
211424
211423
  },
211425
211424
  dependency: 'remix',
211426
- getFsOutputDir: async () => 'public',
211427
211425
  getOutputDirName: async () => 'public',
211428
211426
  defaultRoutes: [
211429
211427
  {
@@ -211451,10 +211449,13 @@ exports.frameworks = [
211451
211449
  source: '/build/(.*)',
211452
211450
  regex: '/build/(.*)',
211453
211451
  headers: [
211454
- { key: 'cache-control', value: 'public, max-age=31536000, immutable' },
211452
+ {
211453
+ key: 'cache-control',
211454
+ value: 'public, max-age=31536000, immutable',
211455
+ },
211455
211456
  ],
211456
211457
  },
211457
- ]
211458
+ ],
211458
211459
  },
211459
211460
  {
211460
211461
  name: 'Hexo',
@@ -211489,7 +211490,6 @@ exports.frameworks = [
211489
211490
  },
211490
211491
  },
211491
211492
  dependency: 'hexo',
211492
- getFsOutputDir: async () => 'public',
211493
211493
  getOutputDirName: async () => 'public',
211494
211494
  },
211495
211495
  {
@@ -211525,7 +211525,6 @@ exports.frameworks = [
211525
211525
  },
211526
211526
  },
211527
211527
  dependency: '@11ty/eleventy',
211528
- getFsOutputDir: async () => '_site',
211529
211528
  getOutputDirName: async () => '_site',
211530
211529
  cachePattern: '.cache/**',
211531
211530
  },
@@ -211562,21 +211561,6 @@ exports.frameworks = [
211562
211561
  },
211563
211562
  },
211564
211563
  dependency: '@docusaurus/core',
211565
- getFsOutputDir: async (dirPrefix) => {
211566
- const base = 'build';
211567
- try {
211568
- const location = path_1.join(dirPrefix, base);
211569
- const content = await readdir(location, { withFileTypes: true });
211570
- // If there is only one file in it that is a dir we'll use it as dist dir
211571
- if (content.length === 1 && content[0].isDirectory()) {
211572
- return path_1.join(base, content[0].name);
211573
- }
211574
- }
211575
- catch (error) {
211576
- console.error(`Error detecting output directory: `, error);
211577
- }
211578
- return base;
211579
- },
211580
211564
  getOutputDirName: async (dirPrefix) => {
211581
211565
  const base = 'build';
211582
211566
  try {
@@ -211706,21 +211690,6 @@ exports.frameworks = [
211706
211690
  },
211707
211691
  },
211708
211692
  dependency: 'docusaurus',
211709
- getFsOutputDir: async (dirPrefix) => {
211710
- const base = 'build';
211711
- try {
211712
- const location = path_1.join(dirPrefix, base);
211713
- const content = await readdir(location, { withFileTypes: true });
211714
- // If there is only one file in it that is a dir we'll use it as dist dir
211715
- if (content.length === 1 && content[0].isDirectory()) {
211716
- return path_1.join(base, content[0].name);
211717
- }
211718
- }
211719
- catch (error) {
211720
- console.error(`Error detecting output directory: `, error);
211721
- }
211722
- return base;
211723
- },
211724
211693
  getOutputDirName: async (dirPrefix) => {
211725
211694
  const base = 'build';
211726
211695
  try {
@@ -211770,7 +211739,6 @@ exports.frameworks = [
211770
211739
  },
211771
211740
  },
211772
211741
  dependency: 'preact-cli',
211773
- getFsOutputDir: async () => 'build',
211774
211742
  getOutputDirName: async () => 'build',
211775
211743
  defaultRoutes: [
211776
211744
  {
@@ -211825,7 +211793,6 @@ exports.frameworks = [
211825
211793
  },
211826
211794
  },
211827
211795
  dependency: '@dojo/cli',
211828
- getFsOutputDir: async () => 'output/dist',
211829
211796
  getOutputDirName: async () => path_1.join('output', 'dist'),
211830
211797
  defaultRoutes: [
211831
211798
  {
@@ -211890,7 +211857,6 @@ exports.frameworks = [
211890
211857
  },
211891
211858
  },
211892
211859
  dependency: 'ember-cli',
211893
- getFsOutputDir: async () => 'dist',
211894
211860
  getOutputDirName: async () => 'dist',
211895
211861
  defaultRoutes: [
211896
211862
  {
@@ -211943,7 +211909,6 @@ exports.frameworks = [
211943
211909
  },
211944
211910
  },
211945
211911
  dependency: '@vue/cli-service',
211946
- getFsOutputDir: async () => 'dist',
211947
211912
  getOutputDirName: async () => 'dist',
211948
211913
  defaultRoutes: [
211949
211914
  {
@@ -212019,7 +211984,6 @@ exports.frameworks = [
212019
211984
  },
212020
211985
  },
212021
211986
  dependency: '@scullyio/init',
212022
- getFsOutputDir: async () => 'dist',
212023
211987
  getOutputDirName: async () => 'dist/static',
212024
211988
  },
212025
211989
  {
@@ -212054,7 +212018,6 @@ exports.frameworks = [
212054
212018
  },
212055
212019
  },
212056
212020
  dependency: '@ionic/angular',
212057
- getFsOutputDir: async () => 'www',
212058
212021
  getOutputDirName: async () => 'www',
212059
212022
  defaultRoutes: [
212060
212023
  {
@@ -212106,7 +212069,6 @@ exports.frameworks = [
212106
212069
  },
212107
212070
  },
212108
212071
  dependency: '@angular/cli',
212109
- getFsOutputDir: async () => 'dist',
212110
212072
  getOutputDirName: async (dirPrefix) => {
212111
212073
  const base = 'dist';
212112
212074
  try {
@@ -212172,7 +212134,6 @@ exports.frameworks = [
212172
212134
  },
212173
212135
  },
212174
212136
  dependency: 'polymer-cli',
212175
- getFsOutputDir: async () => 'build',
212176
212137
  getOutputDirName: async (dirPrefix) => {
212177
212138
  const base = 'build';
212178
212139
  try {
@@ -212240,7 +212201,6 @@ exports.frameworks = [
212240
212201
  },
212241
212202
  },
212242
212203
  dependency: 'sirv-cli',
212243
- getFsOutputDir: async () => 'public',
212244
212204
  getOutputDirName: async () => 'public',
212245
212205
  defaultRoutes: [
212246
212206
  {
@@ -212288,10 +212248,9 @@ exports.frameworks = [
212288
212248
  placeholder: 'svelte-kit dev',
212289
212249
  },
212290
212250
  outputDirectory: {
212291
- placeholder: 'public',
212251
+ value: 'public',
212292
212252
  },
212293
212253
  },
212294
- getFsOutputDir: async () => '.output',
212295
212254
  getOutputDirName: async () => 'public',
212296
212255
  },
212297
212256
  {
@@ -212326,7 +212285,6 @@ exports.frameworks = [
212326
212285
  },
212327
212286
  },
212328
212287
  dependency: '@ionic/react',
212329
- getFsOutputDir: async () => 'build',
212330
212288
  getOutputDirName: async () => 'build',
212331
212289
  defaultRoutes: [
212332
212290
  {
@@ -212431,7 +212389,6 @@ exports.frameworks = [
212431
212389
  },
212432
212390
  },
212433
212391
  dependency: 'react-scripts',
212434
- getFsOutputDir: async () => 'build',
212435
212392
  getOutputDirName: async () => 'build',
212436
212393
  defaultRoutes: [
212437
212394
  {
@@ -212531,7 +212488,6 @@ exports.frameworks = [
212531
212488
  },
212532
212489
  },
212533
212490
  dependency: 'gridsome',
212534
- getFsOutputDir: async () => 'dist',
212535
212491
  getOutputDirName: async () => 'dist',
212536
212492
  },
212537
212493
  {
@@ -212567,7 +212523,6 @@ exports.frameworks = [
212567
212523
  },
212568
212524
  },
212569
212525
  dependency: 'umi',
212570
- getFsOutputDir: async () => 'dist',
212571
212526
  getOutputDirName: async () => 'dist',
212572
212527
  defaultRoutes: [
212573
212528
  {
@@ -212619,7 +212574,6 @@ exports.frameworks = [
212619
212574
  },
212620
212575
  },
212621
212576
  dependency: 'sapper',
212622
- getFsOutputDir: async () => '__sapper__/export',
212623
212577
  getOutputDirName: async () => '__sapper__/export',
212624
212578
  },
212625
212579
  {
@@ -212655,7 +212609,6 @@ exports.frameworks = [
212655
212609
  },
212656
212610
  },
212657
212611
  dependency: 'saber',
212658
- getFsOutputDir: async () => 'public',
212659
212612
  getOutputDirName: async () => 'public',
212660
212613
  defaultRoutes: [
212661
212614
  {
@@ -212722,7 +212675,6 @@ exports.frameworks = [
212722
212675
  },
212723
212676
  },
212724
212677
  dependency: '@stencil/core',
212725
- getFsOutputDir: async () => 'www',
212726
212678
  getOutputDirName: async () => 'www',
212727
212679
  defaultRoutes: [
212728
212680
  {
@@ -212809,7 +212761,6 @@ exports.frameworks = [
212809
212761
  },
212810
212762
  },
212811
212763
  dependency: 'nuxt',
212812
- getFsOutputDir: async () => '.output',
212813
212764
  getOutputDirName: async () => 'dist',
212814
212765
  cachePattern: '.nuxt/**',
212815
212766
  defaultRoutes: [
@@ -212866,7 +212817,6 @@ exports.frameworks = [
212866
212817
  placeholder: 'RedwoodJS default',
212867
212818
  },
212868
212819
  },
212869
- getFsOutputDir: async () => 'public',
212870
212820
  getOutputDirName: async () => 'public',
212871
212821
  },
212872
212822
  {
@@ -212909,12 +212859,6 @@ exports.frameworks = [
212909
212859
  placeholder: '`public` or `publishDir` from the `config` file',
212910
212860
  },
212911
212861
  },
212912
- getFsOutputDir: async (dirPrefix) => {
212913
- const config = await read_config_file_1.readConfigFile(['config.json', 'config.yaml', 'config.toml'].map(fileName => {
212914
- return path_1.join(dirPrefix, fileName);
212915
- }));
212916
- return (config && config.publishDir) || 'public';
212917
- },
212918
212862
  getOutputDirName: async (dirPrefix) => {
212919
212863
  const config = await read_config_file_1.readConfigFile(['config.json', 'config.yaml', 'config.toml'].map(fileName => {
212920
212864
  return path_1.join(dirPrefix, fileName);
@@ -212954,10 +212898,6 @@ exports.frameworks = [
212954
212898
  placeholder: '`_site` or `destination` from `_config.yml`',
212955
212899
  },
212956
212900
  },
212957
- getFsOutputDir: async (dirPrefix) => {
212958
- const config = await read_config_file_1.readConfigFile(path_1.join(dirPrefix, '_config.yml'));
212959
- return (config && config.destination) || '_site';
212960
- },
212961
212901
  getOutputDirName: async (dirPrefix) => {
212962
212902
  const config = await read_config_file_1.readConfigFile(path_1.join(dirPrefix, '_config.yml'));
212963
212903
  return (config && config.destination) || '_site';
@@ -212995,7 +212935,6 @@ exports.frameworks = [
212995
212935
  value: 'public',
212996
212936
  },
212997
212937
  },
212998
- getFsOutputDir: async () => 'public',
212999
212938
  getOutputDirName: async () => 'public',
213000
212939
  },
213001
212940
  {
@@ -213029,7 +212968,6 @@ exports.frameworks = [
213029
212968
  value: 'build',
213030
212969
  },
213031
212970
  },
213032
- getFsOutputDir: async () => 'build',
213033
212971
  getOutputDirName: async () => 'build',
213034
212972
  cachePattern: '{vendor/bin,vendor/cache,vendor/bundle}/**',
213035
212973
  },
@@ -213064,7 +213002,6 @@ exports.frameworks = [
213064
213002
  value: 'public',
213065
213003
  },
213066
213004
  },
213067
- getFsOutputDir: async () => 'public',
213068
213005
  getOutputDirName: async () => 'public',
213069
213006
  defaultVersion: '0.13.0',
213070
213007
  },
@@ -213102,7 +213039,6 @@ exports.frameworks = [
213102
213039
  },
213103
213040
  },
213104
213041
  dependency: 'vite',
213105
- getFsOutputDir: async () => 'dist',
213106
213042
  getOutputDirName: async () => 'dist',
213107
213043
  },
213108
213044
  {
@@ -213138,7 +213074,6 @@ exports.frameworks = [
213138
213074
  },
213139
213075
  },
213140
213076
  dependency: 'parcel',
213141
- getFsOutputDir: async () => 'dist',
213142
213077
  getOutputDirName: async () => 'dist',
213143
213078
  defaultRoutes: [
213144
213079
  {
@@ -213207,7 +213142,7 @@ exports.default = def;
213207
213142
  /***/ }),
213208
213143
 
213209
213144
  /***/ 3734:
213210
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_807534__) {
213145
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_804458__) {
213211
213146
 
213212
213147
  "use strict";
213213
213148
 
@@ -213216,9 +213151,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
213216
213151
  };
213217
213152
  Object.defineProperty(exports, "__esModule", ({ value: true }));
213218
213153
  exports.readConfigFile = void 0;
213219
- const js_yaml_1 = __importDefault(__nested_webpack_require_807534__(641));
213220
- const toml_1 = __importDefault(__nested_webpack_require_807534__(9434));
213221
- const fs_1 = __nested_webpack_require_807534__(5747);
213154
+ const js_yaml_1 = __importDefault(__nested_webpack_require_804458__(641));
213155
+ const toml_1 = __importDefault(__nested_webpack_require_804458__(9434));
213156
+ const fs_1 = __nested_webpack_require_804458__(5747);
213222
213157
  const { readFile } = fs_1.promises;
213223
213158
  async function readFileOrNull(file) {
213224
213159
  try {
@@ -213267,13 +213202,13 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
213267
213202
  /***/ }),
213268
213203
 
213269
213204
  /***/ 641:
213270
- /***/ ((module, __unused_webpack_exports, __nested_webpack_require_809140__) => {
213205
+ /***/ ((module, __unused_webpack_exports, __nested_webpack_require_806064__) => {
213271
213206
 
213272
213207
  "use strict";
213273
213208
 
213274
213209
 
213275
213210
 
213276
- var yaml = __nested_webpack_require_809140__(9633);
213211
+ var yaml = __nested_webpack_require_806064__(9633);
213277
213212
 
213278
213213
 
213279
213214
  module.exports = yaml;
@@ -213282,14 +213217,14 @@ module.exports = yaml;
213282
213217
  /***/ }),
213283
213218
 
213284
213219
  /***/ 9633:
213285
- /***/ ((module, __unused_webpack_exports, __nested_webpack_require_809314__) => {
213220
+ /***/ ((module, __unused_webpack_exports, __nested_webpack_require_806238__) => {
213286
213221
 
213287
213222
  "use strict";
213288
213223
 
213289
213224
 
213290
213225
 
213291
- var loader = __nested_webpack_require_809314__(4349);
213292
- var dumper = __nested_webpack_require_809314__(8047);
213226
+ var loader = __nested_webpack_require_806238__(4349);
213227
+ var dumper = __nested_webpack_require_806238__(8047);
213293
213228
 
213294
213229
 
213295
213230
  function deprecated(name) {
@@ -213299,25 +213234,25 @@ function deprecated(name) {
213299
213234
  }
213300
213235
 
213301
213236
 
213302
- module.exports.Type = __nested_webpack_require_809314__(6876);
213303
- module.exports.Schema = __nested_webpack_require_809314__(6105);
213304
- module.exports.FAILSAFE_SCHEMA = __nested_webpack_require_809314__(8441);
213305
- module.exports.JSON_SCHEMA = __nested_webpack_require_809314__(1486);
213306
- module.exports.CORE_SCHEMA = __nested_webpack_require_809314__(1112);
213307
- module.exports.DEFAULT_SAFE_SCHEMA = __nested_webpack_require_809314__(596);
213308
- module.exports.DEFAULT_FULL_SCHEMA = __nested_webpack_require_809314__(9647);
213237
+ module.exports.Type = __nested_webpack_require_806238__(6876);
213238
+ module.exports.Schema = __nested_webpack_require_806238__(6105);
213239
+ module.exports.FAILSAFE_SCHEMA = __nested_webpack_require_806238__(8441);
213240
+ module.exports.JSON_SCHEMA = __nested_webpack_require_806238__(1486);
213241
+ module.exports.CORE_SCHEMA = __nested_webpack_require_806238__(1112);
213242
+ module.exports.DEFAULT_SAFE_SCHEMA = __nested_webpack_require_806238__(596);
213243
+ module.exports.DEFAULT_FULL_SCHEMA = __nested_webpack_require_806238__(9647);
213309
213244
  module.exports.load = loader.load;
213310
213245
  module.exports.loadAll = loader.loadAll;
213311
213246
  module.exports.safeLoad = loader.safeLoad;
213312
213247
  module.exports.safeLoadAll = loader.safeLoadAll;
213313
213248
  module.exports.dump = dumper.dump;
213314
213249
  module.exports.safeDump = dumper.safeDump;
213315
- module.exports.YAMLException = __nested_webpack_require_809314__(3237);
213250
+ module.exports.YAMLException = __nested_webpack_require_806238__(3237);
213316
213251
 
213317
213252
  // Deprecated schema names from JS-YAML 2.0.x
213318
- module.exports.MINIMAL_SCHEMA = __nested_webpack_require_809314__(8441);
213319
- module.exports.SAFE_SCHEMA = __nested_webpack_require_809314__(596);
213320
- module.exports.DEFAULT_SCHEMA = __nested_webpack_require_809314__(9647);
213253
+ module.exports.MINIMAL_SCHEMA = __nested_webpack_require_806238__(8441);
213254
+ module.exports.SAFE_SCHEMA = __nested_webpack_require_806238__(596);
213255
+ module.exports.DEFAULT_SCHEMA = __nested_webpack_require_806238__(9647);
213321
213256
 
213322
213257
  // Deprecated functions from JS-YAML 1.x.x
213323
213258
  module.exports.scan = deprecated('scan');
@@ -213396,17 +213331,17 @@ module.exports.extend = extend;
213396
213331
  /***/ }),
213397
213332
 
213398
213333
  /***/ 8047:
213399
- /***/ ((module, __unused_webpack_exports, __nested_webpack_require_812132__) => {
213334
+ /***/ ((module, __unused_webpack_exports, __nested_webpack_require_809056__) => {
213400
213335
 
213401
213336
  "use strict";
213402
213337
 
213403
213338
 
213404
213339
  /*eslint-disable no-use-before-define*/
213405
213340
 
213406
- var common = __nested_webpack_require_812132__(903);
213407
- var YAMLException = __nested_webpack_require_812132__(3237);
213408
- var DEFAULT_FULL_SCHEMA = __nested_webpack_require_812132__(9647);
213409
- var DEFAULT_SAFE_SCHEMA = __nested_webpack_require_812132__(596);
213341
+ var common = __nested_webpack_require_809056__(903);
213342
+ var YAMLException = __nested_webpack_require_809056__(3237);
213343
+ var DEFAULT_FULL_SCHEMA = __nested_webpack_require_809056__(9647);
213344
+ var DEFAULT_SAFE_SCHEMA = __nested_webpack_require_809056__(596);
213410
213345
 
213411
213346
  var _toString = Object.prototype.toString;
213412
213347
  var _hasOwnProperty = Object.prototype.hasOwnProperty;
@@ -214282,18 +214217,18 @@ module.exports = YAMLException;
214282
214217
  /***/ }),
214283
214218
 
214284
214219
  /***/ 4349:
214285
- /***/ ((module, __unused_webpack_exports, __nested_webpack_require_839836__) => {
214220
+ /***/ ((module, __unused_webpack_exports, __nested_webpack_require_836760__) => {
214286
214221
 
214287
214222
  "use strict";
214288
214223
 
214289
214224
 
214290
214225
  /*eslint-disable max-len,no-use-before-define*/
214291
214226
 
214292
- var common = __nested_webpack_require_839836__(903);
214293
- var YAMLException = __nested_webpack_require_839836__(3237);
214294
- var Mark = __nested_webpack_require_839836__(4926);
214295
- var DEFAULT_SAFE_SCHEMA = __nested_webpack_require_839836__(596);
214296
- var DEFAULT_FULL_SCHEMA = __nested_webpack_require_839836__(9647);
214227
+ var common = __nested_webpack_require_836760__(903);
214228
+ var YAMLException = __nested_webpack_require_836760__(3237);
214229
+ var Mark = __nested_webpack_require_836760__(4926);
214230
+ var DEFAULT_SAFE_SCHEMA = __nested_webpack_require_836760__(596);
214231
+ var DEFAULT_FULL_SCHEMA = __nested_webpack_require_836760__(9647);
214297
214232
 
214298
214233
 
214299
214234
  var _hasOwnProperty = Object.prototype.hasOwnProperty;
@@ -215915,13 +215850,13 @@ module.exports.safeLoad = safeLoad;
215915
215850
  /***/ }),
215916
215851
 
215917
215852
  /***/ 4926:
215918
- /***/ ((module, __unused_webpack_exports, __nested_webpack_require_883703__) => {
215853
+ /***/ ((module, __unused_webpack_exports, __nested_webpack_require_880627__) => {
215919
215854
 
215920
215855
  "use strict";
215921
215856
 
215922
215857
 
215923
215858
 
215924
- var common = __nested_webpack_require_883703__(903);
215859
+ var common = __nested_webpack_require_880627__(903);
215925
215860
 
215926
215861
 
215927
215862
  function Mark(name, buffer, position, line, column) {
@@ -215999,16 +215934,16 @@ module.exports = Mark;
215999
215934
  /***/ }),
216000
215935
 
216001
215936
  /***/ 6105:
216002
- /***/ ((module, __unused_webpack_exports, __nested_webpack_require_885365__) => {
215937
+ /***/ ((module, __unused_webpack_exports, __nested_webpack_require_882289__) => {
216003
215938
 
216004
215939
  "use strict";
216005
215940
 
216006
215941
 
216007
215942
  /*eslint-disable max-len*/
216008
215943
 
216009
- var common = __nested_webpack_require_885365__(903);
216010
- var YAMLException = __nested_webpack_require_885365__(3237);
216011
- var Type = __nested_webpack_require_885365__(6876);
215944
+ var common = __nested_webpack_require_882289__(903);
215945
+ var YAMLException = __nested_webpack_require_882289__(3237);
215946
+ var Type = __nested_webpack_require_882289__(6876);
216012
215947
 
216013
215948
 
216014
215949
  function compileList(schema, name, result) {
@@ -216115,7 +216050,7 @@ module.exports = Schema;
216115
216050
  /***/ }),
216116
216051
 
216117
216052
  /***/ 1112:
216118
- /***/ ((module, __unused_webpack_exports, __nested_webpack_require_888229__) => {
216053
+ /***/ ((module, __unused_webpack_exports, __nested_webpack_require_885153__) => {
216119
216054
 
216120
216055
  "use strict";
216121
216056
  // Standard YAML's Core schema.
@@ -216128,12 +216063,12 @@ module.exports = Schema;
216128
216063
 
216129
216064
 
216130
216065
 
216131
- var Schema = __nested_webpack_require_888229__(6105);
216066
+ var Schema = __nested_webpack_require_885153__(6105);
216132
216067
 
216133
216068
 
216134
216069
  module.exports = new Schema({
216135
216070
  include: [
216136
- __nested_webpack_require_888229__(1486)
216071
+ __nested_webpack_require_885153__(1486)
216137
216072
  ]
216138
216073
  });
216139
216074
 
@@ -216141,7 +216076,7 @@ module.exports = new Schema({
216141
216076
  /***/ }),
216142
216077
 
216143
216078
  /***/ 9647:
216144
- /***/ ((module, __unused_webpack_exports, __nested_webpack_require_888699__) => {
216079
+ /***/ ((module, __unused_webpack_exports, __nested_webpack_require_885623__) => {
216145
216080
 
216146
216081
  "use strict";
216147
216082
  // JS-YAML's default schema for `load` function.
@@ -216156,17 +216091,17 @@ module.exports = new Schema({
216156
216091
 
216157
216092
 
216158
216093
 
216159
- var Schema = __nested_webpack_require_888699__(6105);
216094
+ var Schema = __nested_webpack_require_885623__(6105);
216160
216095
 
216161
216096
 
216162
216097
  module.exports = Schema.DEFAULT = new Schema({
216163
216098
  include: [
216164
- __nested_webpack_require_888699__(596)
216099
+ __nested_webpack_require_885623__(596)
216165
216100
  ],
216166
216101
  explicit: [
216167
- __nested_webpack_require_888699__(5836),
216168
- __nested_webpack_require_888699__(6841),
216169
- __nested_webpack_require_888699__(8750)
216102
+ __nested_webpack_require_885623__(5836),
216103
+ __nested_webpack_require_885623__(6841),
216104
+ __nested_webpack_require_885623__(8750)
216170
216105
  ]
216171
216106
  });
216172
216107
 
@@ -216174,7 +216109,7 @@ module.exports = Schema.DEFAULT = new Schema({
216174
216109
  /***/ }),
216175
216110
 
216176
216111
  /***/ 596:
216177
- /***/ ((module, __unused_webpack_exports, __nested_webpack_require_889393__) => {
216112
+ /***/ ((module, __unused_webpack_exports, __nested_webpack_require_886317__) => {
216178
216113
 
216179
216114
  "use strict";
216180
216115
  // JS-YAML's default schema for `safeLoad` function.
@@ -216187,22 +216122,22 @@ module.exports = Schema.DEFAULT = new Schema({
216187
216122
 
216188
216123
 
216189
216124
 
216190
- var Schema = __nested_webpack_require_889393__(6105);
216125
+ var Schema = __nested_webpack_require_886317__(6105);
216191
216126
 
216192
216127
 
216193
216128
  module.exports = new Schema({
216194
216129
  include: [
216195
- __nested_webpack_require_889393__(1112)
216130
+ __nested_webpack_require_886317__(1112)
216196
216131
  ],
216197
216132
  implicit: [
216198
- __nested_webpack_require_889393__(7028),
216199
- __nested_webpack_require_889393__(7841)
216133
+ __nested_webpack_require_886317__(7028),
216134
+ __nested_webpack_require_886317__(7841)
216200
216135
  ],
216201
216136
  explicit: [
216202
- __nested_webpack_require_889393__(8675),
216203
- __nested_webpack_require_889393__(3498),
216204
- __nested_webpack_require_889393__(679),
216205
- __nested_webpack_require_889393__(7205)
216137
+ __nested_webpack_require_886317__(8675),
216138
+ __nested_webpack_require_886317__(3498),
216139
+ __nested_webpack_require_886317__(679),
216140
+ __nested_webpack_require_886317__(7205)
216206
216141
  ]
216207
216142
  });
216208
216143
 
@@ -216210,7 +216145,7 @@ module.exports = new Schema({
216210
216145
  /***/ }),
216211
216146
 
216212
216147
  /***/ 8441:
216213
- /***/ ((module, __unused_webpack_exports, __nested_webpack_require_890105__) => {
216148
+ /***/ ((module, __unused_webpack_exports, __nested_webpack_require_887029__) => {
216214
216149
 
216215
216150
  "use strict";
216216
216151
  // Standard YAML's Failsafe schema.
@@ -216220,14 +216155,14 @@ module.exports = new Schema({
216220
216155
 
216221
216156
 
216222
216157
 
216223
- var Schema = __nested_webpack_require_890105__(6105);
216158
+ var Schema = __nested_webpack_require_887029__(6105);
216224
216159
 
216225
216160
 
216226
216161
  module.exports = new Schema({
216227
216162
  explicit: [
216228
- __nested_webpack_require_890105__(5348),
216229
- __nested_webpack_require_890105__(7330),
216230
- __nested_webpack_require_890105__(293)
216163
+ __nested_webpack_require_887029__(5348),
216164
+ __nested_webpack_require_887029__(7330),
216165
+ __nested_webpack_require_887029__(293)
216231
216166
  ]
216232
216167
  });
216233
216168
 
@@ -216235,7 +216170,7 @@ module.exports = new Schema({
216235
216170
  /***/ }),
216236
216171
 
216237
216172
  /***/ 1486:
216238
- /***/ ((module, __unused_webpack_exports, __nested_webpack_require_890491__) => {
216173
+ /***/ ((module, __unused_webpack_exports, __nested_webpack_require_887415__) => {
216239
216174
 
216240
216175
  "use strict";
216241
216176
  // Standard YAML's JSON schema.
@@ -216249,18 +216184,18 @@ module.exports = new Schema({
216249
216184
 
216250
216185
 
216251
216186
 
216252
- var Schema = __nested_webpack_require_890491__(6105);
216187
+ var Schema = __nested_webpack_require_887415__(6105);
216253
216188
 
216254
216189
 
216255
216190
  module.exports = new Schema({
216256
216191
  include: [
216257
- __nested_webpack_require_890491__(8441)
216192
+ __nested_webpack_require_887415__(8441)
216258
216193
  ],
216259
216194
  implicit: [
216260
- __nested_webpack_require_890491__(9074),
216261
- __nested_webpack_require_890491__(4308),
216262
- __nested_webpack_require_890491__(1167),
216263
- __nested_webpack_require_890491__(7862)
216195
+ __nested_webpack_require_887415__(9074),
216196
+ __nested_webpack_require_887415__(4308),
216197
+ __nested_webpack_require_887415__(1167),
216198
+ __nested_webpack_require_887415__(7862)
216264
216199
  ]
216265
216200
  });
216266
216201
 
@@ -216268,12 +216203,12 @@ module.exports = new Schema({
216268
216203
  /***/ }),
216269
216204
 
216270
216205
  /***/ 6876:
216271
- /***/ ((module, __unused_webpack_exports, __nested_webpack_require_891189__) => {
216206
+ /***/ ((module, __unused_webpack_exports, __nested_webpack_require_888113__) => {
216272
216207
 
216273
216208
  "use strict";
216274
216209
 
216275
216210
 
216276
- var YAMLException = __nested_webpack_require_891189__(3237);
216211
+ var YAMLException = __nested_webpack_require_888113__(3237);
216277
216212
 
216278
216213
  var TYPE_CONSTRUCTOR_OPTIONS = [
216279
216214
  'kind',
@@ -216337,7 +216272,7 @@ module.exports = Type;
216337
216272
  /***/ }),
216338
216273
 
216339
216274
  /***/ 8675:
216340
- /***/ ((module, __unused_webpack_exports, __nested_webpack_require_892873__) => {
216275
+ /***/ ((module, __unused_webpack_exports, __nested_webpack_require_889797__) => {
216341
216276
 
216342
216277
  "use strict";
216343
216278
 
@@ -216352,7 +216287,7 @@ try {
216352
216287
  NodeBuffer = _require('buffer').Buffer;
216353
216288
  } catch (__) {}
216354
216289
 
216355
- var Type = __nested_webpack_require_892873__(6876);
216290
+ var Type = __nested_webpack_require_889797__(6876);
216356
216291
 
216357
216292
 
216358
216293
  // [ 64, 65, 66 ] -> [ padding, CR, LF ]
@@ -216483,12 +216418,12 @@ module.exports = new Type('tag:yaml.org,2002:binary', {
216483
216418
  /***/ }),
216484
216419
 
216485
216420
  /***/ 4308:
216486
- /***/ ((module, __unused_webpack_exports, __nested_webpack_require_896265__) => {
216421
+ /***/ ((module, __unused_webpack_exports, __nested_webpack_require_893189__) => {
216487
216422
 
216488
216423
  "use strict";
216489
216424
 
216490
216425
 
216491
- var Type = __nested_webpack_require_896265__(6876);
216426
+ var Type = __nested_webpack_require_893189__(6876);
216492
216427
 
216493
216428
  function resolveYamlBoolean(data) {
216494
216429
  if (data === null) return false;
@@ -216526,13 +216461,13 @@ module.exports = new Type('tag:yaml.org,2002:bool', {
216526
216461
  /***/ }),
216527
216462
 
216528
216463
  /***/ 7862:
216529
- /***/ ((module, __unused_webpack_exports, __nested_webpack_require_897338__) => {
216464
+ /***/ ((module, __unused_webpack_exports, __nested_webpack_require_894262__) => {
216530
216465
 
216531
216466
  "use strict";
216532
216467
 
216533
216468
 
216534
- var common = __nested_webpack_require_897338__(903);
216535
- var Type = __nested_webpack_require_897338__(6876);
216469
+ var common = __nested_webpack_require_894262__(903);
216470
+ var Type = __nested_webpack_require_894262__(6876);
216536
216471
 
216537
216472
  var YAML_FLOAT_PATTERN = new RegExp(
216538
216473
  // 2.5e4, 2.5 and integers
@@ -216650,13 +216585,13 @@ module.exports = new Type('tag:yaml.org,2002:float', {
216650
216585
  /***/ }),
216651
216586
 
216652
216587
  /***/ 1167:
216653
- /***/ ((module, __unused_webpack_exports, __nested_webpack_require_900284__) => {
216588
+ /***/ ((module, __unused_webpack_exports, __nested_webpack_require_897208__) => {
216654
216589
 
216655
216590
  "use strict";
216656
216591
 
216657
216592
 
216658
- var common = __nested_webpack_require_900284__(903);
216659
- var Type = __nested_webpack_require_900284__(6876);
216593
+ var common = __nested_webpack_require_897208__(903);
216594
+ var Type = __nested_webpack_require_897208__(6876);
216660
216595
 
216661
216596
  function isHexCode(c) {
216662
216597
  return ((0x30/* 0 */ <= c) && (c <= 0x39/* 9 */)) ||
@@ -216831,7 +216766,7 @@ module.exports = new Type('tag:yaml.org,2002:int', {
216831
216766
  /***/ }),
216832
216767
 
216833
216768
  /***/ 8750:
216834
- /***/ ((module, __unused_webpack_exports, __nested_webpack_require_904456__) => {
216769
+ /***/ ((module, __unused_webpack_exports, __nested_webpack_require_901380__) => {
216835
216770
 
216836
216771
  "use strict";
216837
216772
 
@@ -216854,7 +216789,7 @@ try {
216854
216789
  if (typeof window !== 'undefined') esprima = window.esprima;
216855
216790
  }
216856
216791
 
216857
- var Type = __nested_webpack_require_904456__(6876);
216792
+ var Type = __nested_webpack_require_901380__(6876);
216858
216793
 
216859
216794
  function resolveJavascriptFunction(data) {
216860
216795
  if (data === null) return false;
@@ -216931,12 +216866,12 @@ module.exports = new Type('tag:yaml.org,2002:js/function', {
216931
216866
  /***/ }),
216932
216867
 
216933
216868
  /***/ 6841:
216934
- /***/ ((module, __unused_webpack_exports, __nested_webpack_require_907353__) => {
216869
+ /***/ ((module, __unused_webpack_exports, __nested_webpack_require_904277__) => {
216935
216870
 
216936
216871
  "use strict";
216937
216872
 
216938
216873
 
216939
- var Type = __nested_webpack_require_907353__(6876);
216874
+ var Type = __nested_webpack_require_904277__(6876);
216940
216875
 
216941
216876
  function resolveJavascriptRegExp(data) {
216942
216877
  if (data === null) return false;
@@ -216999,12 +216934,12 @@ module.exports = new Type('tag:yaml.org,2002:js/regexp', {
216999
216934
  /***/ }),
217000
216935
 
217001
216936
  /***/ 5836:
217002
- /***/ ((module, __unused_webpack_exports, __nested_webpack_require_909024__) => {
216937
+ /***/ ((module, __unused_webpack_exports, __nested_webpack_require_905948__) => {
217003
216938
 
217004
216939
  "use strict";
217005
216940
 
217006
216941
 
217007
- var Type = __nested_webpack_require_909024__(6876);
216942
+ var Type = __nested_webpack_require_905948__(6876);
217008
216943
 
217009
216944
  function resolveJavascriptUndefined() {
217010
216945
  return true;
@@ -217035,12 +216970,12 @@ module.exports = new Type('tag:yaml.org,2002:js/undefined', {
217035
216970
  /***/ }),
217036
216971
 
217037
216972
  /***/ 293:
217038
- /***/ ((module, __unused_webpack_exports, __nested_webpack_require_909695__) => {
216973
+ /***/ ((module, __unused_webpack_exports, __nested_webpack_require_906619__) => {
217039
216974
 
217040
216975
  "use strict";
217041
216976
 
217042
216977
 
217043
- var Type = __nested_webpack_require_909695__(6876);
216978
+ var Type = __nested_webpack_require_906619__(6876);
217044
216979
 
217045
216980
  module.exports = new Type('tag:yaml.org,2002:map', {
217046
216981
  kind: 'mapping',
@@ -217051,12 +216986,12 @@ module.exports = new Type('tag:yaml.org,2002:map', {
217051
216986
  /***/ }),
217052
216987
 
217053
216988
  /***/ 7841:
217054
- /***/ ((module, __unused_webpack_exports, __nested_webpack_require_909987__) => {
216989
+ /***/ ((module, __unused_webpack_exports, __nested_webpack_require_906911__) => {
217055
216990
 
217056
216991
  "use strict";
217057
216992
 
217058
216993
 
217059
- var Type = __nested_webpack_require_909987__(6876);
216994
+ var Type = __nested_webpack_require_906911__(6876);
217060
216995
 
217061
216996
  function resolveYamlMerge(data) {
217062
216997
  return data === '<<' || data === null;
@@ -217071,12 +217006,12 @@ module.exports = new Type('tag:yaml.org,2002:merge', {
217071
217006
  /***/ }),
217072
217007
 
217073
217008
  /***/ 9074:
217074
- /***/ ((module, __unused_webpack_exports, __nested_webpack_require_910319__) => {
217009
+ /***/ ((module, __unused_webpack_exports, __nested_webpack_require_907243__) => {
217075
217010
 
217076
217011
  "use strict";
217077
217012
 
217078
217013
 
217079
- var Type = __nested_webpack_require_910319__(6876);
217014
+ var Type = __nested_webpack_require_907243__(6876);
217080
217015
 
217081
217016
  function resolveYamlNull(data) {
217082
217017
  if (data === null) return true;
@@ -217113,12 +217048,12 @@ module.exports = new Type('tag:yaml.org,2002:null', {
217113
217048
  /***/ }),
217114
217049
 
217115
217050
  /***/ 3498:
217116
- /***/ ((module, __unused_webpack_exports, __nested_webpack_require_911182__) => {
217051
+ /***/ ((module, __unused_webpack_exports, __nested_webpack_require_908106__) => {
217117
217052
 
217118
217053
  "use strict";
217119
217054
 
217120
217055
 
217121
- var Type = __nested_webpack_require_911182__(6876);
217056
+ var Type = __nested_webpack_require_908106__(6876);
217122
217057
 
217123
217058
  var _hasOwnProperty = Object.prototype.hasOwnProperty;
217124
217059
  var _toString = Object.prototype.toString;
@@ -217165,12 +217100,12 @@ module.exports = new Type('tag:yaml.org,2002:omap', {
217165
217100
  /***/ }),
217166
217101
 
217167
217102
  /***/ 679:
217168
- /***/ ((module, __unused_webpack_exports, __nested_webpack_require_912306__) => {
217103
+ /***/ ((module, __unused_webpack_exports, __nested_webpack_require_909230__) => {
217169
217104
 
217170
217105
  "use strict";
217171
217106
 
217172
217107
 
217173
- var Type = __nested_webpack_require_912306__(6876);
217108
+ var Type = __nested_webpack_require_909230__(6876);
217174
217109
 
217175
217110
  var _toString = Object.prototype.toString;
217176
217111
 
@@ -217226,12 +217161,12 @@ module.exports = new Type('tag:yaml.org,2002:pairs', {
217226
217161
  /***/ }),
217227
217162
 
217228
217163
  /***/ 7330:
217229
- /***/ ((module, __unused_webpack_exports, __nested_webpack_require_913492__) => {
217164
+ /***/ ((module, __unused_webpack_exports, __nested_webpack_require_910416__) => {
217230
217165
 
217231
217166
  "use strict";
217232
217167
 
217233
217168
 
217234
- var Type = __nested_webpack_require_913492__(6876);
217169
+ var Type = __nested_webpack_require_910416__(6876);
217235
217170
 
217236
217171
  module.exports = new Type('tag:yaml.org,2002:seq', {
217237
217172
  kind: 'sequence',
@@ -217242,12 +217177,12 @@ module.exports = new Type('tag:yaml.org,2002:seq', {
217242
217177
  /***/ }),
217243
217178
 
217244
217179
  /***/ 7205:
217245
- /***/ ((module, __unused_webpack_exports, __nested_webpack_require_913785__) => {
217180
+ /***/ ((module, __unused_webpack_exports, __nested_webpack_require_910709__) => {
217246
217181
 
217247
217182
  "use strict";
217248
217183
 
217249
217184
 
217250
- var Type = __nested_webpack_require_913785__(6876);
217185
+ var Type = __nested_webpack_require_910709__(6876);
217251
217186
 
217252
217187
  var _hasOwnProperty = Object.prototype.hasOwnProperty;
217253
217188
 
@@ -217279,12 +217214,12 @@ module.exports = new Type('tag:yaml.org,2002:set', {
217279
217214
  /***/ }),
217280
217215
 
217281
217216
  /***/ 5348:
217282
- /***/ ((module, __unused_webpack_exports, __nested_webpack_require_914434__) => {
217217
+ /***/ ((module, __unused_webpack_exports, __nested_webpack_require_911358__) => {
217283
217218
 
217284
217219
  "use strict";
217285
217220
 
217286
217221
 
217287
- var Type = __nested_webpack_require_914434__(6876);
217222
+ var Type = __nested_webpack_require_911358__(6876);
217288
217223
 
217289
217224
  module.exports = new Type('tag:yaml.org,2002:str', {
217290
217225
  kind: 'scalar',
@@ -217295,12 +217230,12 @@ module.exports = new Type('tag:yaml.org,2002:str', {
217295
217230
  /***/ }),
217296
217231
 
217297
217232
  /***/ 7028:
217298
- /***/ ((module, __unused_webpack_exports, __nested_webpack_require_914725__) => {
217233
+ /***/ ((module, __unused_webpack_exports, __nested_webpack_require_911649__) => {
217299
217234
 
217300
217235
  "use strict";
217301
217236
 
217302
217237
 
217303
- var Type = __nested_webpack_require_914725__(6876);
217238
+ var Type = __nested_webpack_require_911649__(6876);
217304
217239
 
217305
217240
  var YAML_DATE_REGEXP = new RegExp(
217306
217241
  '^([0-9][0-9][0-9][0-9])' + // [1] year
@@ -217391,7 +217326,7 @@ module.exports = new Type('tag:yaml.org,2002:timestamp', {
217391
217326
  /***/ }),
217392
217327
 
217393
217328
  /***/ 7276:
217394
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_917406__) {
217329
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_914330__) {
217395
217330
 
217396
217331
  "use strict";
217397
217332
 
@@ -217400,12 +217335,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
217400
217335
  };
217401
217336
  Object.defineProperty(exports, "__esModule", ({ value: true }));
217402
217337
  exports.updateRoutesManifest = exports.updateFunctionsManifest = exports.convertRuntimeToPlugin = void 0;
217403
- const fs_extra_1 = __importDefault(__nested_webpack_require_917406__(5392));
217404
- const path_1 = __nested_webpack_require_917406__(5622);
217405
- const glob_1 = __importDefault(__nested_webpack_require_917406__(4240));
217406
- const normalize_path_1 = __nested_webpack_require_917406__(6261);
217407
- const lambda_1 = __nested_webpack_require_917406__(6721);
217408
- const _1 = __nested_webpack_require_917406__(2855);
217338
+ const fs_extra_1 = __importDefault(__nested_webpack_require_914330__(5392));
217339
+ const path_1 = __nested_webpack_require_914330__(5622);
217340
+ const glob_1 = __importDefault(__nested_webpack_require_914330__(4240));
217341
+ const normalize_path_1 = __nested_webpack_require_914330__(6261);
217342
+ const lambda_1 = __nested_webpack_require_914330__(6721);
217343
+ const _1 = __nested_webpack_require_914330__(2855);
217409
217344
  // `.output` was already created by the Build Command, so we have
217410
217345
  // to ensure its contents don't get bundled into the Lambda. Similarily,
217411
217346
  // we don't want to bundle anything from `.vercel` either. Lastly,
@@ -217475,6 +217410,8 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
217475
217410
  await fs_extra_1.default.ensureDir(traceDir);
217476
217411
  let newPathsRuntime = new Set();
217477
217412
  let linkersRuntime = [];
217413
+ const entryDir = path_1.join('.output', 'server', 'pages');
217414
+ const entryRoot = path_1.join(workPath, entryDir);
217478
217415
  for (const entrypoint of Object.keys(entrypoints)) {
217479
217416
  const { output } = await buildRuntime({
217480
217417
  files: sourceFilesPreBuild,
@@ -217485,6 +217422,7 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
217485
217422
  },
217486
217423
  meta: {
217487
217424
  avoidTopLevelInstall: true,
217425
+ skipDownload: true,
217488
217426
  },
217489
217427
  });
217490
217428
  // Legacy Runtimes tend to pollute the `workPath` with compiled results,
@@ -217523,7 +217461,6 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
217523
217461
  throw new Error(`Could not find a handler file. Please ensure that \`files\` for the returned \`Lambda\` contains an \`FileFsRef\` named "${handlerFileBase}" with a valid \`fsPath\`.`);
217524
217462
  }
217525
217463
  const handlerExtName = path_1.extname(handlerFile.fsPath);
217526
- const entryRoot = path_1.join(workPath, '.output', 'server', 'pages');
217527
217464
  const entryBase = path_1.basename(entrypoint).replace(ext, handlerExtName);
217528
217465
  const entryPath = path_1.join(path_1.dirname(entrypoint), entryBase);
217529
217466
  const entry = path_1.join(entryRoot, entryPath);
@@ -217625,7 +217562,9 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
217625
217562
  version: 1,
217626
217563
  files: tracedFiles.map(file => ({
217627
217564
  input: normalize_path_1.normalizePath(path_1.relative(path_1.dirname(nft), file.absolutePath)),
217628
- output: normalize_path_1.normalizePath(file.relativePath),
217565
+ // We'd like to place all the dependency files right next
217566
+ // to the final launcher file inside of the Lambda.
217567
+ output: normalize_path_1.normalizePath(path_1.join(entryDir, 'api', file.relativePath)),
217629
217568
  })),
217630
217569
  });
217631
217570
  await fs_extra_1.default.ensureDir(path_1.dirname(nft));
@@ -217759,12 +217698,12 @@ exports.updateRoutesManifest = updateRoutesManifest;
217759
217698
  /***/ }),
217760
217699
 
217761
217700
  /***/ 1868:
217762
- /***/ ((__unused_webpack_module, exports, __nested_webpack_require_936452__) => {
217701
+ /***/ ((__unused_webpack_module, exports, __nested_webpack_require_933640__) => {
217763
217702
 
217764
217703
  "use strict";
217765
217704
 
217766
217705
  Object.defineProperty(exports, "__esModule", ({ value: true }));
217767
- const _1 = __nested_webpack_require_936452__(2855);
217706
+ const _1 = __nested_webpack_require_933640__(2855);
217768
217707
  function debug(message, ...additional) {
217769
217708
  if (_1.getPlatformEnv('BUILDER_DEBUG')) {
217770
217709
  console.log(message, ...additional);
@@ -217776,7 +217715,7 @@ exports.default = debug;
217776
217715
  /***/ }),
217777
217716
 
217778
217717
  /***/ 4246:
217779
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_936837__) {
217718
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_934025__) {
217780
217719
 
217781
217720
  "use strict";
217782
217721
 
@@ -217785,11 +217724,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
217785
217724
  };
217786
217725
  Object.defineProperty(exports, "__esModule", ({ value: true }));
217787
217726
  exports.detectBuilders = exports.detectOutputDirectory = exports.detectApiDirectory = exports.detectApiExtensions = exports.sortFiles = void 0;
217788
- const minimatch_1 = __importDefault(__nested_webpack_require_936837__(9566));
217789
- const semver_1 = __nested_webpack_require_936837__(2879);
217790
- const path_1 = __nested_webpack_require_936837__(5622);
217791
- const frameworks_1 = __importDefault(__nested_webpack_require_936837__(8438));
217792
- const _1 = __nested_webpack_require_936837__(2855);
217727
+ const minimatch_1 = __importDefault(__nested_webpack_require_934025__(9566));
217728
+ const semver_1 = __nested_webpack_require_934025__(2879);
217729
+ const path_1 = __nested_webpack_require_934025__(5622);
217730
+ const frameworks_1 = __importDefault(__nested_webpack_require_934025__(8438));
217731
+ const _1 = __nested_webpack_require_934025__(2855);
217793
217732
  const slugToFramework = new Map(frameworks_1.default.map(f => [f.slug, f]));
217794
217733
  // We need to sort the file paths by alphabet to make
217795
217734
  // sure the routes stay in the same order e.g. for deduping
@@ -218848,7 +218787,7 @@ function getSuggestion(topLevelProp, additionalProperty) {
218848
218787
  /***/ }),
218849
218788
 
218850
218789
  /***/ 2397:
218851
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_976221__) {
218790
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_973409__) {
218852
218791
 
218853
218792
  "use strict";
218854
218793
 
@@ -218856,8 +218795,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
218856
218795
  return (mod && mod.__esModule) ? mod : { "default": mod };
218857
218796
  };
218858
218797
  Object.defineProperty(exports, "__esModule", ({ value: true }));
218859
- const assert_1 = __importDefault(__nested_webpack_require_976221__(2357));
218860
- const into_stream_1 = __importDefault(__nested_webpack_require_976221__(6130));
218798
+ const assert_1 = __importDefault(__nested_webpack_require_973409__(2357));
218799
+ const into_stream_1 = __importDefault(__nested_webpack_require_973409__(6130));
218861
218800
  class FileBlob {
218862
218801
  constructor({ mode = 0o100644, contentType, data }) {
218863
218802
  assert_1.default(typeof mode === 'number');
@@ -218889,7 +218828,7 @@ exports.default = FileBlob;
218889
218828
  /***/ }),
218890
218829
 
218891
218830
  /***/ 9331:
218892
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_977673__) {
218831
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_974861__) {
218893
218832
 
218894
218833
  "use strict";
218895
218834
 
@@ -218897,11 +218836,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
218897
218836
  return (mod && mod.__esModule) ? mod : { "default": mod };
218898
218837
  };
218899
218838
  Object.defineProperty(exports, "__esModule", ({ value: true }));
218900
- const assert_1 = __importDefault(__nested_webpack_require_977673__(2357));
218901
- const fs_extra_1 = __importDefault(__nested_webpack_require_977673__(5392));
218902
- const multistream_1 = __importDefault(__nested_webpack_require_977673__(8179));
218903
- const path_1 = __importDefault(__nested_webpack_require_977673__(5622));
218904
- const async_sema_1 = __importDefault(__nested_webpack_require_977673__(5758));
218839
+ const assert_1 = __importDefault(__nested_webpack_require_974861__(2357));
218840
+ const fs_extra_1 = __importDefault(__nested_webpack_require_974861__(5392));
218841
+ const multistream_1 = __importDefault(__nested_webpack_require_974861__(8179));
218842
+ const path_1 = __importDefault(__nested_webpack_require_974861__(5622));
218843
+ const async_sema_1 = __importDefault(__nested_webpack_require_974861__(5758));
218905
218844
  const semaToPreventEMFILE = new async_sema_1.default(20);
218906
218845
  class FileFsRef {
218907
218846
  constructor({ mode = 0o100644, contentType, fsPath }) {
@@ -218967,7 +218906,7 @@ exports.default = FileFsRef;
218967
218906
  /***/ }),
218968
218907
 
218969
218908
  /***/ 5187:
218970
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_980477__) {
218909
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_977665__) {
218971
218910
 
218972
218911
  "use strict";
218973
218912
 
@@ -218975,11 +218914,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
218975
218914
  return (mod && mod.__esModule) ? mod : { "default": mod };
218976
218915
  };
218977
218916
  Object.defineProperty(exports, "__esModule", ({ value: true }));
218978
- const assert_1 = __importDefault(__nested_webpack_require_980477__(2357));
218979
- const node_fetch_1 = __importDefault(__nested_webpack_require_980477__(2197));
218980
- const multistream_1 = __importDefault(__nested_webpack_require_980477__(8179));
218981
- const async_retry_1 = __importDefault(__nested_webpack_require_980477__(3691));
218982
- const async_sema_1 = __importDefault(__nested_webpack_require_980477__(5758));
218917
+ const assert_1 = __importDefault(__nested_webpack_require_977665__(2357));
218918
+ const node_fetch_1 = __importDefault(__nested_webpack_require_977665__(2197));
218919
+ const multistream_1 = __importDefault(__nested_webpack_require_977665__(8179));
218920
+ const async_retry_1 = __importDefault(__nested_webpack_require_977665__(3691));
218921
+ const async_sema_1 = __importDefault(__nested_webpack_require_977665__(5758));
218983
218922
  const semaToDownloadFromS3 = new async_sema_1.default(5);
218984
218923
  class BailableError extends Error {
218985
218924
  constructor(...args) {
@@ -219060,7 +218999,7 @@ exports.default = FileRef;
219060
218999
  /***/ }),
219061
219000
 
219062
219001
  /***/ 1611:
219063
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_983878__) {
219002
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_981066__) {
219064
219003
 
219065
219004
  "use strict";
219066
219005
 
@@ -219069,10 +219008,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219069
219008
  };
219070
219009
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219071
219010
  exports.isSymbolicLink = void 0;
219072
- const path_1 = __importDefault(__nested_webpack_require_983878__(5622));
219073
- const debug_1 = __importDefault(__nested_webpack_require_983878__(1868));
219074
- const file_fs_ref_1 = __importDefault(__nested_webpack_require_983878__(9331));
219075
- const fs_extra_1 = __nested_webpack_require_983878__(5392);
219011
+ const path_1 = __importDefault(__nested_webpack_require_981066__(5622));
219012
+ const debug_1 = __importDefault(__nested_webpack_require_981066__(1868));
219013
+ const file_fs_ref_1 = __importDefault(__nested_webpack_require_981066__(9331));
219014
+ const fs_extra_1 = __nested_webpack_require_981066__(5392);
219076
219015
  const S_IFMT = 61440; /* 0170000 type of file */
219077
219016
  const S_IFLNK = 40960; /* 0120000 symbolic link */
219078
219017
  function isSymbolicLink(mode) {
@@ -219134,14 +219073,14 @@ exports.default = download;
219134
219073
  /***/ }),
219135
219074
 
219136
219075
  /***/ 3838:
219137
- /***/ ((__unused_webpack_module, exports, __nested_webpack_require_986703__) => {
219076
+ /***/ ((__unused_webpack_module, exports, __nested_webpack_require_983891__) => {
219138
219077
 
219139
219078
  "use strict";
219140
219079
 
219141
219080
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219142
- const path_1 = __nested_webpack_require_986703__(5622);
219143
- const os_1 = __nested_webpack_require_986703__(2087);
219144
- const fs_extra_1 = __nested_webpack_require_986703__(5392);
219081
+ const path_1 = __nested_webpack_require_983891__(5622);
219082
+ const os_1 = __nested_webpack_require_983891__(2087);
219083
+ const fs_extra_1 = __nested_webpack_require_983891__(5392);
219145
219084
  async function getWritableDirectory() {
219146
219085
  const name = Math.floor(Math.random() * 0x7fffffff).toString(16);
219147
219086
  const directory = path_1.join(os_1.tmpdir(), name);
@@ -219154,7 +219093,7 @@ exports.default = getWritableDirectory;
219154
219093
  /***/ }),
219155
219094
 
219156
219095
  /***/ 4240:
219157
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_987283__) {
219096
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_984471__) {
219158
219097
 
219159
219098
  "use strict";
219160
219099
 
@@ -219162,13 +219101,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219162
219101
  return (mod && mod.__esModule) ? mod : { "default": mod };
219163
219102
  };
219164
219103
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219165
- const path_1 = __importDefault(__nested_webpack_require_987283__(5622));
219166
- const assert_1 = __importDefault(__nested_webpack_require_987283__(2357));
219167
- const glob_1 = __importDefault(__nested_webpack_require_987283__(1104));
219168
- const util_1 = __nested_webpack_require_987283__(1669);
219169
- const fs_extra_1 = __nested_webpack_require_987283__(5392);
219170
- const normalize_path_1 = __nested_webpack_require_987283__(6261);
219171
- const file_fs_ref_1 = __importDefault(__nested_webpack_require_987283__(9331));
219104
+ const path_1 = __importDefault(__nested_webpack_require_984471__(5622));
219105
+ const assert_1 = __importDefault(__nested_webpack_require_984471__(2357));
219106
+ const glob_1 = __importDefault(__nested_webpack_require_984471__(1104));
219107
+ const util_1 = __nested_webpack_require_984471__(1669);
219108
+ const fs_extra_1 = __nested_webpack_require_984471__(5392);
219109
+ const normalize_path_1 = __nested_webpack_require_984471__(6261);
219110
+ const file_fs_ref_1 = __importDefault(__nested_webpack_require_984471__(9331));
219172
219111
  const vanillaGlob = util_1.promisify(glob_1.default);
219173
219112
  async function glob(pattern, opts, mountpoint) {
219174
219113
  let options;
@@ -219214,7 +219153,7 @@ exports.default = glob;
219214
219153
  /***/ }),
219215
219154
 
219216
219155
  /***/ 7903:
219217
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_989479__) {
219156
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_986667__) {
219218
219157
 
219219
219158
  "use strict";
219220
219159
 
@@ -219223,9 +219162,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219223
219162
  };
219224
219163
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219225
219164
  exports.getSupportedNodeVersion = exports.getDiscontinuedNodeVersions = exports.getLatestNodeVersion = void 0;
219226
- const semver_1 = __nested_webpack_require_989479__(2879);
219227
- const errors_1 = __nested_webpack_require_989479__(3983);
219228
- const debug_1 = __importDefault(__nested_webpack_require_989479__(1868));
219165
+ const semver_1 = __nested_webpack_require_986667__(2879);
219166
+ const errors_1 = __nested_webpack_require_986667__(3983);
219167
+ const debug_1 = __importDefault(__nested_webpack_require_986667__(1868));
219229
219168
  const allOptions = [
219230
219169
  { major: 14, range: '14.x', runtime: 'nodejs14.x' },
219231
219170
  { major: 12, range: '12.x', runtime: 'nodejs12.x' },
@@ -219319,7 +219258,7 @@ exports.normalizePath = normalizePath;
219319
219258
  /***/ }),
219320
219259
 
219321
219260
  /***/ 7792:
219322
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_993347__) {
219261
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_990535__) {
219323
219262
 
219324
219263
  "use strict";
219325
219264
 
@@ -219328,9 +219267,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219328
219267
  };
219329
219268
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219330
219269
  exports.readConfigFile = void 0;
219331
- const js_yaml_1 = __importDefault(__nested_webpack_require_993347__(6540));
219332
- const toml_1 = __importDefault(__nested_webpack_require_993347__(9434));
219333
- const fs_extra_1 = __nested_webpack_require_993347__(5392);
219270
+ const js_yaml_1 = __importDefault(__nested_webpack_require_990535__(6540));
219271
+ const toml_1 = __importDefault(__nested_webpack_require_990535__(9434));
219272
+ const fs_extra_1 = __nested_webpack_require_990535__(5392);
219334
219273
  async function readFileOrNull(file) {
219335
219274
  try {
219336
219275
  const data = await fs_extra_1.readFile(file);
@@ -219385,7 +219324,7 @@ exports.default = rename;
219385
219324
  /***/ }),
219386
219325
 
219387
219326
  /***/ 1442:
219388
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_995140__) {
219327
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_992328__) {
219389
219328
 
219390
219329
  "use strict";
219391
219330
 
@@ -219394,14 +219333,14 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219394
219333
  };
219395
219334
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219396
219335
  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;
219397
- const assert_1 = __importDefault(__nested_webpack_require_995140__(2357));
219398
- const fs_extra_1 = __importDefault(__nested_webpack_require_995140__(5392));
219399
- const path_1 = __importDefault(__nested_webpack_require_995140__(5622));
219400
- const debug_1 = __importDefault(__nested_webpack_require_995140__(1868));
219401
- const cross_spawn_1 = __importDefault(__nested_webpack_require_995140__(7618));
219402
- const util_1 = __nested_webpack_require_995140__(1669);
219403
- const errors_1 = __nested_webpack_require_995140__(3983);
219404
- const node_version_1 = __nested_webpack_require_995140__(7903);
219336
+ const assert_1 = __importDefault(__nested_webpack_require_992328__(2357));
219337
+ const fs_extra_1 = __importDefault(__nested_webpack_require_992328__(5392));
219338
+ const path_1 = __importDefault(__nested_webpack_require_992328__(5622));
219339
+ const debug_1 = __importDefault(__nested_webpack_require_992328__(1868));
219340
+ const cross_spawn_1 = __importDefault(__nested_webpack_require_992328__(7618));
219341
+ const util_1 = __nested_webpack_require_992328__(1669);
219342
+ const errors_1 = __nested_webpack_require_992328__(3983);
219343
+ const node_version_1 = __nested_webpack_require_992328__(7903);
219405
219344
  function spawnAsync(command, args, opts = {}) {
219406
219345
  return new Promise((resolve, reject) => {
219407
219346
  const stderrLogs = [];
@@ -219712,7 +219651,7 @@ exports.installDependencies = util_1.deprecate(runNpmInstall, 'installDependenci
219712
219651
  /***/ }),
219713
219652
 
219714
219653
  /***/ 2560:
219715
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1009130__) {
219654
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1006318__) {
219716
219655
 
219717
219656
  "use strict";
219718
219657
 
@@ -219720,7 +219659,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219720
219659
  return (mod && mod.__esModule) ? mod : { "default": mod };
219721
219660
  };
219722
219661
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219723
- const end_of_stream_1 = __importDefault(__nested_webpack_require_1009130__(687));
219662
+ const end_of_stream_1 = __importDefault(__nested_webpack_require_1006318__(687));
219724
219663
  function streamToBuffer(stream) {
219725
219664
  return new Promise((resolve, reject) => {
219726
219665
  const buffers = [];
@@ -219749,7 +219688,7 @@ exports.default = streamToBuffer;
219749
219688
  /***/ }),
219750
219689
 
219751
219690
  /***/ 1148:
219752
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1010198__) {
219691
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1007386__) {
219753
219692
 
219754
219693
  "use strict";
219755
219694
 
@@ -219757,9 +219696,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219757
219696
  return (mod && mod.__esModule) ? mod : { "default": mod };
219758
219697
  };
219759
219698
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219760
- const path_1 = __importDefault(__nested_webpack_require_1010198__(5622));
219761
- const fs_extra_1 = __importDefault(__nested_webpack_require_1010198__(5392));
219762
- const ignore_1 = __importDefault(__nested_webpack_require_1010198__(3556));
219699
+ const path_1 = __importDefault(__nested_webpack_require_1007386__(5622));
219700
+ const fs_extra_1 = __importDefault(__nested_webpack_require_1007386__(5392));
219701
+ const ignore_1 = __importDefault(__nested_webpack_require_1007386__(3556));
219763
219702
  function isCodedError(error) {
219764
219703
  return (error !== null &&
219765
219704
  error !== undefined &&
@@ -219816,7 +219755,7 @@ exports.default = default_1;
219816
219755
  /***/ }),
219817
219756
 
219818
219757
  /***/ 2855:
219819
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1012580__) {
219758
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1009768__) {
219820
219759
 
219821
219760
  "use strict";
219822
219761
 
@@ -219847,29 +219786,29 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219847
219786
  };
219848
219787
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219849
219788
  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;
219850
- const crypto_1 = __nested_webpack_require_1012580__(6417);
219851
- const file_blob_1 = __importDefault(__nested_webpack_require_1012580__(2397));
219789
+ const crypto_1 = __nested_webpack_require_1009768__(6417);
219790
+ const file_blob_1 = __importDefault(__nested_webpack_require_1009768__(2397));
219852
219791
  exports.FileBlob = file_blob_1.default;
219853
- const file_fs_ref_1 = __importDefault(__nested_webpack_require_1012580__(9331));
219792
+ const file_fs_ref_1 = __importDefault(__nested_webpack_require_1009768__(9331));
219854
219793
  exports.FileFsRef = file_fs_ref_1.default;
219855
- const file_ref_1 = __importDefault(__nested_webpack_require_1012580__(5187));
219794
+ const file_ref_1 = __importDefault(__nested_webpack_require_1009768__(5187));
219856
219795
  exports.FileRef = file_ref_1.default;
219857
- const lambda_1 = __nested_webpack_require_1012580__(6721);
219796
+ const lambda_1 = __nested_webpack_require_1009768__(6721);
219858
219797
  Object.defineProperty(exports, "Lambda", ({ enumerable: true, get: function () { return lambda_1.Lambda; } }));
219859
219798
  Object.defineProperty(exports, "createLambda", ({ enumerable: true, get: function () { return lambda_1.createLambda; } }));
219860
219799
  Object.defineProperty(exports, "getLambdaOptionsFromFunction", ({ enumerable: true, get: function () { return lambda_1.getLambdaOptionsFromFunction; } }));
219861
- const prerender_1 = __nested_webpack_require_1012580__(2850);
219800
+ const prerender_1 = __nested_webpack_require_1009768__(2850);
219862
219801
  Object.defineProperty(exports, "Prerender", ({ enumerable: true, get: function () { return prerender_1.Prerender; } }));
219863
- const download_1 = __importStar(__nested_webpack_require_1012580__(1611));
219802
+ const download_1 = __importStar(__nested_webpack_require_1009768__(1611));
219864
219803
  exports.download = download_1.default;
219865
219804
  Object.defineProperty(exports, "isSymbolicLink", ({ enumerable: true, get: function () { return download_1.isSymbolicLink; } }));
219866
- const get_writable_directory_1 = __importDefault(__nested_webpack_require_1012580__(3838));
219805
+ const get_writable_directory_1 = __importDefault(__nested_webpack_require_1009768__(3838));
219867
219806
  exports.getWriteableDirectory = get_writable_directory_1.default;
219868
- const glob_1 = __importDefault(__nested_webpack_require_1012580__(4240));
219807
+ const glob_1 = __importDefault(__nested_webpack_require_1009768__(4240));
219869
219808
  exports.glob = glob_1.default;
219870
- const rename_1 = __importDefault(__nested_webpack_require_1012580__(6718));
219809
+ const rename_1 = __importDefault(__nested_webpack_require_1009768__(6718));
219871
219810
  exports.rename = rename_1.default;
219872
- const run_user_scripts_1 = __nested_webpack_require_1012580__(1442);
219811
+ const run_user_scripts_1 = __nested_webpack_require_1009768__(1442);
219873
219812
  Object.defineProperty(exports, "execAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.execAsync; } }));
219874
219813
  Object.defineProperty(exports, "spawnAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.spawnAsync; } }));
219875
219814
  Object.defineProperty(exports, "execCommand", ({ enumerable: true, get: function () { return run_user_scripts_1.execCommand; } }));
@@ -219886,38 +219825,38 @@ Object.defineProperty(exports, "getNodeVersion", ({ enumerable: true, get: funct
219886
219825
  Object.defineProperty(exports, "getSpawnOptions", ({ enumerable: true, get: function () { return run_user_scripts_1.getSpawnOptions; } }));
219887
219826
  Object.defineProperty(exports, "getNodeBinPath", ({ enumerable: true, get: function () { return run_user_scripts_1.getNodeBinPath; } }));
219888
219827
  Object.defineProperty(exports, "scanParentDirs", ({ enumerable: true, get: function () { return run_user_scripts_1.scanParentDirs; } }));
219889
- const node_version_1 = __nested_webpack_require_1012580__(7903);
219828
+ const node_version_1 = __nested_webpack_require_1009768__(7903);
219890
219829
  Object.defineProperty(exports, "getLatestNodeVersion", ({ enumerable: true, get: function () { return node_version_1.getLatestNodeVersion; } }));
219891
219830
  Object.defineProperty(exports, "getDiscontinuedNodeVersions", ({ enumerable: true, get: function () { return node_version_1.getDiscontinuedNodeVersions; } }));
219892
- const errors_1 = __nested_webpack_require_1012580__(3983);
219893
- const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1012580__(2560));
219831
+ const errors_1 = __nested_webpack_require_1009768__(3983);
219832
+ const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1009768__(2560));
219894
219833
  exports.streamToBuffer = stream_to_buffer_1.default;
219895
- const should_serve_1 = __importDefault(__nested_webpack_require_1012580__(2564));
219834
+ const should_serve_1 = __importDefault(__nested_webpack_require_1009768__(2564));
219896
219835
  exports.shouldServe = should_serve_1.default;
219897
- const debug_1 = __importDefault(__nested_webpack_require_1012580__(1868));
219836
+ const debug_1 = __importDefault(__nested_webpack_require_1009768__(1868));
219898
219837
  exports.debug = debug_1.default;
219899
- const get_ignore_filter_1 = __importDefault(__nested_webpack_require_1012580__(1148));
219838
+ const get_ignore_filter_1 = __importDefault(__nested_webpack_require_1009768__(1148));
219900
219839
  exports.getIgnoreFilter = get_ignore_filter_1.default;
219901
- var detect_builders_1 = __nested_webpack_require_1012580__(4246);
219840
+ var detect_builders_1 = __nested_webpack_require_1009768__(4246);
219902
219841
  Object.defineProperty(exports, "detectBuilders", ({ enumerable: true, get: function () { return detect_builders_1.detectBuilders; } }));
219903
219842
  Object.defineProperty(exports, "detectOutputDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectOutputDirectory; } }));
219904
219843
  Object.defineProperty(exports, "detectApiDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectApiDirectory; } }));
219905
219844
  Object.defineProperty(exports, "detectApiExtensions", ({ enumerable: true, get: function () { return detect_builders_1.detectApiExtensions; } }));
219906
- var detect_framework_1 = __nested_webpack_require_1012580__(5224);
219845
+ var detect_framework_1 = __nested_webpack_require_1009768__(5224);
219907
219846
  Object.defineProperty(exports, "detectFramework", ({ enumerable: true, get: function () { return detect_framework_1.detectFramework; } }));
219908
- var filesystem_1 = __nested_webpack_require_1012580__(461);
219847
+ var filesystem_1 = __nested_webpack_require_1009768__(461);
219909
219848
  Object.defineProperty(exports, "DetectorFilesystem", ({ enumerable: true, get: function () { return filesystem_1.DetectorFilesystem; } }));
219910
- var read_config_file_1 = __nested_webpack_require_1012580__(7792);
219849
+ var read_config_file_1 = __nested_webpack_require_1009768__(7792);
219911
219850
  Object.defineProperty(exports, "readConfigFile", ({ enumerable: true, get: function () { return read_config_file_1.readConfigFile; } }));
219912
- var normalize_path_1 = __nested_webpack_require_1012580__(6261);
219851
+ var normalize_path_1 = __nested_webpack_require_1009768__(6261);
219913
219852
  Object.defineProperty(exports, "normalizePath", ({ enumerable: true, get: function () { return normalize_path_1.normalizePath; } }));
219914
- var convert_runtime_to_plugin_1 = __nested_webpack_require_1012580__(7276);
219853
+ var convert_runtime_to_plugin_1 = __nested_webpack_require_1009768__(7276);
219915
219854
  Object.defineProperty(exports, "convertRuntimeToPlugin", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.convertRuntimeToPlugin; } }));
219916
219855
  Object.defineProperty(exports, "updateFunctionsManifest", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.updateFunctionsManifest; } }));
219917
219856
  Object.defineProperty(exports, "updateRoutesManifest", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.updateRoutesManifest; } }));
219918
- __exportStar(__nested_webpack_require_1012580__(2416), exports);
219919
- __exportStar(__nested_webpack_require_1012580__(5748), exports);
219920
- __exportStar(__nested_webpack_require_1012580__(3983), exports);
219857
+ __exportStar(__nested_webpack_require_1009768__(2416), exports);
219858
+ __exportStar(__nested_webpack_require_1009768__(5748), exports);
219859
+ __exportStar(__nested_webpack_require_1009768__(3983), exports);
219921
219860
  /**
219922
219861
  * Helper function to support both `@vercel` and legacy `@now` official Runtimes.
219923
219862
  */
@@ -219970,7 +219909,7 @@ exports.getInputHash = getInputHash;
219970
219909
  /***/ }),
219971
219910
 
219972
219911
  /***/ 6721:
219973
- /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1023558__) {
219912
+ /***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1020746__) {
219974
219913
 
219975
219914
  "use strict";
219976
219915
 
@@ -219979,13 +219918,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
219979
219918
  };
219980
219919
  Object.defineProperty(exports, "__esModule", ({ value: true }));
219981
219920
  exports.getLambdaOptionsFromFunction = exports.createZip = exports.createLambda = exports.Lambda = exports.FILES_SYMBOL = void 0;
219982
- const assert_1 = __importDefault(__nested_webpack_require_1023558__(2357));
219983
- const async_sema_1 = __importDefault(__nested_webpack_require_1023558__(5758));
219984
- const yazl_1 = __nested_webpack_require_1023558__(1223);
219985
- const minimatch_1 = __importDefault(__nested_webpack_require_1023558__(9566));
219986
- const fs_extra_1 = __nested_webpack_require_1023558__(5392);
219987
- const download_1 = __nested_webpack_require_1023558__(1611);
219988
- const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1023558__(2560));
219921
+ const assert_1 = __importDefault(__nested_webpack_require_1020746__(2357));
219922
+ const async_sema_1 = __importDefault(__nested_webpack_require_1020746__(5758));
219923
+ const yazl_1 = __nested_webpack_require_1020746__(1223);
219924
+ const minimatch_1 = __importDefault(__nested_webpack_require_1020746__(9566));
219925
+ const fs_extra_1 = __nested_webpack_require_1020746__(5392);
219926
+ const download_1 = __nested_webpack_require_1020746__(1611);
219927
+ const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1020746__(2560));
219989
219928
  exports.FILES_SYMBOL = Symbol('files');
219990
219929
  class Lambda {
219991
219930
  constructor({ zipBuffer, handler, runtime, maxDuration, memory, environment, allowQuery, regions, }) {
@@ -220214,12 +220153,12 @@ exports.buildsSchema = {
220214
220153
  /***/ }),
220215
220154
 
220216
220155
  /***/ 2564:
220217
- /***/ ((__unused_webpack_module, exports, __nested_webpack_require_1032068__) => {
220156
+ /***/ ((__unused_webpack_module, exports, __nested_webpack_require_1029256__) => {
220218
220157
 
220219
220158
  "use strict";
220220
220159
 
220221
220160
  Object.defineProperty(exports, "__esModule", ({ value: true }));
220222
- const path_1 = __nested_webpack_require_1032068__(5622);
220161
+ const path_1 = __nested_webpack_require_1029256__(5622);
220223
220162
  function shouldServe({ entrypoint, files, requestPath, }) {
220224
220163
  requestPath = requestPath.replace(/\/$/, ''); // sanitize trailing '/'
220225
220164
  entrypoint = entrypoint.replace(/\\/, '/'); // windows compatibility
@@ -220456,7 +220395,7 @@ module.exports = __webpack_require__(78761);
220456
220395
  /******/ var __webpack_module_cache__ = {};
220457
220396
  /******/
220458
220397
  /******/ // The require function
220459
- /******/ function __nested_webpack_require_1131803__(moduleId) {
220398
+ /******/ function __nested_webpack_require_1128991__(moduleId) {
220460
220399
  /******/ // Check if module is in cache
220461
220400
  /******/ if(__webpack_module_cache__[moduleId]) {
220462
220401
  /******/ return __webpack_module_cache__[moduleId].exports;
@@ -220471,7 +220410,7 @@ module.exports = __webpack_require__(78761);
220471
220410
  /******/ // Execute the module function
220472
220411
  /******/ var threw = true;
220473
220412
  /******/ try {
220474
- /******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __nested_webpack_require_1131803__);
220413
+ /******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __nested_webpack_require_1128991__);
220475
220414
  /******/ threw = false;
220476
220415
  /******/ } finally {
220477
220416
  /******/ if(threw) delete __webpack_module_cache__[moduleId];
@@ -220484,11 +220423,11 @@ module.exports = __webpack_require__(78761);
220484
220423
  /************************************************************************/
220485
220424
  /******/ /* webpack/runtime/compat */
220486
220425
  /******/
220487
- /******/ __nested_webpack_require_1131803__.ab = __dirname + "/";/************************************************************************/
220426
+ /******/ __nested_webpack_require_1128991__.ab = __dirname + "/";/************************************************************************/
220488
220427
  /******/ // module exports must be returned from runtime so entry inlining is disabled
220489
220428
  /******/ // startup
220490
220429
  /******/ // Load entry module and return exports
220491
- /******/ return __nested_webpack_require_1131803__(2855);
220430
+ /******/ return __nested_webpack_require_1128991__(2855);
220492
220431
  /******/ })()
220493
220432
  ;
220494
220433
 
@@ -242788,7 +242727,6 @@ exports.frameworks = [
242788
242727
  },
242789
242728
  dependency: 'gatsby',
242790
242729
  getOutputDirName: async () => 'public',
242791
- getFsOutputDir: async () => 'public',
242792
242730
  defaultRoutes: async (dirPrefix) => {
242793
242731
  // This file could be generated by gatsby-plugin-now or gatsby-plugin-zeit-now
242794
242732
  try {
@@ -242869,7 +242807,6 @@ exports.frameworks = [
242869
242807
  },
242870
242808
  },
242871
242809
  dependency: 'remix',
242872
- getFsOutputDir: async () => 'public',
242873
242810
  getOutputDirName: async () => 'public',
242874
242811
  defaultRoutes: [
242875
242812
  {
@@ -242897,10 +242834,13 @@ exports.frameworks = [
242897
242834
  source: '/build/(.*)',
242898
242835
  regex: '/build/(.*)',
242899
242836
  headers: [
242900
- { key: 'cache-control', value: 'public, max-age=31536000, immutable' },
242837
+ {
242838
+ key: 'cache-control',
242839
+ value: 'public, max-age=31536000, immutable',
242840
+ },
242901
242841
  ],
242902
242842
  },
242903
- ]
242843
+ ],
242904
242844
  },
242905
242845
  {
242906
242846
  name: 'Hexo',
@@ -242935,7 +242875,6 @@ exports.frameworks = [
242935
242875
  },
242936
242876
  },
242937
242877
  dependency: 'hexo',
242938
- getFsOutputDir: async () => 'public',
242939
242878
  getOutputDirName: async () => 'public',
242940
242879
  },
242941
242880
  {
@@ -242971,7 +242910,6 @@ exports.frameworks = [
242971
242910
  },
242972
242911
  },
242973
242912
  dependency: '@11ty/eleventy',
242974
- getFsOutputDir: async () => '_site',
242975
242913
  getOutputDirName: async () => '_site',
242976
242914
  cachePattern: '.cache/**',
242977
242915
  },
@@ -243008,21 +242946,6 @@ exports.frameworks = [
243008
242946
  },
243009
242947
  },
243010
242948
  dependency: '@docusaurus/core',
243011
- getFsOutputDir: async (dirPrefix) => {
243012
- const base = 'build';
243013
- try {
243014
- const location = path_1.join(dirPrefix, base);
243015
- const content = await readdir(location, { withFileTypes: true });
243016
- // If there is only one file in it that is a dir we'll use it as dist dir
243017
- if (content.length === 1 && content[0].isDirectory()) {
243018
- return path_1.join(base, content[0].name);
243019
- }
243020
- }
243021
- catch (error) {
243022
- console.error(`Error detecting output directory: `, error);
243023
- }
243024
- return base;
243025
- },
243026
242949
  getOutputDirName: async (dirPrefix) => {
243027
242950
  const base = 'build';
243028
242951
  try {
@@ -243152,21 +243075,6 @@ exports.frameworks = [
243152
243075
  },
243153
243076
  },
243154
243077
  dependency: 'docusaurus',
243155
- getFsOutputDir: async (dirPrefix) => {
243156
- const base = 'build';
243157
- try {
243158
- const location = path_1.join(dirPrefix, base);
243159
- const content = await readdir(location, { withFileTypes: true });
243160
- // If there is only one file in it that is a dir we'll use it as dist dir
243161
- if (content.length === 1 && content[0].isDirectory()) {
243162
- return path_1.join(base, content[0].name);
243163
- }
243164
- }
243165
- catch (error) {
243166
- console.error(`Error detecting output directory: `, error);
243167
- }
243168
- return base;
243169
- },
243170
243078
  getOutputDirName: async (dirPrefix) => {
243171
243079
  const base = 'build';
243172
243080
  try {
@@ -243216,7 +243124,6 @@ exports.frameworks = [
243216
243124
  },
243217
243125
  },
243218
243126
  dependency: 'preact-cli',
243219
- getFsOutputDir: async () => 'build',
243220
243127
  getOutputDirName: async () => 'build',
243221
243128
  defaultRoutes: [
243222
243129
  {
@@ -243271,7 +243178,6 @@ exports.frameworks = [
243271
243178
  },
243272
243179
  },
243273
243180
  dependency: '@dojo/cli',
243274
- getFsOutputDir: async () => 'output/dist',
243275
243181
  getOutputDirName: async () => path_1.join('output', 'dist'),
243276
243182
  defaultRoutes: [
243277
243183
  {
@@ -243336,7 +243242,6 @@ exports.frameworks = [
243336
243242
  },
243337
243243
  },
243338
243244
  dependency: 'ember-cli',
243339
- getFsOutputDir: async () => 'dist',
243340
243245
  getOutputDirName: async () => 'dist',
243341
243246
  defaultRoutes: [
243342
243247
  {
@@ -243389,7 +243294,6 @@ exports.frameworks = [
243389
243294
  },
243390
243295
  },
243391
243296
  dependency: '@vue/cli-service',
243392
- getFsOutputDir: async () => 'dist',
243393
243297
  getOutputDirName: async () => 'dist',
243394
243298
  defaultRoutes: [
243395
243299
  {
@@ -243465,7 +243369,6 @@ exports.frameworks = [
243465
243369
  },
243466
243370
  },
243467
243371
  dependency: '@scullyio/init',
243468
- getFsOutputDir: async () => 'dist',
243469
243372
  getOutputDirName: async () => 'dist/static',
243470
243373
  },
243471
243374
  {
@@ -243500,7 +243403,6 @@ exports.frameworks = [
243500
243403
  },
243501
243404
  },
243502
243405
  dependency: '@ionic/angular',
243503
- getFsOutputDir: async () => 'www',
243504
243406
  getOutputDirName: async () => 'www',
243505
243407
  defaultRoutes: [
243506
243408
  {
@@ -243552,7 +243454,6 @@ exports.frameworks = [
243552
243454
  },
243553
243455
  },
243554
243456
  dependency: '@angular/cli',
243555
- getFsOutputDir: async () => 'dist',
243556
243457
  getOutputDirName: async (dirPrefix) => {
243557
243458
  const base = 'dist';
243558
243459
  try {
@@ -243618,7 +243519,6 @@ exports.frameworks = [
243618
243519
  },
243619
243520
  },
243620
243521
  dependency: 'polymer-cli',
243621
- getFsOutputDir: async () => 'build',
243622
243522
  getOutputDirName: async (dirPrefix) => {
243623
243523
  const base = 'build';
243624
243524
  try {
@@ -243686,7 +243586,6 @@ exports.frameworks = [
243686
243586
  },
243687
243587
  },
243688
243588
  dependency: 'sirv-cli',
243689
- getFsOutputDir: async () => 'public',
243690
243589
  getOutputDirName: async () => 'public',
243691
243590
  defaultRoutes: [
243692
243591
  {
@@ -243734,10 +243633,9 @@ exports.frameworks = [
243734
243633
  placeholder: 'svelte-kit dev',
243735
243634
  },
243736
243635
  outputDirectory: {
243737
- placeholder: 'public',
243636
+ value: 'public',
243738
243637
  },
243739
243638
  },
243740
- getFsOutputDir: async () => '.output',
243741
243639
  getOutputDirName: async () => 'public',
243742
243640
  },
243743
243641
  {
@@ -243772,7 +243670,6 @@ exports.frameworks = [
243772
243670
  },
243773
243671
  },
243774
243672
  dependency: '@ionic/react',
243775
- getFsOutputDir: async () => 'build',
243776
243673
  getOutputDirName: async () => 'build',
243777
243674
  defaultRoutes: [
243778
243675
  {
@@ -243877,7 +243774,6 @@ exports.frameworks = [
243877
243774
  },
243878
243775
  },
243879
243776
  dependency: 'react-scripts',
243880
- getFsOutputDir: async () => 'build',
243881
243777
  getOutputDirName: async () => 'build',
243882
243778
  defaultRoutes: [
243883
243779
  {
@@ -243977,7 +243873,6 @@ exports.frameworks = [
243977
243873
  },
243978
243874
  },
243979
243875
  dependency: 'gridsome',
243980
- getFsOutputDir: async () => 'dist',
243981
243876
  getOutputDirName: async () => 'dist',
243982
243877
  },
243983
243878
  {
@@ -244013,7 +243908,6 @@ exports.frameworks = [
244013
243908
  },
244014
243909
  },
244015
243910
  dependency: 'umi',
244016
- getFsOutputDir: async () => 'dist',
244017
243911
  getOutputDirName: async () => 'dist',
244018
243912
  defaultRoutes: [
244019
243913
  {
@@ -244065,7 +243959,6 @@ exports.frameworks = [
244065
243959
  },
244066
243960
  },
244067
243961
  dependency: 'sapper',
244068
- getFsOutputDir: async () => '__sapper__/export',
244069
243962
  getOutputDirName: async () => '__sapper__/export',
244070
243963
  },
244071
243964
  {
@@ -244101,7 +243994,6 @@ exports.frameworks = [
244101
243994
  },
244102
243995
  },
244103
243996
  dependency: 'saber',
244104
- getFsOutputDir: async () => 'public',
244105
243997
  getOutputDirName: async () => 'public',
244106
243998
  defaultRoutes: [
244107
243999
  {
@@ -244168,7 +244060,6 @@ exports.frameworks = [
244168
244060
  },
244169
244061
  },
244170
244062
  dependency: '@stencil/core',
244171
- getFsOutputDir: async () => 'www',
244172
244063
  getOutputDirName: async () => 'www',
244173
244064
  defaultRoutes: [
244174
244065
  {
@@ -244255,7 +244146,6 @@ exports.frameworks = [
244255
244146
  },
244256
244147
  },
244257
244148
  dependency: 'nuxt',
244258
- getFsOutputDir: async () => '.output',
244259
244149
  getOutputDirName: async () => 'dist',
244260
244150
  cachePattern: '.nuxt/**',
244261
244151
  defaultRoutes: [
@@ -244312,7 +244202,6 @@ exports.frameworks = [
244312
244202
  placeholder: 'RedwoodJS default',
244313
244203
  },
244314
244204
  },
244315
- getFsOutputDir: async () => 'public',
244316
244205
  getOutputDirName: async () => 'public',
244317
244206
  },
244318
244207
  {
@@ -244355,12 +244244,6 @@ exports.frameworks = [
244355
244244
  placeholder: '`public` or `publishDir` from the `config` file',
244356
244245
  },
244357
244246
  },
244358
- getFsOutputDir: async (dirPrefix) => {
244359
- const config = await read_config_file_1.readConfigFile(['config.json', 'config.yaml', 'config.toml'].map(fileName => {
244360
- return path_1.join(dirPrefix, fileName);
244361
- }));
244362
- return (config && config.publishDir) || 'public';
244363
- },
244364
244247
  getOutputDirName: async (dirPrefix) => {
244365
244248
  const config = await read_config_file_1.readConfigFile(['config.json', 'config.yaml', 'config.toml'].map(fileName => {
244366
244249
  return path_1.join(dirPrefix, fileName);
@@ -244400,10 +244283,6 @@ exports.frameworks = [
244400
244283
  placeholder: '`_site` or `destination` from `_config.yml`',
244401
244284
  },
244402
244285
  },
244403
- getFsOutputDir: async (dirPrefix) => {
244404
- const config = await read_config_file_1.readConfigFile(path_1.join(dirPrefix, '_config.yml'));
244405
- return (config && config.destination) || '_site';
244406
- },
244407
244286
  getOutputDirName: async (dirPrefix) => {
244408
244287
  const config = await read_config_file_1.readConfigFile(path_1.join(dirPrefix, '_config.yml'));
244409
244288
  return (config && config.destination) || '_site';
@@ -244441,7 +244320,6 @@ exports.frameworks = [
244441
244320
  value: 'public',
244442
244321
  },
244443
244322
  },
244444
- getFsOutputDir: async () => 'public',
244445
244323
  getOutputDirName: async () => 'public',
244446
244324
  },
244447
244325
  {
@@ -244475,7 +244353,6 @@ exports.frameworks = [
244475
244353
  value: 'build',
244476
244354
  },
244477
244355
  },
244478
- getFsOutputDir: async () => 'build',
244479
244356
  getOutputDirName: async () => 'build',
244480
244357
  cachePattern: '{vendor/bin,vendor/cache,vendor/bundle}/**',
244481
244358
  },
@@ -244510,7 +244387,6 @@ exports.frameworks = [
244510
244387
  value: 'public',
244511
244388
  },
244512
244389
  },
244513
- getFsOutputDir: async () => 'public',
244514
244390
  getOutputDirName: async () => 'public',
244515
244391
  defaultVersion: '0.13.0',
244516
244392
  },
@@ -244548,7 +244424,6 @@ exports.frameworks = [
244548
244424
  },
244549
244425
  },
244550
244426
  dependency: 'vite',
244551
- getFsOutputDir: async () => 'dist',
244552
244427
  getOutputDirName: async () => 'dist',
244553
244428
  },
244554
244429
  {
@@ -244584,7 +244459,6 @@ exports.frameworks = [
244584
244459
  },
244585
244460
  },
244586
244461
  dependency: 'parcel',
244587
- getFsOutputDir: async () => 'dist',
244588
244462
  getOutputDirName: async () => 'dist',
244589
244463
  defaultRoutes: [
244590
244464
  {
@@ -250705,16 +250579,17 @@ async function main(client) {
250705
250579
  client.output.debug(`Found ${param_1.default('.next')} directory.`);
250706
250580
  }
250707
250581
  // We cannot rely on the `framework` alone, as it might be a static export,
250708
- // and the current build might use a differnt project that's not in the settings.
250582
+ // and the current build might use a different project that's not in the settings.
250709
250583
  const isNextOutput = Boolean(dotNextDir);
250710
250584
  const nextExport = await getNextExportStatus(dotNextDir);
250711
250585
  const outputDir = isNextOutput && !nextExport ? OUTPUT_DIR : path_1.join(OUTPUT_DIR, 'static');
250586
+ const getDistDir = framework.getFsOutputDir || framework.getOutputDirName;
250712
250587
  const distDir = ((nextExport === null || nextExport === void 0 ? void 0 : nextExport.exportDetail.outDirectory)
250713
250588
  ? path_1.relative(cwd, nextExport.exportDetail.outDirectory)
250714
250589
  : false) ||
250715
250590
  dotNextDir ||
250716
250591
  userOutputDirectory ||
250717
- (await framework.getFsOutputDir(cwd));
250592
+ (await getDistDir(cwd));
250718
250593
  await fs_extra_1.default.ensureDir(path_1.join(cwd, outputDir));
250719
250594
  const copyStamp = stamp_1.default();
250720
250595
  client.output.spinner(`Copying files from ${param_1.default(distDir)} to ${param_1.default(outputDir)}`);
@@ -271320,7 +271195,7 @@ module.exports = JSON.parse("[\"ac\",\"com.ac\",\"edu.ac\",\"gov.ac\",\"net.ac\"
271320
271195
  /***/ ((module) => {
271321
271196
 
271322
271197
  "use strict";
271323
- module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"23.1.3-canary.58\",\"preferGlobal\":true,\"license\":\"Apache-2.0\",\"description\":\"The command-line interface for Vercel\",\"homepage\":\"https://vercel.com\",\"repository\":{\"type\":\"git\",\"url\":\"https://github.com/vercel/vercel.git\",\"directory\":\"packages/cli\"},\"scripts\":{\"preinstall\":\"node ./scripts/preinstall.js\",\"test\":\"jest\",\"test-unit\":\"jest --coverage --verbose\",\"test-integration-cli\":\"rimraf test/fixtures/integration && ava test/integration.js --serial --fail-fast --verbose\",\"test-integration-dev\":\"ava test/dev/integration.js --serial --fail-fast --verbose\",\"prepublishOnly\":\"yarn build\",\"coverage\":\"codecov\",\"build\":\"node -r ts-eager/register ./scripts/build.ts\",\"build-dev\":\"node -r ts-eager/register ./scripts/build.ts --dev\"},\"bin\":{\"vc\":\"./dist/index.js\",\"vercel\":\"./dist/index.js\"},\"files\":[\"dist\",\"scripts/preinstall.js\"],\"ava\":{\"compileEnhancements\":false,\"extensions\":[\"ts\"],\"require\":[\"ts-node/register/transpile-only\",\"esm\"]},\"engines\":{\"node\":\">= 12\"},\"dependencies\":{\"@vercel/build-utils\":\"2.12.3-canary.35\",\"@vercel/go\":\"1.2.4-canary.4\",\"@vercel/node\":\"1.12.2-canary.7\",\"@vercel/python\":\"2.1.2-canary.1\",\"@vercel/ruby\":\"1.2.10-canary.0\",\"update-notifier\":\"4.1.0\",\"vercel-plugin-middleware\":\"0.0.0-canary.11\",\"vercel-plugin-node\":\"1.12.2-canary.27\"},\"devDependencies\":{\"@next/env\":\"11.1.2\",\"@sentry/node\":\"5.5.0\",\"@sindresorhus/slugify\":\"0.11.0\",\"@tootallnate/once\":\"1.1.2\",\"@types/ansi-escapes\":\"3.0.0\",\"@types/ansi-regex\":\"4.0.0\",\"@types/async-retry\":\"1.2.1\",\"@types/bytes\":\"3.0.0\",\"@types/chance\":\"1.1.3\",\"@types/debug\":\"0.0.31\",\"@types/dotenv\":\"6.1.1\",\"@types/escape-html\":\"0.0.20\",\"@types/express\":\"4.17.13\",\"@types/fs-extra\":\"9.0.13\",\"@types/glob\":\"7.1.1\",\"@types/http-proxy\":\"1.16.2\",\"@types/inquirer\":\"7.3.1\",\"@types/jest\":\"27.0.1\",\"@types/load-json-file\":\"2.0.7\",\"@types/mime-types\":\"2.1.0\",\"@types/minimatch\":\"3.0.3\",\"@types/mri\":\"1.1.0\",\"@types/ms\":\"0.7.30\",\"@types/node\":\"11.11.0\",\"@types/node-fetch\":\"2.5.10\",\"@types/npm-package-arg\":\"6.1.0\",\"@types/pluralize\":\"0.0.29\",\"@types/progress\":\"2.0.3\",\"@types/psl\":\"1.1.0\",\"@types/semver\":\"6.0.1\",\"@types/tar-fs\":\"1.16.1\",\"@types/text-table\":\"0.2.0\",\"@types/title\":\"3.4.1\",\"@types/universal-analytics\":\"0.4.2\",\"@types/update-notifier\":\"5.1.0\",\"@types/which\":\"1.3.2\",\"@types/write-json-file\":\"2.2.1\",\"@vercel/frameworks\":\"0.5.1-canary.16\",\"@vercel/ncc\":\"0.24.0\",\"@vercel/nft\":\"0.17.0\",\"@zeit/fun\":\"0.11.2\",\"@zeit/source-map-support\":\"0.6.2\",\"ajv\":\"6.12.2\",\"alpha-sort\":\"2.0.1\",\"ansi-escapes\":\"3.0.0\",\"ansi-regex\":\"3.0.0\",\"arg\":\"5.0.0\",\"async-listen\":\"1.2.0\",\"async-retry\":\"1.1.3\",\"async-sema\":\"2.1.4\",\"ava\":\"2.2.0\",\"bytes\":\"3.0.0\",\"chalk\":\"4.1.0\",\"chance\":\"1.1.7\",\"chokidar\":\"3.3.1\",\"clipboardy\":\"2.1.0\",\"codecov\":\"3.8.2\",\"cpy\":\"7.2.0\",\"credit-card\":\"3.0.1\",\"date-fns\":\"1.29.0\",\"debug\":\"3.1.0\",\"dot\":\"1.1.3\",\"dotenv\":\"4.0.0\",\"email-prompt\":\"0.3.2\",\"email-validator\":\"1.1.1\",\"epipebomb\":\"1.0.0\",\"escape-html\":\"1.0.3\",\"esm\":\"3.1.4\",\"execa\":\"3.2.0\",\"express\":\"4.17.1\",\"fast-deep-equal\":\"3.1.3\",\"fs-extra\":\"10.0.0\",\"get-port\":\"5.1.1\",\"glob\":\"7.1.2\",\"http-proxy\":\"1.18.1\",\"inquirer\":\"7.0.4\",\"is-docker\":\"2.2.1\",\"is-port-reachable\":\"3.0.0\",\"is-url\":\"1.2.2\",\"jaro-winkler\":\"0.2.8\",\"jsonlines\":\"0.1.1\",\"load-json-file\":\"3.0.0\",\"mime-types\":\"2.1.24\",\"minimatch\":\"3.0.4\",\"mri\":\"1.1.5\",\"ms\":\"2.1.2\",\"node-fetch\":\"2.6.1\",\"npm-package-arg\":\"6.1.0\",\"open\":\"8.2.0\",\"ora\":\"3.4.0\",\"pcre-to-regexp\":\"1.0.0\",\"pluralize\":\"7.0.0\",\"progress\":\"2.0.3\",\"promisepipe\":\"3.0.0\",\"psl\":\"1.1.31\",\"qr-image\":\"3.2.0\",\"raw-body\":\"2.4.1\",\"rimraf\":\"3.0.2\",\"semver\":\"5.5.0\",\"serve-handler\":\"6.1.1\",\"strip-ansi\":\"5.2.0\",\"stripe\":\"5.1.0\",\"tar-fs\":\"1.16.3\",\"test-listen\":\"1.1.0\",\"text-table\":\"0.2.0\",\"title\":\"3.4.1\",\"tmp-promise\":\"1.0.3\",\"tree-kill\":\"1.2.2\",\"ts-eager\":\"2.0.2\",\"ts-node\":\"8.3.0\",\"typescript\":\"4.3.4\",\"universal-analytics\":\"0.4.20\",\"utility-types\":\"2.1.0\",\"which\":\"2.0.2\",\"write-json-file\":\"2.2.0\",\"xdg-app-paths\":\"5.1.0\"},\"jest\":{\"preset\":\"ts-jest\",\"globals\":{\"ts-jest\":{\"diagnostics\":false,\"isolatedModules\":true}},\"verbose\":false,\"testEnvironment\":\"node\",\"testMatch\":[\"<rootDir>/test/**/*.test.ts\"]},\"gitHead\":\"2c3ddffaacb370eb4c0893815b3bc7417f92d432\"}");
271198
+ module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"23.1.3-canary.61\",\"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.38\",\"@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.14\",\"vercel-plugin-node\":\"1.12.2-canary.30\"},\"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\":\"6792edf32a1a81f240cc1b5c9f9cc756a9a2b83b\"}");
271324
271199
 
271325
271200
  /***/ }),
271326
271201
 
@@ -271336,7 +271211,7 @@ module.exports = JSON.parse("{\"VISA\":\"Visa\",\"MASTERCARD\":\"MasterCard\",\"
271336
271211
  /***/ ((module) => {
271337
271212
 
271338
271213
  "use strict";
271339
- module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.2.3-canary.36\",\"main\":\"dist/index.js\",\"typings\":\"dist/index.d.ts\",\"homepage\":\"https://vercel.com\",\"license\":\"MIT\",\"files\":[\"dist\"],\"repository\":{\"type\":\"git\",\"url\":\"https://github.com/vercel/vercel.git\",\"directory\":\"packages/client\"},\"scripts\":{\"build\":\"tsc\",\"test-integration-once\":\"jest --verbose --runInBand --bail tests/create-deployment.test.ts tests/create-legacy-deployment.test.ts tests/paths.test.ts\",\"test-unit\":\"jest --verbose --runInBand --bail tests/unit.*test.*\"},\"engines\":{\"node\":\">= 12\"},\"devDependencies\":{\"@types/async-retry\":\"1.4.1\",\"@types/fs-extra\":\"7.0.0\",\"@types/jest\":\"27.0.1\",\"@types/ms\":\"0.7.30\",\"@types/node\":\"12.0.4\",\"@types/node-fetch\":\"2.5.4\",\"@types/recursive-readdir\":\"2.2.0\",\"typescript\":\"4.3.4\"},\"jest\":{\"preset\":\"ts-jest\",\"testEnvironment\":\"node\",\"verbose\":false,\"setupFilesAfterEnv\":[\"<rootDir>/tests/setup/index.ts\"]},\"dependencies\":{\"@vercel/build-utils\":\"2.12.3-canary.35\",\"@zeit/fetch\":\"5.2.0\",\"async-retry\":\"1.2.3\",\"async-sema\":\"3.0.0\",\"fs-extra\":\"8.0.1\",\"ignore\":\"4.0.6\",\"ms\":\"2.1.2\",\"node-fetch\":\"2.6.1\",\"querystring\":\"^0.2.0\",\"recursive-readdir\":\"2.2.2\",\"sleep-promise\":\"8.0.1\"},\"gitHead\":\"2c3ddffaacb370eb4c0893815b3bc7417f92d432\"}");
271214
+ module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.2.3-canary.39\",\"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.38\",\"@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\":\"6792edf32a1a81f240cc1b5c9f9cc756a9a2b83b\"}");
271340
271215
 
271341
271216
  /***/ }),
271342
271217