vercel 23.1.3-canary.60 → 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.
- package/dist/index.js +240 -361
- 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
|
-
{
|
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
|
-
|
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,
|
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(
|
213220
|
-
const toml_1 = __importDefault(
|
213221
|
-
const fs_1 =
|
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,
|
213205
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_806064__) => {
|
213271
213206
|
|
213272
213207
|
"use strict";
|
213273
213208
|
|
213274
213209
|
|
213275
213210
|
|
213276
|
-
var yaml =
|
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,
|
213220
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_806238__) => {
|
213286
213221
|
|
213287
213222
|
"use strict";
|
213288
213223
|
|
213289
213224
|
|
213290
213225
|
|
213291
|
-
var loader =
|
213292
|
-
var dumper =
|
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 =
|
213303
|
-
module.exports.Schema =
|
213304
|
-
module.exports.FAILSAFE_SCHEMA =
|
213305
|
-
module.exports.JSON_SCHEMA =
|
213306
|
-
module.exports.CORE_SCHEMA =
|
213307
|
-
module.exports.DEFAULT_SAFE_SCHEMA =
|
213308
|
-
module.exports.DEFAULT_FULL_SCHEMA =
|
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 =
|
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 =
|
213319
|
-
module.exports.SAFE_SCHEMA =
|
213320
|
-
module.exports.DEFAULT_SCHEMA =
|
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,
|
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 =
|
213407
|
-
var YAMLException =
|
213408
|
-
var DEFAULT_FULL_SCHEMA =
|
213409
|
-
var DEFAULT_SAFE_SCHEMA =
|
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,
|
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 =
|
214293
|
-
var YAMLException =
|
214294
|
-
var Mark =
|
214295
|
-
var DEFAULT_SAFE_SCHEMA =
|
214296
|
-
var DEFAULT_FULL_SCHEMA =
|
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,
|
215853
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_880627__) => {
|
215919
215854
|
|
215920
215855
|
"use strict";
|
215921
215856
|
|
215922
215857
|
|
215923
215858
|
|
215924
|
-
var common =
|
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,
|
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 =
|
216010
|
-
var YAMLException =
|
216011
|
-
var Type =
|
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,
|
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 =
|
216066
|
+
var Schema = __nested_webpack_require_885153__(6105);
|
216132
216067
|
|
216133
216068
|
|
216134
216069
|
module.exports = new Schema({
|
216135
216070
|
include: [
|
216136
|
-
|
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,
|
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 =
|
216094
|
+
var Schema = __nested_webpack_require_885623__(6105);
|
216160
216095
|
|
216161
216096
|
|
216162
216097
|
module.exports = Schema.DEFAULT = new Schema({
|
216163
216098
|
include: [
|
216164
|
-
|
216099
|
+
__nested_webpack_require_885623__(596)
|
216165
216100
|
],
|
216166
216101
|
explicit: [
|
216167
|
-
|
216168
|
-
|
216169
|
-
|
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,
|
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 =
|
216125
|
+
var Schema = __nested_webpack_require_886317__(6105);
|
216191
216126
|
|
216192
216127
|
|
216193
216128
|
module.exports = new Schema({
|
216194
216129
|
include: [
|
216195
|
-
|
216130
|
+
__nested_webpack_require_886317__(1112)
|
216196
216131
|
],
|
216197
216132
|
implicit: [
|
216198
|
-
|
216199
|
-
|
216133
|
+
__nested_webpack_require_886317__(7028),
|
216134
|
+
__nested_webpack_require_886317__(7841)
|
216200
216135
|
],
|
216201
216136
|
explicit: [
|
216202
|
-
|
216203
|
-
|
216204
|
-
|
216205
|
-
|
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,
|
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 =
|
216158
|
+
var Schema = __nested_webpack_require_887029__(6105);
|
216224
216159
|
|
216225
216160
|
|
216226
216161
|
module.exports = new Schema({
|
216227
216162
|
explicit: [
|
216228
|
-
|
216229
|
-
|
216230
|
-
|
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,
|
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 =
|
216187
|
+
var Schema = __nested_webpack_require_887415__(6105);
|
216253
216188
|
|
216254
216189
|
|
216255
216190
|
module.exports = new Schema({
|
216256
216191
|
include: [
|
216257
|
-
|
216192
|
+
__nested_webpack_require_887415__(8441)
|
216258
216193
|
],
|
216259
216194
|
implicit: [
|
216260
|
-
|
216261
|
-
|
216262
|
-
|
216263
|
-
|
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,
|
216206
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_888113__) => {
|
216272
216207
|
|
216273
216208
|
"use strict";
|
216274
216209
|
|
216275
216210
|
|
216276
|
-
var YAMLException =
|
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,
|
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 =
|
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,
|
216421
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_893189__) => {
|
216487
216422
|
|
216488
216423
|
"use strict";
|
216489
216424
|
|
216490
216425
|
|
216491
|
-
var Type =
|
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,
|
216464
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_894262__) => {
|
216530
216465
|
|
216531
216466
|
"use strict";
|
216532
216467
|
|
216533
216468
|
|
216534
|
-
var common =
|
216535
|
-
var Type =
|
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,
|
216588
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_897208__) => {
|
216654
216589
|
|
216655
216590
|
"use strict";
|
216656
216591
|
|
216657
216592
|
|
216658
|
-
var common =
|
216659
|
-
var Type =
|
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,
|
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 =
|
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,
|
216869
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_904277__) => {
|
216935
216870
|
|
216936
216871
|
"use strict";
|
216937
216872
|
|
216938
216873
|
|
216939
|
-
var Type =
|
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,
|
216937
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_905948__) => {
|
217003
216938
|
|
217004
216939
|
"use strict";
|
217005
216940
|
|
217006
216941
|
|
217007
|
-
var Type =
|
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,
|
216973
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_906619__) => {
|
217039
216974
|
|
217040
216975
|
"use strict";
|
217041
216976
|
|
217042
216977
|
|
217043
|
-
var Type =
|
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,
|
216989
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_906911__) => {
|
217055
216990
|
|
217056
216991
|
"use strict";
|
217057
216992
|
|
217058
216993
|
|
217059
|
-
var Type =
|
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,
|
217009
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_907243__) => {
|
217075
217010
|
|
217076
217011
|
"use strict";
|
217077
217012
|
|
217078
217013
|
|
217079
|
-
var Type =
|
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,
|
217051
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_908106__) => {
|
217117
217052
|
|
217118
217053
|
"use strict";
|
217119
217054
|
|
217120
217055
|
|
217121
|
-
var Type =
|
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,
|
217103
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_909230__) => {
|
217169
217104
|
|
217170
217105
|
"use strict";
|
217171
217106
|
|
217172
217107
|
|
217173
|
-
var Type =
|
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,
|
217164
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_910416__) => {
|
217230
217165
|
|
217231
217166
|
"use strict";
|
217232
217167
|
|
217233
217168
|
|
217234
|
-
var Type =
|
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,
|
217180
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_910709__) => {
|
217246
217181
|
|
217247
217182
|
"use strict";
|
217248
217183
|
|
217249
217184
|
|
217250
|
-
var Type =
|
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,
|
217217
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_911358__) => {
|
217283
217218
|
|
217284
217219
|
"use strict";
|
217285
217220
|
|
217286
217221
|
|
217287
|
-
var Type =
|
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,
|
217233
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_911649__) => {
|
217299
217234
|
|
217300
217235
|
"use strict";
|
217301
217236
|
|
217302
217237
|
|
217303
|
-
var Type =
|
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,
|
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(
|
217404
|
-
const path_1 =
|
217405
|
-
const glob_1 = __importDefault(
|
217406
|
-
const normalize_path_1 =
|
217407
|
-
const lambda_1 =
|
217408
|
-
const _1 =
|
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,
|
@@ -217487,6 +217422,7 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
|
|
217487
217422
|
},
|
217488
217423
|
meta: {
|
217489
217424
|
avoidTopLevelInstall: true,
|
217425
|
+
skipDownload: true,
|
217490
217426
|
},
|
217491
217427
|
});
|
217492
217428
|
// Legacy Runtimes tend to pollute the `workPath` with compiled results,
|
@@ -217680,7 +217616,14 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
|
|
217680
217616
|
}
|
217681
217617
|
exports.convertRuntimeToPlugin = convertRuntimeToPlugin;
|
217682
217618
|
async function linkOrCopy(existingPath, newPath) {
|
217683
|
-
|
217619
|
+
try {
|
217620
|
+
await fs_extra_1.default.createLink(existingPath, newPath);
|
217621
|
+
}
|
217622
|
+
catch (err) {
|
217623
|
+
if (err.code !== 'EEXIST') {
|
217624
|
+
await fs_extra_1.default.copyFile(existingPath, newPath);
|
217625
|
+
}
|
217626
|
+
}
|
217684
217627
|
}
|
217685
217628
|
async function readJson(filePath) {
|
217686
217629
|
try {
|
@@ -217755,12 +217698,12 @@ exports.updateRoutesManifest = updateRoutesManifest;
|
|
217755
217698
|
/***/ }),
|
217756
217699
|
|
217757
217700
|
/***/ 1868:
|
217758
|
-
/***/ ((__unused_webpack_module, exports,
|
217701
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_933640__) => {
|
217759
217702
|
|
217760
217703
|
"use strict";
|
217761
217704
|
|
217762
217705
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
217763
|
-
const _1 =
|
217706
|
+
const _1 = __nested_webpack_require_933640__(2855);
|
217764
217707
|
function debug(message, ...additional) {
|
217765
217708
|
if (_1.getPlatformEnv('BUILDER_DEBUG')) {
|
217766
217709
|
console.log(message, ...additional);
|
@@ -217772,7 +217715,7 @@ exports.default = debug;
|
|
217772
217715
|
/***/ }),
|
217773
217716
|
|
217774
217717
|
/***/ 4246:
|
217775
|
-
/***/ (function(__unused_webpack_module, exports,
|
217718
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_934025__) {
|
217776
217719
|
|
217777
217720
|
"use strict";
|
217778
217721
|
|
@@ -217781,11 +217724,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
217781
217724
|
};
|
217782
217725
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
217783
217726
|
exports.detectBuilders = exports.detectOutputDirectory = exports.detectApiDirectory = exports.detectApiExtensions = exports.sortFiles = void 0;
|
217784
|
-
const minimatch_1 = __importDefault(
|
217785
|
-
const semver_1 =
|
217786
|
-
const path_1 =
|
217787
|
-
const frameworks_1 = __importDefault(
|
217788
|
-
const _1 =
|
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);
|
217789
217732
|
const slugToFramework = new Map(frameworks_1.default.map(f => [f.slug, f]));
|
217790
217733
|
// We need to sort the file paths by alphabet to make
|
217791
217734
|
// sure the routes stay in the same order e.g. for deduping
|
@@ -218844,7 +218787,7 @@ function getSuggestion(topLevelProp, additionalProperty) {
|
|
218844
218787
|
/***/ }),
|
218845
218788
|
|
218846
218789
|
/***/ 2397:
|
218847
|
-
/***/ (function(__unused_webpack_module, exports,
|
218790
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_973409__) {
|
218848
218791
|
|
218849
218792
|
"use strict";
|
218850
218793
|
|
@@ -218852,8 +218795,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218852
218795
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
218853
218796
|
};
|
218854
218797
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218855
|
-
const assert_1 = __importDefault(
|
218856
|
-
const into_stream_1 = __importDefault(
|
218798
|
+
const assert_1 = __importDefault(__nested_webpack_require_973409__(2357));
|
218799
|
+
const into_stream_1 = __importDefault(__nested_webpack_require_973409__(6130));
|
218857
218800
|
class FileBlob {
|
218858
218801
|
constructor({ mode = 0o100644, contentType, data }) {
|
218859
218802
|
assert_1.default(typeof mode === 'number');
|
@@ -218885,7 +218828,7 @@ exports.default = FileBlob;
|
|
218885
218828
|
/***/ }),
|
218886
218829
|
|
218887
218830
|
/***/ 9331:
|
218888
|
-
/***/ (function(__unused_webpack_module, exports,
|
218831
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_974861__) {
|
218889
218832
|
|
218890
218833
|
"use strict";
|
218891
218834
|
|
@@ -218893,11 +218836,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218893
218836
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
218894
218837
|
};
|
218895
218838
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218896
|
-
const assert_1 = __importDefault(
|
218897
|
-
const fs_extra_1 = __importDefault(
|
218898
|
-
const multistream_1 = __importDefault(
|
218899
|
-
const path_1 = __importDefault(
|
218900
|
-
const async_sema_1 = __importDefault(
|
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));
|
218901
218844
|
const semaToPreventEMFILE = new async_sema_1.default(20);
|
218902
218845
|
class FileFsRef {
|
218903
218846
|
constructor({ mode = 0o100644, contentType, fsPath }) {
|
@@ -218963,7 +218906,7 @@ exports.default = FileFsRef;
|
|
218963
218906
|
/***/ }),
|
218964
218907
|
|
218965
218908
|
/***/ 5187:
|
218966
|
-
/***/ (function(__unused_webpack_module, exports,
|
218909
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_977665__) {
|
218967
218910
|
|
218968
218911
|
"use strict";
|
218969
218912
|
|
@@ -218971,11 +218914,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218971
218914
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
218972
218915
|
};
|
218973
218916
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218974
|
-
const assert_1 = __importDefault(
|
218975
|
-
const node_fetch_1 = __importDefault(
|
218976
|
-
const multistream_1 = __importDefault(
|
218977
|
-
const async_retry_1 = __importDefault(
|
218978
|
-
const async_sema_1 = __importDefault(
|
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));
|
218979
218922
|
const semaToDownloadFromS3 = new async_sema_1.default(5);
|
218980
218923
|
class BailableError extends Error {
|
218981
218924
|
constructor(...args) {
|
@@ -219056,7 +218999,7 @@ exports.default = FileRef;
|
|
219056
218999
|
/***/ }),
|
219057
219000
|
|
219058
219001
|
/***/ 1611:
|
219059
|
-
/***/ (function(__unused_webpack_module, exports,
|
219002
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_981066__) {
|
219060
219003
|
|
219061
219004
|
"use strict";
|
219062
219005
|
|
@@ -219065,10 +219008,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219065
219008
|
};
|
219066
219009
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219067
219010
|
exports.isSymbolicLink = void 0;
|
219068
|
-
const path_1 = __importDefault(
|
219069
|
-
const debug_1 = __importDefault(
|
219070
|
-
const file_fs_ref_1 = __importDefault(
|
219071
|
-
const fs_extra_1 =
|
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);
|
219072
219015
|
const S_IFMT = 61440; /* 0170000 type of file */
|
219073
219016
|
const S_IFLNK = 40960; /* 0120000 symbolic link */
|
219074
219017
|
function isSymbolicLink(mode) {
|
@@ -219130,14 +219073,14 @@ exports.default = download;
|
|
219130
219073
|
/***/ }),
|
219131
219074
|
|
219132
219075
|
/***/ 3838:
|
219133
|
-
/***/ ((__unused_webpack_module, exports,
|
219076
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_983891__) => {
|
219134
219077
|
|
219135
219078
|
"use strict";
|
219136
219079
|
|
219137
219080
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219138
|
-
const path_1 =
|
219139
|
-
const os_1 =
|
219140
|
-
const fs_extra_1 =
|
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);
|
219141
219084
|
async function getWritableDirectory() {
|
219142
219085
|
const name = Math.floor(Math.random() * 0x7fffffff).toString(16);
|
219143
219086
|
const directory = path_1.join(os_1.tmpdir(), name);
|
@@ -219150,7 +219093,7 @@ exports.default = getWritableDirectory;
|
|
219150
219093
|
/***/ }),
|
219151
219094
|
|
219152
219095
|
/***/ 4240:
|
219153
|
-
/***/ (function(__unused_webpack_module, exports,
|
219096
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_984471__) {
|
219154
219097
|
|
219155
219098
|
"use strict";
|
219156
219099
|
|
@@ -219158,13 +219101,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219158
219101
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
219159
219102
|
};
|
219160
219103
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219161
|
-
const path_1 = __importDefault(
|
219162
|
-
const assert_1 = __importDefault(
|
219163
|
-
const glob_1 = __importDefault(
|
219164
|
-
const util_1 =
|
219165
|
-
const fs_extra_1 =
|
219166
|
-
const normalize_path_1 =
|
219167
|
-
const file_fs_ref_1 = __importDefault(
|
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));
|
219168
219111
|
const vanillaGlob = util_1.promisify(glob_1.default);
|
219169
219112
|
async function glob(pattern, opts, mountpoint) {
|
219170
219113
|
let options;
|
@@ -219210,7 +219153,7 @@ exports.default = glob;
|
|
219210
219153
|
/***/ }),
|
219211
219154
|
|
219212
219155
|
/***/ 7903:
|
219213
|
-
/***/ (function(__unused_webpack_module, exports,
|
219156
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_986667__) {
|
219214
219157
|
|
219215
219158
|
"use strict";
|
219216
219159
|
|
@@ -219219,9 +219162,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219219
219162
|
};
|
219220
219163
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219221
219164
|
exports.getSupportedNodeVersion = exports.getDiscontinuedNodeVersions = exports.getLatestNodeVersion = void 0;
|
219222
|
-
const semver_1 =
|
219223
|
-
const errors_1 =
|
219224
|
-
const debug_1 = __importDefault(
|
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));
|
219225
219168
|
const allOptions = [
|
219226
219169
|
{ major: 14, range: '14.x', runtime: 'nodejs14.x' },
|
219227
219170
|
{ major: 12, range: '12.x', runtime: 'nodejs12.x' },
|
@@ -219315,7 +219258,7 @@ exports.normalizePath = normalizePath;
|
|
219315
219258
|
/***/ }),
|
219316
219259
|
|
219317
219260
|
/***/ 7792:
|
219318
|
-
/***/ (function(__unused_webpack_module, exports,
|
219261
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_990535__) {
|
219319
219262
|
|
219320
219263
|
"use strict";
|
219321
219264
|
|
@@ -219324,9 +219267,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219324
219267
|
};
|
219325
219268
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219326
219269
|
exports.readConfigFile = void 0;
|
219327
|
-
const js_yaml_1 = __importDefault(
|
219328
|
-
const toml_1 = __importDefault(
|
219329
|
-
const fs_extra_1 =
|
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);
|
219330
219273
|
async function readFileOrNull(file) {
|
219331
219274
|
try {
|
219332
219275
|
const data = await fs_extra_1.readFile(file);
|
@@ -219381,7 +219324,7 @@ exports.default = rename;
|
|
219381
219324
|
/***/ }),
|
219382
219325
|
|
219383
219326
|
/***/ 1442:
|
219384
|
-
/***/ (function(__unused_webpack_module, exports,
|
219327
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_992328__) {
|
219385
219328
|
|
219386
219329
|
"use strict";
|
219387
219330
|
|
@@ -219390,14 +219333,14 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219390
219333
|
};
|
219391
219334
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219392
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;
|
219393
|
-
const assert_1 = __importDefault(
|
219394
|
-
const fs_extra_1 = __importDefault(
|
219395
|
-
const path_1 = __importDefault(
|
219396
|
-
const debug_1 = __importDefault(
|
219397
|
-
const cross_spawn_1 = __importDefault(
|
219398
|
-
const util_1 =
|
219399
|
-
const errors_1 =
|
219400
|
-
const node_version_1 =
|
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);
|
219401
219344
|
function spawnAsync(command, args, opts = {}) {
|
219402
219345
|
return new Promise((resolve, reject) => {
|
219403
219346
|
const stderrLogs = [];
|
@@ -219708,7 +219651,7 @@ exports.installDependencies = util_1.deprecate(runNpmInstall, 'installDependenci
|
|
219708
219651
|
/***/ }),
|
219709
219652
|
|
219710
219653
|
/***/ 2560:
|
219711
|
-
/***/ (function(__unused_webpack_module, exports,
|
219654
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1006318__) {
|
219712
219655
|
|
219713
219656
|
"use strict";
|
219714
219657
|
|
@@ -219716,7 +219659,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219716
219659
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
219717
219660
|
};
|
219718
219661
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219719
|
-
const end_of_stream_1 = __importDefault(
|
219662
|
+
const end_of_stream_1 = __importDefault(__nested_webpack_require_1006318__(687));
|
219720
219663
|
function streamToBuffer(stream) {
|
219721
219664
|
return new Promise((resolve, reject) => {
|
219722
219665
|
const buffers = [];
|
@@ -219745,7 +219688,7 @@ exports.default = streamToBuffer;
|
|
219745
219688
|
/***/ }),
|
219746
219689
|
|
219747
219690
|
/***/ 1148:
|
219748
|
-
/***/ (function(__unused_webpack_module, exports,
|
219691
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1007386__) {
|
219749
219692
|
|
219750
219693
|
"use strict";
|
219751
219694
|
|
@@ -219753,9 +219696,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219753
219696
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
219754
219697
|
};
|
219755
219698
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219756
|
-
const path_1 = __importDefault(
|
219757
|
-
const fs_extra_1 = __importDefault(
|
219758
|
-
const ignore_1 = __importDefault(
|
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));
|
219759
219702
|
function isCodedError(error) {
|
219760
219703
|
return (error !== null &&
|
219761
219704
|
error !== undefined &&
|
@@ -219812,7 +219755,7 @@ exports.default = default_1;
|
|
219812
219755
|
/***/ }),
|
219813
219756
|
|
219814
219757
|
/***/ 2855:
|
219815
|
-
/***/ (function(__unused_webpack_module, exports,
|
219758
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1009768__) {
|
219816
219759
|
|
219817
219760
|
"use strict";
|
219818
219761
|
|
@@ -219843,29 +219786,29 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219843
219786
|
};
|
219844
219787
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219845
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;
|
219846
|
-
const crypto_1 =
|
219847
|
-
const file_blob_1 = __importDefault(
|
219789
|
+
const crypto_1 = __nested_webpack_require_1009768__(6417);
|
219790
|
+
const file_blob_1 = __importDefault(__nested_webpack_require_1009768__(2397));
|
219848
219791
|
exports.FileBlob = file_blob_1.default;
|
219849
|
-
const file_fs_ref_1 = __importDefault(
|
219792
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_1009768__(9331));
|
219850
219793
|
exports.FileFsRef = file_fs_ref_1.default;
|
219851
|
-
const file_ref_1 = __importDefault(
|
219794
|
+
const file_ref_1 = __importDefault(__nested_webpack_require_1009768__(5187));
|
219852
219795
|
exports.FileRef = file_ref_1.default;
|
219853
|
-
const lambda_1 =
|
219796
|
+
const lambda_1 = __nested_webpack_require_1009768__(6721);
|
219854
219797
|
Object.defineProperty(exports, "Lambda", ({ enumerable: true, get: function () { return lambda_1.Lambda; } }));
|
219855
219798
|
Object.defineProperty(exports, "createLambda", ({ enumerable: true, get: function () { return lambda_1.createLambda; } }));
|
219856
219799
|
Object.defineProperty(exports, "getLambdaOptionsFromFunction", ({ enumerable: true, get: function () { return lambda_1.getLambdaOptionsFromFunction; } }));
|
219857
|
-
const prerender_1 =
|
219800
|
+
const prerender_1 = __nested_webpack_require_1009768__(2850);
|
219858
219801
|
Object.defineProperty(exports, "Prerender", ({ enumerable: true, get: function () { return prerender_1.Prerender; } }));
|
219859
|
-
const download_1 = __importStar(
|
219802
|
+
const download_1 = __importStar(__nested_webpack_require_1009768__(1611));
|
219860
219803
|
exports.download = download_1.default;
|
219861
219804
|
Object.defineProperty(exports, "isSymbolicLink", ({ enumerable: true, get: function () { return download_1.isSymbolicLink; } }));
|
219862
|
-
const get_writable_directory_1 = __importDefault(
|
219805
|
+
const get_writable_directory_1 = __importDefault(__nested_webpack_require_1009768__(3838));
|
219863
219806
|
exports.getWriteableDirectory = get_writable_directory_1.default;
|
219864
|
-
const glob_1 = __importDefault(
|
219807
|
+
const glob_1 = __importDefault(__nested_webpack_require_1009768__(4240));
|
219865
219808
|
exports.glob = glob_1.default;
|
219866
|
-
const rename_1 = __importDefault(
|
219809
|
+
const rename_1 = __importDefault(__nested_webpack_require_1009768__(6718));
|
219867
219810
|
exports.rename = rename_1.default;
|
219868
|
-
const run_user_scripts_1 =
|
219811
|
+
const run_user_scripts_1 = __nested_webpack_require_1009768__(1442);
|
219869
219812
|
Object.defineProperty(exports, "execAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.execAsync; } }));
|
219870
219813
|
Object.defineProperty(exports, "spawnAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.spawnAsync; } }));
|
219871
219814
|
Object.defineProperty(exports, "execCommand", ({ enumerable: true, get: function () { return run_user_scripts_1.execCommand; } }));
|
@@ -219882,38 +219825,38 @@ Object.defineProperty(exports, "getNodeVersion", ({ enumerable: true, get: funct
|
|
219882
219825
|
Object.defineProperty(exports, "getSpawnOptions", ({ enumerable: true, get: function () { return run_user_scripts_1.getSpawnOptions; } }));
|
219883
219826
|
Object.defineProperty(exports, "getNodeBinPath", ({ enumerable: true, get: function () { return run_user_scripts_1.getNodeBinPath; } }));
|
219884
219827
|
Object.defineProperty(exports, "scanParentDirs", ({ enumerable: true, get: function () { return run_user_scripts_1.scanParentDirs; } }));
|
219885
|
-
const node_version_1 =
|
219828
|
+
const node_version_1 = __nested_webpack_require_1009768__(7903);
|
219886
219829
|
Object.defineProperty(exports, "getLatestNodeVersion", ({ enumerable: true, get: function () { return node_version_1.getLatestNodeVersion; } }));
|
219887
219830
|
Object.defineProperty(exports, "getDiscontinuedNodeVersions", ({ enumerable: true, get: function () { return node_version_1.getDiscontinuedNodeVersions; } }));
|
219888
|
-
const errors_1 =
|
219889
|
-
const stream_to_buffer_1 = __importDefault(
|
219831
|
+
const errors_1 = __nested_webpack_require_1009768__(3983);
|
219832
|
+
const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1009768__(2560));
|
219890
219833
|
exports.streamToBuffer = stream_to_buffer_1.default;
|
219891
|
-
const should_serve_1 = __importDefault(
|
219834
|
+
const should_serve_1 = __importDefault(__nested_webpack_require_1009768__(2564));
|
219892
219835
|
exports.shouldServe = should_serve_1.default;
|
219893
|
-
const debug_1 = __importDefault(
|
219836
|
+
const debug_1 = __importDefault(__nested_webpack_require_1009768__(1868));
|
219894
219837
|
exports.debug = debug_1.default;
|
219895
|
-
const get_ignore_filter_1 = __importDefault(
|
219838
|
+
const get_ignore_filter_1 = __importDefault(__nested_webpack_require_1009768__(1148));
|
219896
219839
|
exports.getIgnoreFilter = get_ignore_filter_1.default;
|
219897
|
-
var detect_builders_1 =
|
219840
|
+
var detect_builders_1 = __nested_webpack_require_1009768__(4246);
|
219898
219841
|
Object.defineProperty(exports, "detectBuilders", ({ enumerable: true, get: function () { return detect_builders_1.detectBuilders; } }));
|
219899
219842
|
Object.defineProperty(exports, "detectOutputDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectOutputDirectory; } }));
|
219900
219843
|
Object.defineProperty(exports, "detectApiDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectApiDirectory; } }));
|
219901
219844
|
Object.defineProperty(exports, "detectApiExtensions", ({ enumerable: true, get: function () { return detect_builders_1.detectApiExtensions; } }));
|
219902
|
-
var detect_framework_1 =
|
219845
|
+
var detect_framework_1 = __nested_webpack_require_1009768__(5224);
|
219903
219846
|
Object.defineProperty(exports, "detectFramework", ({ enumerable: true, get: function () { return detect_framework_1.detectFramework; } }));
|
219904
|
-
var filesystem_1 =
|
219847
|
+
var filesystem_1 = __nested_webpack_require_1009768__(461);
|
219905
219848
|
Object.defineProperty(exports, "DetectorFilesystem", ({ enumerable: true, get: function () { return filesystem_1.DetectorFilesystem; } }));
|
219906
|
-
var read_config_file_1 =
|
219849
|
+
var read_config_file_1 = __nested_webpack_require_1009768__(7792);
|
219907
219850
|
Object.defineProperty(exports, "readConfigFile", ({ enumerable: true, get: function () { return read_config_file_1.readConfigFile; } }));
|
219908
|
-
var normalize_path_1 =
|
219851
|
+
var normalize_path_1 = __nested_webpack_require_1009768__(6261);
|
219909
219852
|
Object.defineProperty(exports, "normalizePath", ({ enumerable: true, get: function () { return normalize_path_1.normalizePath; } }));
|
219910
|
-
var convert_runtime_to_plugin_1 =
|
219853
|
+
var convert_runtime_to_plugin_1 = __nested_webpack_require_1009768__(7276);
|
219911
219854
|
Object.defineProperty(exports, "convertRuntimeToPlugin", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.convertRuntimeToPlugin; } }));
|
219912
219855
|
Object.defineProperty(exports, "updateFunctionsManifest", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.updateFunctionsManifest; } }));
|
219913
219856
|
Object.defineProperty(exports, "updateRoutesManifest", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.updateRoutesManifest; } }));
|
219914
|
-
__exportStar(
|
219915
|
-
__exportStar(
|
219916
|
-
__exportStar(
|
219857
|
+
__exportStar(__nested_webpack_require_1009768__(2416), exports);
|
219858
|
+
__exportStar(__nested_webpack_require_1009768__(5748), exports);
|
219859
|
+
__exportStar(__nested_webpack_require_1009768__(3983), exports);
|
219917
219860
|
/**
|
219918
219861
|
* Helper function to support both `@vercel` and legacy `@now` official Runtimes.
|
219919
219862
|
*/
|
@@ -219966,7 +219909,7 @@ exports.getInputHash = getInputHash;
|
|
219966
219909
|
/***/ }),
|
219967
219910
|
|
219968
219911
|
/***/ 6721:
|
219969
|
-
/***/ (function(__unused_webpack_module, exports,
|
219912
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1020746__) {
|
219970
219913
|
|
219971
219914
|
"use strict";
|
219972
219915
|
|
@@ -219975,13 +219918,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219975
219918
|
};
|
219976
219919
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219977
219920
|
exports.getLambdaOptionsFromFunction = exports.createZip = exports.createLambda = exports.Lambda = exports.FILES_SYMBOL = void 0;
|
219978
|
-
const assert_1 = __importDefault(
|
219979
|
-
const async_sema_1 = __importDefault(
|
219980
|
-
const yazl_1 =
|
219981
|
-
const minimatch_1 = __importDefault(
|
219982
|
-
const fs_extra_1 =
|
219983
|
-
const download_1 =
|
219984
|
-
const stream_to_buffer_1 = __importDefault(
|
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));
|
219985
219928
|
exports.FILES_SYMBOL = Symbol('files');
|
219986
219929
|
class Lambda {
|
219987
219930
|
constructor({ zipBuffer, handler, runtime, maxDuration, memory, environment, allowQuery, regions, }) {
|
@@ -220210,12 +220153,12 @@ exports.buildsSchema = {
|
|
220210
220153
|
/***/ }),
|
220211
220154
|
|
220212
220155
|
/***/ 2564:
|
220213
|
-
/***/ ((__unused_webpack_module, exports,
|
220156
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_1029256__) => {
|
220214
220157
|
|
220215
220158
|
"use strict";
|
220216
220159
|
|
220217
220160
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
220218
|
-
const path_1 =
|
220161
|
+
const path_1 = __nested_webpack_require_1029256__(5622);
|
220219
220162
|
function shouldServe({ entrypoint, files, requestPath, }) {
|
220220
220163
|
requestPath = requestPath.replace(/\/$/, ''); // sanitize trailing '/'
|
220221
220164
|
entrypoint = entrypoint.replace(/\\/, '/'); // windows compatibility
|
@@ -220452,7 +220395,7 @@ module.exports = __webpack_require__(78761);
|
|
220452
220395
|
/******/ var __webpack_module_cache__ = {};
|
220453
220396
|
/******/
|
220454
220397
|
/******/ // The require function
|
220455
|
-
/******/ function
|
220398
|
+
/******/ function __nested_webpack_require_1128991__(moduleId) {
|
220456
220399
|
/******/ // Check if module is in cache
|
220457
220400
|
/******/ if(__webpack_module_cache__[moduleId]) {
|
220458
220401
|
/******/ return __webpack_module_cache__[moduleId].exports;
|
@@ -220467,7 +220410,7 @@ module.exports = __webpack_require__(78761);
|
|
220467
220410
|
/******/ // Execute the module function
|
220468
220411
|
/******/ var threw = true;
|
220469
220412
|
/******/ try {
|
220470
|
-
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports,
|
220413
|
+
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __nested_webpack_require_1128991__);
|
220471
220414
|
/******/ threw = false;
|
220472
220415
|
/******/ } finally {
|
220473
220416
|
/******/ if(threw) delete __webpack_module_cache__[moduleId];
|
@@ -220480,11 +220423,11 @@ module.exports = __webpack_require__(78761);
|
|
220480
220423
|
/************************************************************************/
|
220481
220424
|
/******/ /* webpack/runtime/compat */
|
220482
220425
|
/******/
|
220483
|
-
/******/
|
220426
|
+
/******/ __nested_webpack_require_1128991__.ab = __dirname + "/";/************************************************************************/
|
220484
220427
|
/******/ // module exports must be returned from runtime so entry inlining is disabled
|
220485
220428
|
/******/ // startup
|
220486
220429
|
/******/ // Load entry module and return exports
|
220487
|
-
/******/ return
|
220430
|
+
/******/ return __nested_webpack_require_1128991__(2855);
|
220488
220431
|
/******/ })()
|
220489
220432
|
;
|
220490
220433
|
|
@@ -242784,7 +242727,6 @@ exports.frameworks = [
|
|
242784
242727
|
},
|
242785
242728
|
dependency: 'gatsby',
|
242786
242729
|
getOutputDirName: async () => 'public',
|
242787
|
-
getFsOutputDir: async () => 'public',
|
242788
242730
|
defaultRoutes: async (dirPrefix) => {
|
242789
242731
|
// This file could be generated by gatsby-plugin-now or gatsby-plugin-zeit-now
|
242790
242732
|
try {
|
@@ -242865,7 +242807,6 @@ exports.frameworks = [
|
|
242865
242807
|
},
|
242866
242808
|
},
|
242867
242809
|
dependency: 'remix',
|
242868
|
-
getFsOutputDir: async () => 'public',
|
242869
242810
|
getOutputDirName: async () => 'public',
|
242870
242811
|
defaultRoutes: [
|
242871
242812
|
{
|
@@ -242893,10 +242834,13 @@ exports.frameworks = [
|
|
242893
242834
|
source: '/build/(.*)',
|
242894
242835
|
regex: '/build/(.*)',
|
242895
242836
|
headers: [
|
242896
|
-
{
|
242837
|
+
{
|
242838
|
+
key: 'cache-control',
|
242839
|
+
value: 'public, max-age=31536000, immutable',
|
242840
|
+
},
|
242897
242841
|
],
|
242898
242842
|
},
|
242899
|
-
]
|
242843
|
+
],
|
242900
242844
|
},
|
242901
242845
|
{
|
242902
242846
|
name: 'Hexo',
|
@@ -242931,7 +242875,6 @@ exports.frameworks = [
|
|
242931
242875
|
},
|
242932
242876
|
},
|
242933
242877
|
dependency: 'hexo',
|
242934
|
-
getFsOutputDir: async () => 'public',
|
242935
242878
|
getOutputDirName: async () => 'public',
|
242936
242879
|
},
|
242937
242880
|
{
|
@@ -242967,7 +242910,6 @@ exports.frameworks = [
|
|
242967
242910
|
},
|
242968
242911
|
},
|
242969
242912
|
dependency: '@11ty/eleventy',
|
242970
|
-
getFsOutputDir: async () => '_site',
|
242971
242913
|
getOutputDirName: async () => '_site',
|
242972
242914
|
cachePattern: '.cache/**',
|
242973
242915
|
},
|
@@ -243004,21 +242946,6 @@ exports.frameworks = [
|
|
243004
242946
|
},
|
243005
242947
|
},
|
243006
242948
|
dependency: '@docusaurus/core',
|
243007
|
-
getFsOutputDir: async (dirPrefix) => {
|
243008
|
-
const base = 'build';
|
243009
|
-
try {
|
243010
|
-
const location = path_1.join(dirPrefix, base);
|
243011
|
-
const content = await readdir(location, { withFileTypes: true });
|
243012
|
-
// If there is only one file in it that is a dir we'll use it as dist dir
|
243013
|
-
if (content.length === 1 && content[0].isDirectory()) {
|
243014
|
-
return path_1.join(base, content[0].name);
|
243015
|
-
}
|
243016
|
-
}
|
243017
|
-
catch (error) {
|
243018
|
-
console.error(`Error detecting output directory: `, error);
|
243019
|
-
}
|
243020
|
-
return base;
|
243021
|
-
},
|
243022
242949
|
getOutputDirName: async (dirPrefix) => {
|
243023
242950
|
const base = 'build';
|
243024
242951
|
try {
|
@@ -243148,21 +243075,6 @@ exports.frameworks = [
|
|
243148
243075
|
},
|
243149
243076
|
},
|
243150
243077
|
dependency: 'docusaurus',
|
243151
|
-
getFsOutputDir: async (dirPrefix) => {
|
243152
|
-
const base = 'build';
|
243153
|
-
try {
|
243154
|
-
const location = path_1.join(dirPrefix, base);
|
243155
|
-
const content = await readdir(location, { withFileTypes: true });
|
243156
|
-
// If there is only one file in it that is a dir we'll use it as dist dir
|
243157
|
-
if (content.length === 1 && content[0].isDirectory()) {
|
243158
|
-
return path_1.join(base, content[0].name);
|
243159
|
-
}
|
243160
|
-
}
|
243161
|
-
catch (error) {
|
243162
|
-
console.error(`Error detecting output directory: `, error);
|
243163
|
-
}
|
243164
|
-
return base;
|
243165
|
-
},
|
243166
243078
|
getOutputDirName: async (dirPrefix) => {
|
243167
243079
|
const base = 'build';
|
243168
243080
|
try {
|
@@ -243212,7 +243124,6 @@ exports.frameworks = [
|
|
243212
243124
|
},
|
243213
243125
|
},
|
243214
243126
|
dependency: 'preact-cli',
|
243215
|
-
getFsOutputDir: async () => 'build',
|
243216
243127
|
getOutputDirName: async () => 'build',
|
243217
243128
|
defaultRoutes: [
|
243218
243129
|
{
|
@@ -243267,7 +243178,6 @@ exports.frameworks = [
|
|
243267
243178
|
},
|
243268
243179
|
},
|
243269
243180
|
dependency: '@dojo/cli',
|
243270
|
-
getFsOutputDir: async () => 'output/dist',
|
243271
243181
|
getOutputDirName: async () => path_1.join('output', 'dist'),
|
243272
243182
|
defaultRoutes: [
|
243273
243183
|
{
|
@@ -243332,7 +243242,6 @@ exports.frameworks = [
|
|
243332
243242
|
},
|
243333
243243
|
},
|
243334
243244
|
dependency: 'ember-cli',
|
243335
|
-
getFsOutputDir: async () => 'dist',
|
243336
243245
|
getOutputDirName: async () => 'dist',
|
243337
243246
|
defaultRoutes: [
|
243338
243247
|
{
|
@@ -243385,7 +243294,6 @@ exports.frameworks = [
|
|
243385
243294
|
},
|
243386
243295
|
},
|
243387
243296
|
dependency: '@vue/cli-service',
|
243388
|
-
getFsOutputDir: async () => 'dist',
|
243389
243297
|
getOutputDirName: async () => 'dist',
|
243390
243298
|
defaultRoutes: [
|
243391
243299
|
{
|
@@ -243461,7 +243369,6 @@ exports.frameworks = [
|
|
243461
243369
|
},
|
243462
243370
|
},
|
243463
243371
|
dependency: '@scullyio/init',
|
243464
|
-
getFsOutputDir: async () => 'dist',
|
243465
243372
|
getOutputDirName: async () => 'dist/static',
|
243466
243373
|
},
|
243467
243374
|
{
|
@@ -243496,7 +243403,6 @@ exports.frameworks = [
|
|
243496
243403
|
},
|
243497
243404
|
},
|
243498
243405
|
dependency: '@ionic/angular',
|
243499
|
-
getFsOutputDir: async () => 'www',
|
243500
243406
|
getOutputDirName: async () => 'www',
|
243501
243407
|
defaultRoutes: [
|
243502
243408
|
{
|
@@ -243548,7 +243454,6 @@ exports.frameworks = [
|
|
243548
243454
|
},
|
243549
243455
|
},
|
243550
243456
|
dependency: '@angular/cli',
|
243551
|
-
getFsOutputDir: async () => 'dist',
|
243552
243457
|
getOutputDirName: async (dirPrefix) => {
|
243553
243458
|
const base = 'dist';
|
243554
243459
|
try {
|
@@ -243614,7 +243519,6 @@ exports.frameworks = [
|
|
243614
243519
|
},
|
243615
243520
|
},
|
243616
243521
|
dependency: 'polymer-cli',
|
243617
|
-
getFsOutputDir: async () => 'build',
|
243618
243522
|
getOutputDirName: async (dirPrefix) => {
|
243619
243523
|
const base = 'build';
|
243620
243524
|
try {
|
@@ -243682,7 +243586,6 @@ exports.frameworks = [
|
|
243682
243586
|
},
|
243683
243587
|
},
|
243684
243588
|
dependency: 'sirv-cli',
|
243685
|
-
getFsOutputDir: async () => 'public',
|
243686
243589
|
getOutputDirName: async () => 'public',
|
243687
243590
|
defaultRoutes: [
|
243688
243591
|
{
|
@@ -243730,10 +243633,9 @@ exports.frameworks = [
|
|
243730
243633
|
placeholder: 'svelte-kit dev',
|
243731
243634
|
},
|
243732
243635
|
outputDirectory: {
|
243733
|
-
|
243636
|
+
value: 'public',
|
243734
243637
|
},
|
243735
243638
|
},
|
243736
|
-
getFsOutputDir: async () => '.output',
|
243737
243639
|
getOutputDirName: async () => 'public',
|
243738
243640
|
},
|
243739
243641
|
{
|
@@ -243768,7 +243670,6 @@ exports.frameworks = [
|
|
243768
243670
|
},
|
243769
243671
|
},
|
243770
243672
|
dependency: '@ionic/react',
|
243771
|
-
getFsOutputDir: async () => 'build',
|
243772
243673
|
getOutputDirName: async () => 'build',
|
243773
243674
|
defaultRoutes: [
|
243774
243675
|
{
|
@@ -243873,7 +243774,6 @@ exports.frameworks = [
|
|
243873
243774
|
},
|
243874
243775
|
},
|
243875
243776
|
dependency: 'react-scripts',
|
243876
|
-
getFsOutputDir: async () => 'build',
|
243877
243777
|
getOutputDirName: async () => 'build',
|
243878
243778
|
defaultRoutes: [
|
243879
243779
|
{
|
@@ -243973,7 +243873,6 @@ exports.frameworks = [
|
|
243973
243873
|
},
|
243974
243874
|
},
|
243975
243875
|
dependency: 'gridsome',
|
243976
|
-
getFsOutputDir: async () => 'dist',
|
243977
243876
|
getOutputDirName: async () => 'dist',
|
243978
243877
|
},
|
243979
243878
|
{
|
@@ -244009,7 +243908,6 @@ exports.frameworks = [
|
|
244009
243908
|
},
|
244010
243909
|
},
|
244011
243910
|
dependency: 'umi',
|
244012
|
-
getFsOutputDir: async () => 'dist',
|
244013
243911
|
getOutputDirName: async () => 'dist',
|
244014
243912
|
defaultRoutes: [
|
244015
243913
|
{
|
@@ -244061,7 +243959,6 @@ exports.frameworks = [
|
|
244061
243959
|
},
|
244062
243960
|
},
|
244063
243961
|
dependency: 'sapper',
|
244064
|
-
getFsOutputDir: async () => '__sapper__/export',
|
244065
243962
|
getOutputDirName: async () => '__sapper__/export',
|
244066
243963
|
},
|
244067
243964
|
{
|
@@ -244097,7 +243994,6 @@ exports.frameworks = [
|
|
244097
243994
|
},
|
244098
243995
|
},
|
244099
243996
|
dependency: 'saber',
|
244100
|
-
getFsOutputDir: async () => 'public',
|
244101
243997
|
getOutputDirName: async () => 'public',
|
244102
243998
|
defaultRoutes: [
|
244103
243999
|
{
|
@@ -244164,7 +244060,6 @@ exports.frameworks = [
|
|
244164
244060
|
},
|
244165
244061
|
},
|
244166
244062
|
dependency: '@stencil/core',
|
244167
|
-
getFsOutputDir: async () => 'www',
|
244168
244063
|
getOutputDirName: async () => 'www',
|
244169
244064
|
defaultRoutes: [
|
244170
244065
|
{
|
@@ -244251,7 +244146,6 @@ exports.frameworks = [
|
|
244251
244146
|
},
|
244252
244147
|
},
|
244253
244148
|
dependency: 'nuxt',
|
244254
|
-
getFsOutputDir: async () => '.output',
|
244255
244149
|
getOutputDirName: async () => 'dist',
|
244256
244150
|
cachePattern: '.nuxt/**',
|
244257
244151
|
defaultRoutes: [
|
@@ -244308,7 +244202,6 @@ exports.frameworks = [
|
|
244308
244202
|
placeholder: 'RedwoodJS default',
|
244309
244203
|
},
|
244310
244204
|
},
|
244311
|
-
getFsOutputDir: async () => 'public',
|
244312
244205
|
getOutputDirName: async () => 'public',
|
244313
244206
|
},
|
244314
244207
|
{
|
@@ -244351,12 +244244,6 @@ exports.frameworks = [
|
|
244351
244244
|
placeholder: '`public` or `publishDir` from the `config` file',
|
244352
244245
|
},
|
244353
244246
|
},
|
244354
|
-
getFsOutputDir: async (dirPrefix) => {
|
244355
|
-
const config = await read_config_file_1.readConfigFile(['config.json', 'config.yaml', 'config.toml'].map(fileName => {
|
244356
|
-
return path_1.join(dirPrefix, fileName);
|
244357
|
-
}));
|
244358
|
-
return (config && config.publishDir) || 'public';
|
244359
|
-
},
|
244360
244247
|
getOutputDirName: async (dirPrefix) => {
|
244361
244248
|
const config = await read_config_file_1.readConfigFile(['config.json', 'config.yaml', 'config.toml'].map(fileName => {
|
244362
244249
|
return path_1.join(dirPrefix, fileName);
|
@@ -244396,10 +244283,6 @@ exports.frameworks = [
|
|
244396
244283
|
placeholder: '`_site` or `destination` from `_config.yml`',
|
244397
244284
|
},
|
244398
244285
|
},
|
244399
|
-
getFsOutputDir: async (dirPrefix) => {
|
244400
|
-
const config = await read_config_file_1.readConfigFile(path_1.join(dirPrefix, '_config.yml'));
|
244401
|
-
return (config && config.destination) || '_site';
|
244402
|
-
},
|
244403
244286
|
getOutputDirName: async (dirPrefix) => {
|
244404
244287
|
const config = await read_config_file_1.readConfigFile(path_1.join(dirPrefix, '_config.yml'));
|
244405
244288
|
return (config && config.destination) || '_site';
|
@@ -244437,7 +244320,6 @@ exports.frameworks = [
|
|
244437
244320
|
value: 'public',
|
244438
244321
|
},
|
244439
244322
|
},
|
244440
|
-
getFsOutputDir: async () => 'public',
|
244441
244323
|
getOutputDirName: async () => 'public',
|
244442
244324
|
},
|
244443
244325
|
{
|
@@ -244471,7 +244353,6 @@ exports.frameworks = [
|
|
244471
244353
|
value: 'build',
|
244472
244354
|
},
|
244473
244355
|
},
|
244474
|
-
getFsOutputDir: async () => 'build',
|
244475
244356
|
getOutputDirName: async () => 'build',
|
244476
244357
|
cachePattern: '{vendor/bin,vendor/cache,vendor/bundle}/**',
|
244477
244358
|
},
|
@@ -244506,7 +244387,6 @@ exports.frameworks = [
|
|
244506
244387
|
value: 'public',
|
244507
244388
|
},
|
244508
244389
|
},
|
244509
|
-
getFsOutputDir: async () => 'public',
|
244510
244390
|
getOutputDirName: async () => 'public',
|
244511
244391
|
defaultVersion: '0.13.0',
|
244512
244392
|
},
|
@@ -244544,7 +244424,6 @@ exports.frameworks = [
|
|
244544
244424
|
},
|
244545
244425
|
},
|
244546
244426
|
dependency: 'vite',
|
244547
|
-
getFsOutputDir: async () => 'dist',
|
244548
244427
|
getOutputDirName: async () => 'dist',
|
244549
244428
|
},
|
244550
244429
|
{
|
@@ -244580,7 +244459,6 @@ exports.frameworks = [
|
|
244580
244459
|
},
|
244581
244460
|
},
|
244582
244461
|
dependency: 'parcel',
|
244583
|
-
getFsOutputDir: async () => 'dist',
|
244584
244462
|
getOutputDirName: async () => 'dist',
|
244585
244463
|
defaultRoutes: [
|
244586
244464
|
{
|
@@ -250701,16 +250579,17 @@ async function main(client) {
|
|
250701
250579
|
client.output.debug(`Found ${param_1.default('.next')} directory.`);
|
250702
250580
|
}
|
250703
250581
|
// We cannot rely on the `framework` alone, as it might be a static export,
|
250704
|
-
// and the current build might use a
|
250582
|
+
// and the current build might use a different project that's not in the settings.
|
250705
250583
|
const isNextOutput = Boolean(dotNextDir);
|
250706
250584
|
const nextExport = await getNextExportStatus(dotNextDir);
|
250707
250585
|
const outputDir = isNextOutput && !nextExport ? OUTPUT_DIR : path_1.join(OUTPUT_DIR, 'static');
|
250586
|
+
const getDistDir = framework.getFsOutputDir || framework.getOutputDirName;
|
250708
250587
|
const distDir = ((nextExport === null || nextExport === void 0 ? void 0 : nextExport.exportDetail.outDirectory)
|
250709
250588
|
? path_1.relative(cwd, nextExport.exportDetail.outDirectory)
|
250710
250589
|
: false) ||
|
250711
250590
|
dotNextDir ||
|
250712
250591
|
userOutputDirectory ||
|
250713
|
-
(await
|
250592
|
+
(await getDistDir(cwd));
|
250714
250593
|
await fs_extra_1.default.ensureDir(path_1.join(cwd, outputDir));
|
250715
250594
|
const copyStamp = stamp_1.default();
|
250716
250595
|
client.output.spinner(`Copying files from ${param_1.default(distDir)} to ${param_1.default(outputDir)}`);
|
@@ -271316,7 +271195,7 @@ module.exports = JSON.parse("[\"ac\",\"com.ac\",\"edu.ac\",\"gov.ac\",\"net.ac\"
|
|
271316
271195
|
/***/ ((module) => {
|
271317
271196
|
|
271318
271197
|
"use strict";
|
271319
|
-
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"23.1.3-canary.
|
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\"}");
|
271320
271199
|
|
271321
271200
|
/***/ }),
|
271322
271201
|
|
@@ -271332,7 +271211,7 @@ module.exports = JSON.parse("{\"VISA\":\"Visa\",\"MASTERCARD\":\"MasterCard\",\"
|
|
271332
271211
|
/***/ ((module) => {
|
271333
271212
|
|
271334
271213
|
"use strict";
|
271335
|
-
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.2.3-canary.
|
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\"}");
|
271336
271215
|
|
271337
271216
|
/***/ }),
|
271338
271217
|
|