vercel 23.1.3-canary.59 → 23.1.3-canary.62
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 +253 -512
- 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,
|
@@ -217474,7 +217409,6 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
|
|
217474
217409
|
`api-routes-${pluginName}`);
|
217475
217410
|
await fs_extra_1.default.ensureDir(traceDir);
|
217476
217411
|
let newPathsRuntime = new Set();
|
217477
|
-
let linkersRuntime = [];
|
217478
217412
|
const entryDir = path_1.join('.output', 'server', 'pages');
|
217479
217413
|
const entryRoot = path_1.join(workPath, entryDir);
|
217480
217414
|
for (const entrypoint of Object.keys(entrypoints)) {
|
@@ -217487,6 +217421,7 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
|
|
217487
217421
|
},
|
217488
217422
|
meta: {
|
217489
217423
|
avoidTopLevelInstall: true,
|
217424
|
+
skipDownload: true,
|
217490
217425
|
},
|
217491
217426
|
});
|
217492
217427
|
// Legacy Runtimes tend to pollute the `workPath` with compiled results,
|
@@ -217580,56 +217515,22 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
|
|
217580
217515
|
}
|
217581
217516
|
}
|
217582
217517
|
}
|
217583
|
-
const tracedFiles = [];
|
217584
|
-
const linkers = Object.entries(lambdaFiles).map(async ([relPath, file]) => {
|
217585
|
-
const newPath = path_1.join(traceDir, relPath);
|
217586
|
-
// The handler was already moved into position above.
|
217587
|
-
if (relPath === handlerFileBase) {
|
217588
|
-
return;
|
217589
|
-
}
|
217590
|
-
tracedFiles.push({ absolutePath: newPath, relativePath: relPath });
|
217591
|
-
const { fsPath, type } = file;
|
217592
|
-
if (fsPath) {
|
217593
|
-
await fs_extra_1.default.ensureDir(path_1.dirname(newPath));
|
217594
|
-
const isNewFile = newFilesEntrypoint.includes(fsPath);
|
217595
|
-
const isInsideNewDirectory = newDirectoriesEntrypoint.some(dirPath => {
|
217596
|
-
return fsPath.startsWith(dirPath);
|
217597
|
-
});
|
217598
|
-
// With this, we're making sure that files in the `workPath` that existed
|
217599
|
-
// before the Legacy Runtime was invoked (source files) are linked from
|
217600
|
-
// `.output` instead of copying there (the latter only happens if linking fails),
|
217601
|
-
// which is the fastest solution. However, files that are created fresh
|
217602
|
-
// by the Legacy Runtimes are always copied, because their link destinations
|
217603
|
-
// are likely to be overwritten every time an entrypoint is processed by
|
217604
|
-
// the Legacy Runtime. This is likely to overwrite the destination on subsequent
|
217605
|
-
// runs, but that's also how `workPath` used to work originally, without
|
217606
|
-
// the File System API (meaning that there was one `workPath` for all entrypoints).
|
217607
|
-
if (isNewFile || isInsideNewDirectory) {
|
217608
|
-
_1.debug(`Copying from ${fsPath} to ${newPath}`);
|
217609
|
-
await fs_extra_1.default.copy(fsPath, newPath);
|
217610
|
-
}
|
217611
|
-
else {
|
217612
|
-
await linkOrCopy(fsPath, newPath);
|
217613
|
-
}
|
217614
|
-
}
|
217615
|
-
else if (type === 'FileBlob') {
|
217616
|
-
const { data, mode } = file;
|
217617
|
-
await fs_extra_1.default.writeFile(newPath, data, { mode });
|
217618
|
-
}
|
217619
|
-
else {
|
217620
|
-
throw new Error(`Unknown file type: ${type}`);
|
217621
|
-
}
|
217622
|
-
});
|
217623
|
-
linkersRuntime = linkersRuntime.concat(linkers);
|
217624
217518
|
const nft = `${entry}.nft.json`;
|
217625
217519
|
const json = JSON.stringify({
|
217626
|
-
version:
|
217627
|
-
files:
|
217628
|
-
|
217629
|
-
|
217630
|
-
|
217631
|
-
|
217632
|
-
|
217520
|
+
version: 2,
|
217521
|
+
files: Object.keys(lambdaFiles)
|
217522
|
+
.map(file => {
|
217523
|
+
const { fsPath } = lambdaFiles[file];
|
217524
|
+
if (!fsPath) {
|
217525
|
+
throw new Error(`File "${file}" is missing valid \`fsPath\` property`);
|
217526
|
+
}
|
217527
|
+
// The handler was already moved into position above.
|
217528
|
+
if (file === handlerFileBase) {
|
217529
|
+
return;
|
217530
|
+
}
|
217531
|
+
return normalize_path_1.normalizePath(path_1.relative(path_1.dirname(nft), fsPath));
|
217532
|
+
})
|
217533
|
+
.filter(Boolean),
|
217633
217534
|
});
|
217634
217535
|
await fs_extra_1.default.ensureDir(path_1.dirname(nft));
|
217635
217536
|
await fs_extra_1.default.writeFile(nft, json);
|
@@ -217656,11 +217557,6 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
|
|
217656
217557
|
allowQuery: output.allowQuery,
|
217657
217558
|
};
|
217658
217559
|
}
|
217659
|
-
// Instead of of waiting for all of the linking to be done for every
|
217660
|
-
// entrypoint before processing the next one, we immediately handle all
|
217661
|
-
// of them one after the other, while then waiting for the linking
|
217662
|
-
// to finish right here, before we clean up newly created files below.
|
217663
|
-
await Promise.all(linkersRuntime);
|
217664
217560
|
// A list of all the files that were created by the Legacy Runtime,
|
217665
217561
|
// which we'd like to remove from the File System.
|
217666
217562
|
const toRemove = Array.from(newPathsRuntime).map(path => {
|
@@ -217679,16 +217575,6 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
|
|
217679
217575
|
};
|
217680
217576
|
}
|
217681
217577
|
exports.convertRuntimeToPlugin = convertRuntimeToPlugin;
|
217682
|
-
async function linkOrCopy(existingPath, newPath) {
|
217683
|
-
try {
|
217684
|
-
await fs_extra_1.default.createLink(existingPath, newPath);
|
217685
|
-
}
|
217686
|
-
catch (err) {
|
217687
|
-
if (err.code !== 'EEXIST') {
|
217688
|
-
await fs_extra_1.default.copyFile(existingPath, newPath);
|
217689
|
-
}
|
217690
|
-
}
|
217691
|
-
}
|
217692
217578
|
async function readJson(filePath) {
|
217693
217579
|
try {
|
217694
217580
|
const str = await fs_extra_1.default.readFile(filePath, 'utf8');
|
@@ -217709,7 +217595,7 @@ async function updateFunctionsManifest({ workPath, pages, }) {
|
|
217709
217595
|
const functionsManifestPath = path_1.join(workPath, '.output', 'functions-manifest.json');
|
217710
217596
|
const functionsManifest = await readJson(functionsManifestPath);
|
217711
217597
|
if (!functionsManifest.version)
|
217712
|
-
functionsManifest.version =
|
217598
|
+
functionsManifest.version = 2;
|
217713
217599
|
if (!functionsManifest.pages)
|
217714
217600
|
functionsManifest.pages = {};
|
217715
217601
|
for (const [pageKey, pageConfig] of Object.entries(pages)) {
|
@@ -217762,12 +217648,12 @@ exports.updateRoutesManifest = updateRoutesManifest;
|
|
217762
217648
|
/***/ }),
|
217763
217649
|
|
217764
217650
|
/***/ 1868:
|
217765
|
-
/***/ ((__unused_webpack_module, exports,
|
217651
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_930713__) => {
|
217766
217652
|
|
217767
217653
|
"use strict";
|
217768
217654
|
|
217769
217655
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
217770
|
-
const _1 =
|
217656
|
+
const _1 = __nested_webpack_require_930713__(2855);
|
217771
217657
|
function debug(message, ...additional) {
|
217772
217658
|
if (_1.getPlatformEnv('BUILDER_DEBUG')) {
|
217773
217659
|
console.log(message, ...additional);
|
@@ -217779,7 +217665,7 @@ exports.default = debug;
|
|
217779
217665
|
/***/ }),
|
217780
217666
|
|
217781
217667
|
/***/ 4246:
|
217782
|
-
/***/ (function(__unused_webpack_module, exports,
|
217668
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_931098__) {
|
217783
217669
|
|
217784
217670
|
"use strict";
|
217785
217671
|
|
@@ -217788,11 +217674,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
217788
217674
|
};
|
217789
217675
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
217790
217676
|
exports.detectBuilders = exports.detectOutputDirectory = exports.detectApiDirectory = exports.detectApiExtensions = exports.sortFiles = void 0;
|
217791
|
-
const minimatch_1 = __importDefault(
|
217792
|
-
const semver_1 =
|
217793
|
-
const path_1 =
|
217794
|
-
const frameworks_1 = __importDefault(
|
217795
|
-
const _1 =
|
217677
|
+
const minimatch_1 = __importDefault(__nested_webpack_require_931098__(9566));
|
217678
|
+
const semver_1 = __nested_webpack_require_931098__(2879);
|
217679
|
+
const path_1 = __nested_webpack_require_931098__(5622);
|
217680
|
+
const frameworks_1 = __importDefault(__nested_webpack_require_931098__(8438));
|
217681
|
+
const _1 = __nested_webpack_require_931098__(2855);
|
217796
217682
|
const slugToFramework = new Map(frameworks_1.default.map(f => [f.slug, f]));
|
217797
217683
|
// We need to sort the file paths by alphabet to make
|
217798
217684
|
// sure the routes stay in the same order e.g. for deduping
|
@@ -218851,7 +218737,7 @@ function getSuggestion(topLevelProp, additionalProperty) {
|
|
218851
218737
|
/***/ }),
|
218852
218738
|
|
218853
218739
|
/***/ 2397:
|
218854
|
-
/***/ (function(__unused_webpack_module, exports,
|
218740
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_970482__) {
|
218855
218741
|
|
218856
218742
|
"use strict";
|
218857
218743
|
|
@@ -218859,8 +218745,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218859
218745
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
218860
218746
|
};
|
218861
218747
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218862
|
-
const assert_1 = __importDefault(
|
218863
|
-
const into_stream_1 = __importDefault(
|
218748
|
+
const assert_1 = __importDefault(__nested_webpack_require_970482__(2357));
|
218749
|
+
const into_stream_1 = __importDefault(__nested_webpack_require_970482__(6130));
|
218864
218750
|
class FileBlob {
|
218865
218751
|
constructor({ mode = 0o100644, contentType, data }) {
|
218866
218752
|
assert_1.default(typeof mode === 'number');
|
@@ -218892,7 +218778,7 @@ exports.default = FileBlob;
|
|
218892
218778
|
/***/ }),
|
218893
218779
|
|
218894
218780
|
/***/ 9331:
|
218895
|
-
/***/ (function(__unused_webpack_module, exports,
|
218781
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_971934__) {
|
218896
218782
|
|
218897
218783
|
"use strict";
|
218898
218784
|
|
@@ -218900,11 +218786,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218900
218786
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
218901
218787
|
};
|
218902
218788
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218903
|
-
const assert_1 = __importDefault(
|
218904
|
-
const fs_extra_1 = __importDefault(
|
218905
|
-
const multistream_1 = __importDefault(
|
218906
|
-
const path_1 = __importDefault(
|
218907
|
-
const async_sema_1 = __importDefault(
|
218789
|
+
const assert_1 = __importDefault(__nested_webpack_require_971934__(2357));
|
218790
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_971934__(5392));
|
218791
|
+
const multistream_1 = __importDefault(__nested_webpack_require_971934__(8179));
|
218792
|
+
const path_1 = __importDefault(__nested_webpack_require_971934__(5622));
|
218793
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_971934__(5758));
|
218908
218794
|
const semaToPreventEMFILE = new async_sema_1.default(20);
|
218909
218795
|
class FileFsRef {
|
218910
218796
|
constructor({ mode = 0o100644, contentType, fsPath }) {
|
@@ -218970,7 +218856,7 @@ exports.default = FileFsRef;
|
|
218970
218856
|
/***/ }),
|
218971
218857
|
|
218972
218858
|
/***/ 5187:
|
218973
|
-
/***/ (function(__unused_webpack_module, exports,
|
218859
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_974738__) {
|
218974
218860
|
|
218975
218861
|
"use strict";
|
218976
218862
|
|
@@ -218978,11 +218864,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218978
218864
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
218979
218865
|
};
|
218980
218866
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218981
|
-
const assert_1 = __importDefault(
|
218982
|
-
const node_fetch_1 = __importDefault(
|
218983
|
-
const multistream_1 = __importDefault(
|
218984
|
-
const async_retry_1 = __importDefault(
|
218985
|
-
const async_sema_1 = __importDefault(
|
218867
|
+
const assert_1 = __importDefault(__nested_webpack_require_974738__(2357));
|
218868
|
+
const node_fetch_1 = __importDefault(__nested_webpack_require_974738__(2197));
|
218869
|
+
const multistream_1 = __importDefault(__nested_webpack_require_974738__(8179));
|
218870
|
+
const async_retry_1 = __importDefault(__nested_webpack_require_974738__(3691));
|
218871
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_974738__(5758));
|
218986
218872
|
const semaToDownloadFromS3 = new async_sema_1.default(5);
|
218987
218873
|
class BailableError extends Error {
|
218988
218874
|
constructor(...args) {
|
@@ -219063,7 +218949,7 @@ exports.default = FileRef;
|
|
219063
218949
|
/***/ }),
|
219064
218950
|
|
219065
218951
|
/***/ 1611:
|
219066
|
-
/***/ (function(__unused_webpack_module, exports,
|
218952
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_978139__) {
|
219067
218953
|
|
219068
218954
|
"use strict";
|
219069
218955
|
|
@@ -219072,10 +218958,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219072
218958
|
};
|
219073
218959
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219074
218960
|
exports.isSymbolicLink = void 0;
|
219075
|
-
const path_1 = __importDefault(
|
219076
|
-
const debug_1 = __importDefault(
|
219077
|
-
const file_fs_ref_1 = __importDefault(
|
219078
|
-
const fs_extra_1 =
|
218961
|
+
const path_1 = __importDefault(__nested_webpack_require_978139__(5622));
|
218962
|
+
const debug_1 = __importDefault(__nested_webpack_require_978139__(1868));
|
218963
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_978139__(9331));
|
218964
|
+
const fs_extra_1 = __nested_webpack_require_978139__(5392);
|
219079
218965
|
const S_IFMT = 61440; /* 0170000 type of file */
|
219080
218966
|
const S_IFLNK = 40960; /* 0120000 symbolic link */
|
219081
218967
|
function isSymbolicLink(mode) {
|
@@ -219137,14 +219023,14 @@ exports.default = download;
|
|
219137
219023
|
/***/ }),
|
219138
219024
|
|
219139
219025
|
/***/ 3838:
|
219140
|
-
/***/ ((__unused_webpack_module, exports,
|
219026
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_980964__) => {
|
219141
219027
|
|
219142
219028
|
"use strict";
|
219143
219029
|
|
219144
219030
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219145
|
-
const path_1 =
|
219146
|
-
const os_1 =
|
219147
|
-
const fs_extra_1 =
|
219031
|
+
const path_1 = __nested_webpack_require_980964__(5622);
|
219032
|
+
const os_1 = __nested_webpack_require_980964__(2087);
|
219033
|
+
const fs_extra_1 = __nested_webpack_require_980964__(5392);
|
219148
219034
|
async function getWritableDirectory() {
|
219149
219035
|
const name = Math.floor(Math.random() * 0x7fffffff).toString(16);
|
219150
219036
|
const directory = path_1.join(os_1.tmpdir(), name);
|
@@ -219157,7 +219043,7 @@ exports.default = getWritableDirectory;
|
|
219157
219043
|
/***/ }),
|
219158
219044
|
|
219159
219045
|
/***/ 4240:
|
219160
|
-
/***/ (function(__unused_webpack_module, exports,
|
219046
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_981544__) {
|
219161
219047
|
|
219162
219048
|
"use strict";
|
219163
219049
|
|
@@ -219165,13 +219051,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219165
219051
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
219166
219052
|
};
|
219167
219053
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219168
|
-
const path_1 = __importDefault(
|
219169
|
-
const assert_1 = __importDefault(
|
219170
|
-
const glob_1 = __importDefault(
|
219171
|
-
const util_1 =
|
219172
|
-
const fs_extra_1 =
|
219173
|
-
const normalize_path_1 =
|
219174
|
-
const file_fs_ref_1 = __importDefault(
|
219054
|
+
const path_1 = __importDefault(__nested_webpack_require_981544__(5622));
|
219055
|
+
const assert_1 = __importDefault(__nested_webpack_require_981544__(2357));
|
219056
|
+
const glob_1 = __importDefault(__nested_webpack_require_981544__(1104));
|
219057
|
+
const util_1 = __nested_webpack_require_981544__(1669);
|
219058
|
+
const fs_extra_1 = __nested_webpack_require_981544__(5392);
|
219059
|
+
const normalize_path_1 = __nested_webpack_require_981544__(6261);
|
219060
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_981544__(9331));
|
219175
219061
|
const vanillaGlob = util_1.promisify(glob_1.default);
|
219176
219062
|
async function glob(pattern, opts, mountpoint) {
|
219177
219063
|
let options;
|
@@ -219217,7 +219103,7 @@ exports.default = glob;
|
|
219217
219103
|
/***/ }),
|
219218
219104
|
|
219219
219105
|
/***/ 7903:
|
219220
|
-
/***/ (function(__unused_webpack_module, exports,
|
219106
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_983740__) {
|
219221
219107
|
|
219222
219108
|
"use strict";
|
219223
219109
|
|
@@ -219226,9 +219112,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219226
219112
|
};
|
219227
219113
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219228
219114
|
exports.getSupportedNodeVersion = exports.getDiscontinuedNodeVersions = exports.getLatestNodeVersion = void 0;
|
219229
|
-
const semver_1 =
|
219230
|
-
const errors_1 =
|
219231
|
-
const debug_1 = __importDefault(
|
219115
|
+
const semver_1 = __nested_webpack_require_983740__(2879);
|
219116
|
+
const errors_1 = __nested_webpack_require_983740__(3983);
|
219117
|
+
const debug_1 = __importDefault(__nested_webpack_require_983740__(1868));
|
219232
219118
|
const allOptions = [
|
219233
219119
|
{ major: 14, range: '14.x', runtime: 'nodejs14.x' },
|
219234
219120
|
{ major: 12, range: '12.x', runtime: 'nodejs12.x' },
|
@@ -219322,7 +219208,7 @@ exports.normalizePath = normalizePath;
|
|
219322
219208
|
/***/ }),
|
219323
219209
|
|
219324
219210
|
/***/ 7792:
|
219325
|
-
/***/ (function(__unused_webpack_module, exports,
|
219211
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_987608__) {
|
219326
219212
|
|
219327
219213
|
"use strict";
|
219328
219214
|
|
@@ -219331,9 +219217,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219331
219217
|
};
|
219332
219218
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219333
219219
|
exports.readConfigFile = void 0;
|
219334
|
-
const js_yaml_1 = __importDefault(
|
219335
|
-
const toml_1 = __importDefault(
|
219336
|
-
const fs_extra_1 =
|
219220
|
+
const js_yaml_1 = __importDefault(__nested_webpack_require_987608__(6540));
|
219221
|
+
const toml_1 = __importDefault(__nested_webpack_require_987608__(9434));
|
219222
|
+
const fs_extra_1 = __nested_webpack_require_987608__(5392);
|
219337
219223
|
async function readFileOrNull(file) {
|
219338
219224
|
try {
|
219339
219225
|
const data = await fs_extra_1.readFile(file);
|
@@ -219388,7 +219274,7 @@ exports.default = rename;
|
|
219388
219274
|
/***/ }),
|
219389
219275
|
|
219390
219276
|
/***/ 1442:
|
219391
|
-
/***/ (function(__unused_webpack_module, exports,
|
219277
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_989401__) {
|
219392
219278
|
|
219393
219279
|
"use strict";
|
219394
219280
|
|
@@ -219397,14 +219283,14 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219397
219283
|
};
|
219398
219284
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219399
219285
|
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;
|
219400
|
-
const assert_1 = __importDefault(
|
219401
|
-
const fs_extra_1 = __importDefault(
|
219402
|
-
const path_1 = __importDefault(
|
219403
|
-
const debug_1 = __importDefault(
|
219404
|
-
const cross_spawn_1 = __importDefault(
|
219405
|
-
const util_1 =
|
219406
|
-
const errors_1 =
|
219407
|
-
const node_version_1 =
|
219286
|
+
const assert_1 = __importDefault(__nested_webpack_require_989401__(2357));
|
219287
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_989401__(5392));
|
219288
|
+
const path_1 = __importDefault(__nested_webpack_require_989401__(5622));
|
219289
|
+
const debug_1 = __importDefault(__nested_webpack_require_989401__(1868));
|
219290
|
+
const cross_spawn_1 = __importDefault(__nested_webpack_require_989401__(7618));
|
219291
|
+
const util_1 = __nested_webpack_require_989401__(1669);
|
219292
|
+
const errors_1 = __nested_webpack_require_989401__(3983);
|
219293
|
+
const node_version_1 = __nested_webpack_require_989401__(7903);
|
219408
219294
|
function spawnAsync(command, args, opts = {}) {
|
219409
219295
|
return new Promise((resolve, reject) => {
|
219410
219296
|
const stderrLogs = [];
|
@@ -219715,7 +219601,7 @@ exports.installDependencies = util_1.deprecate(runNpmInstall, 'installDependenci
|
|
219715
219601
|
/***/ }),
|
219716
219602
|
|
219717
219603
|
/***/ 2560:
|
219718
|
-
/***/ (function(__unused_webpack_module, exports,
|
219604
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1003391__) {
|
219719
219605
|
|
219720
219606
|
"use strict";
|
219721
219607
|
|
@@ -219723,7 +219609,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219723
219609
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
219724
219610
|
};
|
219725
219611
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219726
|
-
const end_of_stream_1 = __importDefault(
|
219612
|
+
const end_of_stream_1 = __importDefault(__nested_webpack_require_1003391__(687));
|
219727
219613
|
function streamToBuffer(stream) {
|
219728
219614
|
return new Promise((resolve, reject) => {
|
219729
219615
|
const buffers = [];
|
@@ -219752,7 +219638,7 @@ exports.default = streamToBuffer;
|
|
219752
219638
|
/***/ }),
|
219753
219639
|
|
219754
219640
|
/***/ 1148:
|
219755
|
-
/***/ (function(__unused_webpack_module, exports,
|
219641
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1004459__) {
|
219756
219642
|
|
219757
219643
|
"use strict";
|
219758
219644
|
|
@@ -219760,9 +219646,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219760
219646
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
219761
219647
|
};
|
219762
219648
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219763
|
-
const path_1 = __importDefault(
|
219764
|
-
const fs_extra_1 = __importDefault(
|
219765
|
-
const ignore_1 = __importDefault(
|
219649
|
+
const path_1 = __importDefault(__nested_webpack_require_1004459__(5622));
|
219650
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_1004459__(5392));
|
219651
|
+
const ignore_1 = __importDefault(__nested_webpack_require_1004459__(3556));
|
219766
219652
|
function isCodedError(error) {
|
219767
219653
|
return (error !== null &&
|
219768
219654
|
error !== undefined &&
|
@@ -219819,7 +219705,7 @@ exports.default = default_1;
|
|
219819
219705
|
/***/ }),
|
219820
219706
|
|
219821
219707
|
/***/ 2855:
|
219822
|
-
/***/ (function(__unused_webpack_module, exports,
|
219708
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1006841__) {
|
219823
219709
|
|
219824
219710
|
"use strict";
|
219825
219711
|
|
@@ -219850,29 +219736,29 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219850
219736
|
};
|
219851
219737
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219852
219738
|
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;
|
219853
|
-
const crypto_1 =
|
219854
|
-
const file_blob_1 = __importDefault(
|
219739
|
+
const crypto_1 = __nested_webpack_require_1006841__(6417);
|
219740
|
+
const file_blob_1 = __importDefault(__nested_webpack_require_1006841__(2397));
|
219855
219741
|
exports.FileBlob = file_blob_1.default;
|
219856
|
-
const file_fs_ref_1 = __importDefault(
|
219742
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_1006841__(9331));
|
219857
219743
|
exports.FileFsRef = file_fs_ref_1.default;
|
219858
|
-
const file_ref_1 = __importDefault(
|
219744
|
+
const file_ref_1 = __importDefault(__nested_webpack_require_1006841__(5187));
|
219859
219745
|
exports.FileRef = file_ref_1.default;
|
219860
|
-
const lambda_1 =
|
219746
|
+
const lambda_1 = __nested_webpack_require_1006841__(6721);
|
219861
219747
|
Object.defineProperty(exports, "Lambda", ({ enumerable: true, get: function () { return lambda_1.Lambda; } }));
|
219862
219748
|
Object.defineProperty(exports, "createLambda", ({ enumerable: true, get: function () { return lambda_1.createLambda; } }));
|
219863
219749
|
Object.defineProperty(exports, "getLambdaOptionsFromFunction", ({ enumerable: true, get: function () { return lambda_1.getLambdaOptionsFromFunction; } }));
|
219864
|
-
const prerender_1 =
|
219750
|
+
const prerender_1 = __nested_webpack_require_1006841__(2850);
|
219865
219751
|
Object.defineProperty(exports, "Prerender", ({ enumerable: true, get: function () { return prerender_1.Prerender; } }));
|
219866
|
-
const download_1 = __importStar(
|
219752
|
+
const download_1 = __importStar(__nested_webpack_require_1006841__(1611));
|
219867
219753
|
exports.download = download_1.default;
|
219868
219754
|
Object.defineProperty(exports, "isSymbolicLink", ({ enumerable: true, get: function () { return download_1.isSymbolicLink; } }));
|
219869
|
-
const get_writable_directory_1 = __importDefault(
|
219755
|
+
const get_writable_directory_1 = __importDefault(__nested_webpack_require_1006841__(3838));
|
219870
219756
|
exports.getWriteableDirectory = get_writable_directory_1.default;
|
219871
|
-
const glob_1 = __importDefault(
|
219757
|
+
const glob_1 = __importDefault(__nested_webpack_require_1006841__(4240));
|
219872
219758
|
exports.glob = glob_1.default;
|
219873
|
-
const rename_1 = __importDefault(
|
219759
|
+
const rename_1 = __importDefault(__nested_webpack_require_1006841__(6718));
|
219874
219760
|
exports.rename = rename_1.default;
|
219875
|
-
const run_user_scripts_1 =
|
219761
|
+
const run_user_scripts_1 = __nested_webpack_require_1006841__(1442);
|
219876
219762
|
Object.defineProperty(exports, "execAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.execAsync; } }));
|
219877
219763
|
Object.defineProperty(exports, "spawnAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.spawnAsync; } }));
|
219878
219764
|
Object.defineProperty(exports, "execCommand", ({ enumerable: true, get: function () { return run_user_scripts_1.execCommand; } }));
|
@@ -219889,38 +219775,38 @@ Object.defineProperty(exports, "getNodeVersion", ({ enumerable: true, get: funct
|
|
219889
219775
|
Object.defineProperty(exports, "getSpawnOptions", ({ enumerable: true, get: function () { return run_user_scripts_1.getSpawnOptions; } }));
|
219890
219776
|
Object.defineProperty(exports, "getNodeBinPath", ({ enumerable: true, get: function () { return run_user_scripts_1.getNodeBinPath; } }));
|
219891
219777
|
Object.defineProperty(exports, "scanParentDirs", ({ enumerable: true, get: function () { return run_user_scripts_1.scanParentDirs; } }));
|
219892
|
-
const node_version_1 =
|
219778
|
+
const node_version_1 = __nested_webpack_require_1006841__(7903);
|
219893
219779
|
Object.defineProperty(exports, "getLatestNodeVersion", ({ enumerable: true, get: function () { return node_version_1.getLatestNodeVersion; } }));
|
219894
219780
|
Object.defineProperty(exports, "getDiscontinuedNodeVersions", ({ enumerable: true, get: function () { return node_version_1.getDiscontinuedNodeVersions; } }));
|
219895
|
-
const errors_1 =
|
219896
|
-
const stream_to_buffer_1 = __importDefault(
|
219781
|
+
const errors_1 = __nested_webpack_require_1006841__(3983);
|
219782
|
+
const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1006841__(2560));
|
219897
219783
|
exports.streamToBuffer = stream_to_buffer_1.default;
|
219898
|
-
const should_serve_1 = __importDefault(
|
219784
|
+
const should_serve_1 = __importDefault(__nested_webpack_require_1006841__(2564));
|
219899
219785
|
exports.shouldServe = should_serve_1.default;
|
219900
|
-
const debug_1 = __importDefault(
|
219786
|
+
const debug_1 = __importDefault(__nested_webpack_require_1006841__(1868));
|
219901
219787
|
exports.debug = debug_1.default;
|
219902
|
-
const get_ignore_filter_1 = __importDefault(
|
219788
|
+
const get_ignore_filter_1 = __importDefault(__nested_webpack_require_1006841__(1148));
|
219903
219789
|
exports.getIgnoreFilter = get_ignore_filter_1.default;
|
219904
|
-
var detect_builders_1 =
|
219790
|
+
var detect_builders_1 = __nested_webpack_require_1006841__(4246);
|
219905
219791
|
Object.defineProperty(exports, "detectBuilders", ({ enumerable: true, get: function () { return detect_builders_1.detectBuilders; } }));
|
219906
219792
|
Object.defineProperty(exports, "detectOutputDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectOutputDirectory; } }));
|
219907
219793
|
Object.defineProperty(exports, "detectApiDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectApiDirectory; } }));
|
219908
219794
|
Object.defineProperty(exports, "detectApiExtensions", ({ enumerable: true, get: function () { return detect_builders_1.detectApiExtensions; } }));
|
219909
|
-
var detect_framework_1 =
|
219795
|
+
var detect_framework_1 = __nested_webpack_require_1006841__(5224);
|
219910
219796
|
Object.defineProperty(exports, "detectFramework", ({ enumerable: true, get: function () { return detect_framework_1.detectFramework; } }));
|
219911
|
-
var filesystem_1 =
|
219797
|
+
var filesystem_1 = __nested_webpack_require_1006841__(461);
|
219912
219798
|
Object.defineProperty(exports, "DetectorFilesystem", ({ enumerable: true, get: function () { return filesystem_1.DetectorFilesystem; } }));
|
219913
|
-
var read_config_file_1 =
|
219799
|
+
var read_config_file_1 = __nested_webpack_require_1006841__(7792);
|
219914
219800
|
Object.defineProperty(exports, "readConfigFile", ({ enumerable: true, get: function () { return read_config_file_1.readConfigFile; } }));
|
219915
|
-
var normalize_path_1 =
|
219801
|
+
var normalize_path_1 = __nested_webpack_require_1006841__(6261);
|
219916
219802
|
Object.defineProperty(exports, "normalizePath", ({ enumerable: true, get: function () { return normalize_path_1.normalizePath; } }));
|
219917
|
-
var convert_runtime_to_plugin_1 =
|
219803
|
+
var convert_runtime_to_plugin_1 = __nested_webpack_require_1006841__(7276);
|
219918
219804
|
Object.defineProperty(exports, "convertRuntimeToPlugin", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.convertRuntimeToPlugin; } }));
|
219919
219805
|
Object.defineProperty(exports, "updateFunctionsManifest", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.updateFunctionsManifest; } }));
|
219920
219806
|
Object.defineProperty(exports, "updateRoutesManifest", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.updateRoutesManifest; } }));
|
219921
|
-
__exportStar(
|
219922
|
-
__exportStar(
|
219923
|
-
__exportStar(
|
219807
|
+
__exportStar(__nested_webpack_require_1006841__(2416), exports);
|
219808
|
+
__exportStar(__nested_webpack_require_1006841__(5748), exports);
|
219809
|
+
__exportStar(__nested_webpack_require_1006841__(3983), exports);
|
219924
219810
|
/**
|
219925
219811
|
* Helper function to support both `@vercel` and legacy `@now` official Runtimes.
|
219926
219812
|
*/
|
@@ -219973,7 +219859,7 @@ exports.getInputHash = getInputHash;
|
|
219973
219859
|
/***/ }),
|
219974
219860
|
|
219975
219861
|
/***/ 6721:
|
219976
|
-
/***/ (function(__unused_webpack_module, exports,
|
219862
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1017819__) {
|
219977
219863
|
|
219978
219864
|
"use strict";
|
219979
219865
|
|
@@ -219982,13 +219868,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219982
219868
|
};
|
219983
219869
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219984
219870
|
exports.getLambdaOptionsFromFunction = exports.createZip = exports.createLambda = exports.Lambda = exports.FILES_SYMBOL = void 0;
|
219985
|
-
const assert_1 = __importDefault(
|
219986
|
-
const async_sema_1 = __importDefault(
|
219987
|
-
const yazl_1 =
|
219988
|
-
const minimatch_1 = __importDefault(
|
219989
|
-
const fs_extra_1 =
|
219990
|
-
const download_1 =
|
219991
|
-
const stream_to_buffer_1 = __importDefault(
|
219871
|
+
const assert_1 = __importDefault(__nested_webpack_require_1017819__(2357));
|
219872
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_1017819__(5758));
|
219873
|
+
const yazl_1 = __nested_webpack_require_1017819__(1223);
|
219874
|
+
const minimatch_1 = __importDefault(__nested_webpack_require_1017819__(9566));
|
219875
|
+
const fs_extra_1 = __nested_webpack_require_1017819__(5392);
|
219876
|
+
const download_1 = __nested_webpack_require_1017819__(1611);
|
219877
|
+
const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1017819__(2560));
|
219992
219878
|
exports.FILES_SYMBOL = Symbol('files');
|
219993
219879
|
class Lambda {
|
219994
219880
|
constructor({ zipBuffer, handler, runtime, maxDuration, memory, environment, allowQuery, regions, }) {
|
@@ -220217,12 +220103,12 @@ exports.buildsSchema = {
|
|
220217
220103
|
/***/ }),
|
220218
220104
|
|
220219
220105
|
/***/ 2564:
|
220220
|
-
/***/ ((__unused_webpack_module, exports,
|
220106
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_1026329__) => {
|
220221
220107
|
|
220222
220108
|
"use strict";
|
220223
220109
|
|
220224
220110
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
220225
|
-
const path_1 =
|
220111
|
+
const path_1 = __nested_webpack_require_1026329__(5622);
|
220226
220112
|
function shouldServe({ entrypoint, files, requestPath, }) {
|
220227
220113
|
requestPath = requestPath.replace(/\/$/, ''); // sanitize trailing '/'
|
220228
220114
|
entrypoint = entrypoint.replace(/\\/, '/'); // windows compatibility
|
@@ -220459,7 +220345,7 @@ module.exports = __webpack_require__(78761);
|
|
220459
220345
|
/******/ var __webpack_module_cache__ = {};
|
220460
220346
|
/******/
|
220461
220347
|
/******/ // The require function
|
220462
|
-
/******/ function
|
220348
|
+
/******/ function __nested_webpack_require_1126064__(moduleId) {
|
220463
220349
|
/******/ // Check if module is in cache
|
220464
220350
|
/******/ if(__webpack_module_cache__[moduleId]) {
|
220465
220351
|
/******/ return __webpack_module_cache__[moduleId].exports;
|
@@ -220474,7 +220360,7 @@ module.exports = __webpack_require__(78761);
|
|
220474
220360
|
/******/ // Execute the module function
|
220475
220361
|
/******/ var threw = true;
|
220476
220362
|
/******/ try {
|
220477
|
-
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports,
|
220363
|
+
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __nested_webpack_require_1126064__);
|
220478
220364
|
/******/ threw = false;
|
220479
220365
|
/******/ } finally {
|
220480
220366
|
/******/ if(threw) delete __webpack_module_cache__[moduleId];
|
@@ -220487,11 +220373,11 @@ module.exports = __webpack_require__(78761);
|
|
220487
220373
|
/************************************************************************/
|
220488
220374
|
/******/ /* webpack/runtime/compat */
|
220489
220375
|
/******/
|
220490
|
-
/******/
|
220376
|
+
/******/ __nested_webpack_require_1126064__.ab = __dirname + "/";/************************************************************************/
|
220491
220377
|
/******/ // module exports must be returned from runtime so entry inlining is disabled
|
220492
220378
|
/******/ // startup
|
220493
220379
|
/******/ // Load entry module and return exports
|
220494
|
-
/******/ return
|
220380
|
+
/******/ return __nested_webpack_require_1126064__(2855);
|
220495
220381
|
/******/ })()
|
220496
220382
|
;
|
220497
220383
|
|
@@ -242791,7 +242677,6 @@ exports.frameworks = [
|
|
242791
242677
|
},
|
242792
242678
|
dependency: 'gatsby',
|
242793
242679
|
getOutputDirName: async () => 'public',
|
242794
|
-
getFsOutputDir: async () => 'public',
|
242795
242680
|
defaultRoutes: async (dirPrefix) => {
|
242796
242681
|
// This file could be generated by gatsby-plugin-now or gatsby-plugin-zeit-now
|
242797
242682
|
try {
|
@@ -242872,7 +242757,6 @@ exports.frameworks = [
|
|
242872
242757
|
},
|
242873
242758
|
},
|
242874
242759
|
dependency: 'remix',
|
242875
|
-
getFsOutputDir: async () => 'public',
|
242876
242760
|
getOutputDirName: async () => 'public',
|
242877
242761
|
defaultRoutes: [
|
242878
242762
|
{
|
@@ -242900,10 +242784,13 @@ exports.frameworks = [
|
|
242900
242784
|
source: '/build/(.*)',
|
242901
242785
|
regex: '/build/(.*)',
|
242902
242786
|
headers: [
|
242903
|
-
{
|
242787
|
+
{
|
242788
|
+
key: 'cache-control',
|
242789
|
+
value: 'public, max-age=31536000, immutable',
|
242790
|
+
},
|
242904
242791
|
],
|
242905
242792
|
},
|
242906
|
-
]
|
242793
|
+
],
|
242907
242794
|
},
|
242908
242795
|
{
|
242909
242796
|
name: 'Hexo',
|
@@ -242938,7 +242825,6 @@ exports.frameworks = [
|
|
242938
242825
|
},
|
242939
242826
|
},
|
242940
242827
|
dependency: 'hexo',
|
242941
|
-
getFsOutputDir: async () => 'public',
|
242942
242828
|
getOutputDirName: async () => 'public',
|
242943
242829
|
},
|
242944
242830
|
{
|
@@ -242974,7 +242860,6 @@ exports.frameworks = [
|
|
242974
242860
|
},
|
242975
242861
|
},
|
242976
242862
|
dependency: '@11ty/eleventy',
|
242977
|
-
getFsOutputDir: async () => '_site',
|
242978
242863
|
getOutputDirName: async () => '_site',
|
242979
242864
|
cachePattern: '.cache/**',
|
242980
242865
|
},
|
@@ -243011,21 +242896,6 @@ exports.frameworks = [
|
|
243011
242896
|
},
|
243012
242897
|
},
|
243013
242898
|
dependency: '@docusaurus/core',
|
243014
|
-
getFsOutputDir: async (dirPrefix) => {
|
243015
|
-
const base = 'build';
|
243016
|
-
try {
|
243017
|
-
const location = path_1.join(dirPrefix, base);
|
243018
|
-
const content = await readdir(location, { withFileTypes: true });
|
243019
|
-
// If there is only one file in it that is a dir we'll use it as dist dir
|
243020
|
-
if (content.length === 1 && content[0].isDirectory()) {
|
243021
|
-
return path_1.join(base, content[0].name);
|
243022
|
-
}
|
243023
|
-
}
|
243024
|
-
catch (error) {
|
243025
|
-
console.error(`Error detecting output directory: `, error);
|
243026
|
-
}
|
243027
|
-
return base;
|
243028
|
-
},
|
243029
242899
|
getOutputDirName: async (dirPrefix) => {
|
243030
242900
|
const base = 'build';
|
243031
242901
|
try {
|
@@ -243155,21 +243025,6 @@ exports.frameworks = [
|
|
243155
243025
|
},
|
243156
243026
|
},
|
243157
243027
|
dependency: 'docusaurus',
|
243158
|
-
getFsOutputDir: async (dirPrefix) => {
|
243159
|
-
const base = 'build';
|
243160
|
-
try {
|
243161
|
-
const location = path_1.join(dirPrefix, base);
|
243162
|
-
const content = await readdir(location, { withFileTypes: true });
|
243163
|
-
// If there is only one file in it that is a dir we'll use it as dist dir
|
243164
|
-
if (content.length === 1 && content[0].isDirectory()) {
|
243165
|
-
return path_1.join(base, content[0].name);
|
243166
|
-
}
|
243167
|
-
}
|
243168
|
-
catch (error) {
|
243169
|
-
console.error(`Error detecting output directory: `, error);
|
243170
|
-
}
|
243171
|
-
return base;
|
243172
|
-
},
|
243173
243028
|
getOutputDirName: async (dirPrefix) => {
|
243174
243029
|
const base = 'build';
|
243175
243030
|
try {
|
@@ -243219,7 +243074,6 @@ exports.frameworks = [
|
|
243219
243074
|
},
|
243220
243075
|
},
|
243221
243076
|
dependency: 'preact-cli',
|
243222
|
-
getFsOutputDir: async () => 'build',
|
243223
243077
|
getOutputDirName: async () => 'build',
|
243224
243078
|
defaultRoutes: [
|
243225
243079
|
{
|
@@ -243274,7 +243128,6 @@ exports.frameworks = [
|
|
243274
243128
|
},
|
243275
243129
|
},
|
243276
243130
|
dependency: '@dojo/cli',
|
243277
|
-
getFsOutputDir: async () => 'output/dist',
|
243278
243131
|
getOutputDirName: async () => path_1.join('output', 'dist'),
|
243279
243132
|
defaultRoutes: [
|
243280
243133
|
{
|
@@ -243339,7 +243192,6 @@ exports.frameworks = [
|
|
243339
243192
|
},
|
243340
243193
|
},
|
243341
243194
|
dependency: 'ember-cli',
|
243342
|
-
getFsOutputDir: async () => 'dist',
|
243343
243195
|
getOutputDirName: async () => 'dist',
|
243344
243196
|
defaultRoutes: [
|
243345
243197
|
{
|
@@ -243392,7 +243244,6 @@ exports.frameworks = [
|
|
243392
243244
|
},
|
243393
243245
|
},
|
243394
243246
|
dependency: '@vue/cli-service',
|
243395
|
-
getFsOutputDir: async () => 'dist',
|
243396
243247
|
getOutputDirName: async () => 'dist',
|
243397
243248
|
defaultRoutes: [
|
243398
243249
|
{
|
@@ -243468,7 +243319,6 @@ exports.frameworks = [
|
|
243468
243319
|
},
|
243469
243320
|
},
|
243470
243321
|
dependency: '@scullyio/init',
|
243471
|
-
getFsOutputDir: async () => 'dist',
|
243472
243322
|
getOutputDirName: async () => 'dist/static',
|
243473
243323
|
},
|
243474
243324
|
{
|
@@ -243503,7 +243353,6 @@ exports.frameworks = [
|
|
243503
243353
|
},
|
243504
243354
|
},
|
243505
243355
|
dependency: '@ionic/angular',
|
243506
|
-
getFsOutputDir: async () => 'www',
|
243507
243356
|
getOutputDirName: async () => 'www',
|
243508
243357
|
defaultRoutes: [
|
243509
243358
|
{
|
@@ -243555,7 +243404,6 @@ exports.frameworks = [
|
|
243555
243404
|
},
|
243556
243405
|
},
|
243557
243406
|
dependency: '@angular/cli',
|
243558
|
-
getFsOutputDir: async () => 'dist',
|
243559
243407
|
getOutputDirName: async (dirPrefix) => {
|
243560
243408
|
const base = 'dist';
|
243561
243409
|
try {
|
@@ -243621,7 +243469,6 @@ exports.frameworks = [
|
|
243621
243469
|
},
|
243622
243470
|
},
|
243623
243471
|
dependency: 'polymer-cli',
|
243624
|
-
getFsOutputDir: async () => 'build',
|
243625
243472
|
getOutputDirName: async (dirPrefix) => {
|
243626
243473
|
const base = 'build';
|
243627
243474
|
try {
|
@@ -243689,7 +243536,6 @@ exports.frameworks = [
|
|
243689
243536
|
},
|
243690
243537
|
},
|
243691
243538
|
dependency: 'sirv-cli',
|
243692
|
-
getFsOutputDir: async () => 'public',
|
243693
243539
|
getOutputDirName: async () => 'public',
|
243694
243540
|
defaultRoutes: [
|
243695
243541
|
{
|
@@ -243737,10 +243583,9 @@ exports.frameworks = [
|
|
243737
243583
|
placeholder: 'svelte-kit dev',
|
243738
243584
|
},
|
243739
243585
|
outputDirectory: {
|
243740
|
-
|
243586
|
+
value: 'public',
|
243741
243587
|
},
|
243742
243588
|
},
|
243743
|
-
getFsOutputDir: async () => '.output',
|
243744
243589
|
getOutputDirName: async () => 'public',
|
243745
243590
|
},
|
243746
243591
|
{
|
@@ -243775,7 +243620,6 @@ exports.frameworks = [
|
|
243775
243620
|
},
|
243776
243621
|
},
|
243777
243622
|
dependency: '@ionic/react',
|
243778
|
-
getFsOutputDir: async () => 'build',
|
243779
243623
|
getOutputDirName: async () => 'build',
|
243780
243624
|
defaultRoutes: [
|
243781
243625
|
{
|
@@ -243880,7 +243724,6 @@ exports.frameworks = [
|
|
243880
243724
|
},
|
243881
243725
|
},
|
243882
243726
|
dependency: 'react-scripts',
|
243883
|
-
getFsOutputDir: async () => 'build',
|
243884
243727
|
getOutputDirName: async () => 'build',
|
243885
243728
|
defaultRoutes: [
|
243886
243729
|
{
|
@@ -243980,7 +243823,6 @@ exports.frameworks = [
|
|
243980
243823
|
},
|
243981
243824
|
},
|
243982
243825
|
dependency: 'gridsome',
|
243983
|
-
getFsOutputDir: async () => 'dist',
|
243984
243826
|
getOutputDirName: async () => 'dist',
|
243985
243827
|
},
|
243986
243828
|
{
|
@@ -244016,7 +243858,6 @@ exports.frameworks = [
|
|
244016
243858
|
},
|
244017
243859
|
},
|
244018
243860
|
dependency: 'umi',
|
244019
|
-
getFsOutputDir: async () => 'dist',
|
244020
243861
|
getOutputDirName: async () => 'dist',
|
244021
243862
|
defaultRoutes: [
|
244022
243863
|
{
|
@@ -244068,7 +243909,6 @@ exports.frameworks = [
|
|
244068
243909
|
},
|
244069
243910
|
},
|
244070
243911
|
dependency: 'sapper',
|
244071
|
-
getFsOutputDir: async () => '__sapper__/export',
|
244072
243912
|
getOutputDirName: async () => '__sapper__/export',
|
244073
243913
|
},
|
244074
243914
|
{
|
@@ -244104,7 +243944,6 @@ exports.frameworks = [
|
|
244104
243944
|
},
|
244105
243945
|
},
|
244106
243946
|
dependency: 'saber',
|
244107
|
-
getFsOutputDir: async () => 'public',
|
244108
243947
|
getOutputDirName: async () => 'public',
|
244109
243948
|
defaultRoutes: [
|
244110
243949
|
{
|
@@ -244171,7 +244010,6 @@ exports.frameworks = [
|
|
244171
244010
|
},
|
244172
244011
|
},
|
244173
244012
|
dependency: '@stencil/core',
|
244174
|
-
getFsOutputDir: async () => 'www',
|
244175
244013
|
getOutputDirName: async () => 'www',
|
244176
244014
|
defaultRoutes: [
|
244177
244015
|
{
|
@@ -244258,7 +244096,6 @@ exports.frameworks = [
|
|
244258
244096
|
},
|
244259
244097
|
},
|
244260
244098
|
dependency: 'nuxt',
|
244261
|
-
getFsOutputDir: async () => '.output',
|
244262
244099
|
getOutputDirName: async () => 'dist',
|
244263
244100
|
cachePattern: '.nuxt/**',
|
244264
244101
|
defaultRoutes: [
|
@@ -244315,7 +244152,6 @@ exports.frameworks = [
|
|
244315
244152
|
placeholder: 'RedwoodJS default',
|
244316
244153
|
},
|
244317
244154
|
},
|
244318
|
-
getFsOutputDir: async () => 'public',
|
244319
244155
|
getOutputDirName: async () => 'public',
|
244320
244156
|
},
|
244321
244157
|
{
|
@@ -244358,12 +244194,6 @@ exports.frameworks = [
|
|
244358
244194
|
placeholder: '`public` or `publishDir` from the `config` file',
|
244359
244195
|
},
|
244360
244196
|
},
|
244361
|
-
getFsOutputDir: async (dirPrefix) => {
|
244362
|
-
const config = await read_config_file_1.readConfigFile(['config.json', 'config.yaml', 'config.toml'].map(fileName => {
|
244363
|
-
return path_1.join(dirPrefix, fileName);
|
244364
|
-
}));
|
244365
|
-
return (config && config.publishDir) || 'public';
|
244366
|
-
},
|
244367
244197
|
getOutputDirName: async (dirPrefix) => {
|
244368
244198
|
const config = await read_config_file_1.readConfigFile(['config.json', 'config.yaml', 'config.toml'].map(fileName => {
|
244369
244199
|
return path_1.join(dirPrefix, fileName);
|
@@ -244403,10 +244233,6 @@ exports.frameworks = [
|
|
244403
244233
|
placeholder: '`_site` or `destination` from `_config.yml`',
|
244404
244234
|
},
|
244405
244235
|
},
|
244406
|
-
getFsOutputDir: async (dirPrefix) => {
|
244407
|
-
const config = await read_config_file_1.readConfigFile(path_1.join(dirPrefix, '_config.yml'));
|
244408
|
-
return (config && config.destination) || '_site';
|
244409
|
-
},
|
244410
244236
|
getOutputDirName: async (dirPrefix) => {
|
244411
244237
|
const config = await read_config_file_1.readConfigFile(path_1.join(dirPrefix, '_config.yml'));
|
244412
244238
|
return (config && config.destination) || '_site';
|
@@ -244444,7 +244270,6 @@ exports.frameworks = [
|
|
244444
244270
|
value: 'public',
|
244445
244271
|
},
|
244446
244272
|
},
|
244447
|
-
getFsOutputDir: async () => 'public',
|
244448
244273
|
getOutputDirName: async () => 'public',
|
244449
244274
|
},
|
244450
244275
|
{
|
@@ -244478,7 +244303,6 @@ exports.frameworks = [
|
|
244478
244303
|
value: 'build',
|
244479
244304
|
},
|
244480
244305
|
},
|
244481
|
-
getFsOutputDir: async () => 'build',
|
244482
244306
|
getOutputDirName: async () => 'build',
|
244483
244307
|
cachePattern: '{vendor/bin,vendor/cache,vendor/bundle}/**',
|
244484
244308
|
},
|
@@ -244513,7 +244337,6 @@ exports.frameworks = [
|
|
244513
244337
|
value: 'public',
|
244514
244338
|
},
|
244515
244339
|
},
|
244516
|
-
getFsOutputDir: async () => 'public',
|
244517
244340
|
getOutputDirName: async () => 'public',
|
244518
244341
|
defaultVersion: '0.13.0',
|
244519
244342
|
},
|
@@ -244551,7 +244374,6 @@ exports.frameworks = [
|
|
244551
244374
|
},
|
244552
244375
|
},
|
244553
244376
|
dependency: 'vite',
|
244554
|
-
getFsOutputDir: async () => 'dist',
|
244555
244377
|
getOutputDirName: async () => 'dist',
|
244556
244378
|
},
|
244557
244379
|
{
|
@@ -244587,7 +244409,6 @@ exports.frameworks = [
|
|
244587
244409
|
},
|
244588
244410
|
},
|
244589
244411
|
dependency: 'parcel',
|
244590
|
-
getFsOutputDir: async () => 'dist',
|
244591
244412
|
getOutputDirName: async () => 'dist',
|
244592
244413
|
defaultRoutes: [
|
244593
244414
|
{
|
@@ -250468,7 +250289,6 @@ const nft_1 = __webpack_require__(49280);
|
|
250468
250289
|
const async_sema_1 = __importDefault(__webpack_require__(45758));
|
250469
250290
|
const chalk_1 = __importDefault(__webpack_require__(961));
|
250470
250291
|
const console_1 = __webpack_require__(57082);
|
250471
|
-
const crypto_1 = __webpack_require__(76417);
|
250472
250292
|
const fs_extra_1 = __importDefault(__webpack_require__(45392));
|
250473
250293
|
const glob_1 = __importDefault(__webpack_require__(91104));
|
250474
250294
|
const path_1 = __webpack_require__(85622);
|
@@ -250708,16 +250528,17 @@ async function main(client) {
|
|
250708
250528
|
client.output.debug(`Found ${param_1.default('.next')} directory.`);
|
250709
250529
|
}
|
250710
250530
|
// We cannot rely on the `framework` alone, as it might be a static export,
|
250711
|
-
// and the current build might use a
|
250531
|
+
// and the current build might use a different project that's not in the settings.
|
250712
250532
|
const isNextOutput = Boolean(dotNextDir);
|
250713
250533
|
const nextExport = await getNextExportStatus(dotNextDir);
|
250714
250534
|
const outputDir = isNextOutput && !nextExport ? OUTPUT_DIR : path_1.join(OUTPUT_DIR, 'static');
|
250535
|
+
const getDistDir = framework.getFsOutputDir || framework.getOutputDirName;
|
250715
250536
|
const distDir = ((nextExport === null || nextExport === void 0 ? void 0 : nextExport.exportDetail.outDirectory)
|
250716
250537
|
? path_1.relative(cwd, nextExport.exportDetail.outDirectory)
|
250717
250538
|
: false) ||
|
250718
250539
|
dotNextDir ||
|
250719
250540
|
userOutputDirectory ||
|
250720
|
-
(await
|
250541
|
+
(await getDistDir(cwd));
|
250721
250542
|
await fs_extra_1.default.ensureDir(path_1.join(cwd, outputDir));
|
250722
250543
|
const copyStamp = stamp_1.default();
|
250723
250544
|
client.output.spinner(`Copying files from ${param_1.default(distDir)} to ${param_1.default(outputDir)}`);
|
@@ -250897,29 +250718,11 @@ async function main(client) {
|
|
250897
250718
|
],
|
250898
250719
|
});
|
250899
250720
|
fileList.delete(path_1.relative(cwd, f));
|
250900
|
-
|
250901
|
-
|
250902
|
-
|
250903
|
-
|
250904
|
-
|
250905
|
-
distDir,
|
250906
|
-
nft: {
|
250907
|
-
version: 1,
|
250908
|
-
files: Array.from(fileList).map(fileListEntry => path_1.relative(dir, fileListEntry)),
|
250909
|
-
},
|
250910
|
-
});
|
250911
|
-
}
|
250912
|
-
}
|
250913
|
-
else {
|
250914
|
-
for (let f of nftFiles) {
|
250915
|
-
const json = await fs_extra_1.default.readJson(f);
|
250916
|
-
await resolveNftToOutput({
|
250917
|
-
client,
|
250918
|
-
baseDir,
|
250919
|
-
outputDir: OUTPUT_DIR,
|
250920
|
-
nftFileName: f,
|
250921
|
-
nft: json,
|
250922
|
-
distDir,
|
250721
|
+
const nftFileName = f.replace(ext, '.js.nft.json');
|
250722
|
+
client.output.debug(`Creating ${nftFileName}`);
|
250723
|
+
await fs_extra_1.default.writeJSON(nftFileName, {
|
250724
|
+
version: 2,
|
250725
|
+
files: Array.from(fileList).map(fileListEntry => path_1.relative(dir, fileListEntry)),
|
250923
250726
|
});
|
250924
250727
|
}
|
250925
250728
|
}
|
@@ -250933,14 +250736,7 @@ async function main(client) {
|
|
250933
250736
|
files: requiredServerFilesJson.files.map((i) => {
|
250934
250737
|
const originalPath = path_1.join(requiredServerFilesJson.appDir, i);
|
250935
250738
|
const relPath = path_1.join(OUTPUT_DIR, path_1.relative(distDir, originalPath));
|
250936
|
-
|
250937
|
-
const output = path_1.relative(baseDir, absolutePath);
|
250938
|
-
return relPath === output
|
250939
|
-
? relPath
|
250940
|
-
: {
|
250941
|
-
input: relPath,
|
250942
|
-
output,
|
250943
|
-
};
|
250739
|
+
return relPath;
|
250944
250740
|
}),
|
250945
250741
|
});
|
250946
250742
|
}
|
@@ -251065,61 +250861,6 @@ async function glob(pattern, options) {
|
|
251065
250861
|
});
|
251066
250862
|
});
|
251067
250863
|
}
|
251068
|
-
/**
|
251069
|
-
* Computes a hash for the given buf.
|
251070
|
-
*
|
251071
|
-
* @param {Buffer} file data
|
251072
|
-
* @return {String} hex digest
|
251073
|
-
*/
|
251074
|
-
function hash(buf) {
|
251075
|
-
return crypto_1.createHash('sha1').update(buf).digest('hex');
|
251076
|
-
}
|
251077
|
-
// resolveNftToOutput takes nft file and moves all of its trace files
|
251078
|
-
// into the specified directory + `inputs`, (renaming them to their hash + ext) and
|
251079
|
-
// subsequently updating the original nft file accordingly. This is done
|
251080
|
-
// to make the `.output` directory be self-contained, so that it works
|
251081
|
-
// properly with `vc --prebuilt`.
|
251082
|
-
async function resolveNftToOutput({ client, baseDir, outputDir, nftFileName, distDir, nft, }) {
|
251083
|
-
client.output.debug(`Processing and resolving ${nftFileName}`);
|
251084
|
-
await fs_extra_1.default.ensureDir(path_1.join(outputDir, 'inputs'));
|
251085
|
-
const newFilesList = [];
|
251086
|
-
// If `distDir` is a subdirectory, then the input has to be resolved to where the `.output` directory will be.
|
251087
|
-
const relNftFileName = path_1.relative(outputDir, nftFileName);
|
251088
|
-
const origNftFilename = path_1.join(distDir, relNftFileName);
|
251089
|
-
if (relNftFileName.startsWith('cache/')) {
|
251090
|
-
// No need to process the `cache/` directory.
|
251091
|
-
// Paths in it might also not be relative to `cache` itself.
|
251092
|
-
return;
|
251093
|
-
}
|
251094
|
-
for (let fileEntity of nft.files) {
|
251095
|
-
const relativeInput = typeof fileEntity === 'string' ? fileEntity : fileEntity.input;
|
251096
|
-
const fullInput = path_1.resolve(path_1.join(path_1.parse(origNftFilename).dir, relativeInput));
|
251097
|
-
// if the resolved path is NOT in the .output directory we move in it there
|
251098
|
-
if (!fullInput.includes(distDir)) {
|
251099
|
-
const { ext } = path_1.parse(fullInput);
|
251100
|
-
const raw = await fs_extra_1.default.readFile(fullInput);
|
251101
|
-
const newFilePath = path_1.join(outputDir, 'inputs', hash(raw) + ext);
|
251102
|
-
smartCopy(client, fullInput, newFilePath);
|
251103
|
-
// We have to use `baseDir` instead of `cwd`, because we want to
|
251104
|
-
// mount everything from there (especially `node_modules`).
|
251105
|
-
// This is important for NPM Workspaces where `node_modules` is not
|
251106
|
-
// in the directory of the workspace.
|
251107
|
-
const output = path_1.relative(baseDir, fullInput).replace('.output', '.next');
|
251108
|
-
newFilesList.push({
|
251109
|
-
input: path_1.relative(path_1.parse(nftFileName).dir, newFilePath),
|
251110
|
-
output,
|
251111
|
-
});
|
251112
|
-
}
|
251113
|
-
else {
|
251114
|
-
newFilesList.push(relativeInput);
|
251115
|
-
}
|
251116
|
-
}
|
251117
|
-
// Update the .nft.json with new input and output mapping
|
251118
|
-
await fs_extra_1.default.writeJSON(nftFileName, {
|
251119
|
-
...nft,
|
251120
|
-
files: newFilesList,
|
251121
|
-
});
|
251122
|
-
}
|
251123
250864
|
/**
|
251124
250865
|
* Files will only exist when `next export` was used.
|
251125
250866
|
*/
|
@@ -271323,7 +271064,7 @@ module.exports = JSON.parse("[\"ac\",\"com.ac\",\"edu.ac\",\"gov.ac\",\"net.ac\"
|
|
271323
271064
|
/***/ ((module) => {
|
271324
271065
|
|
271325
271066
|
"use strict";
|
271326
|
-
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"23.1.3-canary.
|
271067
|
+
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"23.1.3-canary.62\",\"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.39\",\"@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.15\",\"vercel-plugin-node\":\"1.12.2-canary.31\"},\"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\":\"2c86ac654ccde97426127fd0a6ffd04253227c50\"}");
|
271327
271068
|
|
271328
271069
|
/***/ }),
|
271329
271070
|
|
@@ -271339,7 +271080,7 @@ module.exports = JSON.parse("{\"VISA\":\"Visa\",\"MASTERCARD\":\"MasterCard\",\"
|
|
271339
271080
|
/***/ ((module) => {
|
271340
271081
|
|
271341
271082
|
"use strict";
|
271342
|
-
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.2.3-canary.
|
271083
|
+
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.2.3-canary.40\",\"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.39\",\"@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\":\"2c86ac654ccde97426127fd0a6ffd04253227c50\"}");
|
271343
271084
|
|
271344
271085
|
/***/ }),
|
271345
271086
|
|