vercel 23.1.3-canary.70 → 23.1.3-canary.71
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 +241 -284
- package/package.json +7 -7
package/dist/index.js
CHANGED
@@ -212265,6 +212265,7 @@ exports.frameworks = [
|
|
212265
212265
|
tagline: 'SvelteKit is a framework for building web applications of all sizes.',
|
212266
212266
|
description: 'A SvelteKit app optimized to work for serverless.',
|
212267
212267
|
website: 'https://kit.svelte.dev',
|
212268
|
+
envPrefix: 'VITE_',
|
212268
212269
|
detectors: {
|
212269
212270
|
every: [
|
212270
212271
|
{
|
@@ -213180,7 +213181,7 @@ exports.default = def;
|
|
213180
213181
|
/***/ }),
|
213181
213182
|
|
213182
213183
|
/***/ 3734:
|
213183
|
-
/***/ (function(__unused_webpack_module, exports,
|
213184
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_805867__) {
|
213184
213185
|
|
213185
213186
|
"use strict";
|
213186
213187
|
|
@@ -213189,9 +213190,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
213189
213190
|
};
|
213190
213191
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
213191
213192
|
exports.readConfigFile = void 0;
|
213192
|
-
const js_yaml_1 = __importDefault(
|
213193
|
-
const toml_1 = __importDefault(
|
213194
|
-
const fs_1 =
|
213193
|
+
const js_yaml_1 = __importDefault(__nested_webpack_require_805867__(641));
|
213194
|
+
const toml_1 = __importDefault(__nested_webpack_require_805867__(9434));
|
213195
|
+
const fs_1 = __nested_webpack_require_805867__(5747);
|
213195
213196
|
const { readFile } = fs_1.promises;
|
213196
213197
|
async function readFileOrNull(file) {
|
213197
213198
|
try {
|
@@ -213240,13 +213241,13 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
213240
213241
|
/***/ }),
|
213241
213242
|
|
213242
213243
|
/***/ 641:
|
213243
|
-
/***/ ((module, __unused_webpack_exports,
|
213244
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_807473__) => {
|
213244
213245
|
|
213245
213246
|
"use strict";
|
213246
213247
|
|
213247
213248
|
|
213248
213249
|
|
213249
|
-
var yaml =
|
213250
|
+
var yaml = __nested_webpack_require_807473__(9633);
|
213250
213251
|
|
213251
213252
|
|
213252
213253
|
module.exports = yaml;
|
@@ -213255,14 +213256,14 @@ module.exports = yaml;
|
|
213255
213256
|
/***/ }),
|
213256
213257
|
|
213257
213258
|
/***/ 9633:
|
213258
|
-
/***/ ((module, __unused_webpack_exports,
|
213259
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_807647__) => {
|
213259
213260
|
|
213260
213261
|
"use strict";
|
213261
213262
|
|
213262
213263
|
|
213263
213264
|
|
213264
|
-
var loader =
|
213265
|
-
var dumper =
|
213265
|
+
var loader = __nested_webpack_require_807647__(4349);
|
213266
|
+
var dumper = __nested_webpack_require_807647__(8047);
|
213266
213267
|
|
213267
213268
|
|
213268
213269
|
function deprecated(name) {
|
@@ -213272,25 +213273,25 @@ function deprecated(name) {
|
|
213272
213273
|
}
|
213273
213274
|
|
213274
213275
|
|
213275
|
-
module.exports.Type =
|
213276
|
-
module.exports.Schema =
|
213277
|
-
module.exports.FAILSAFE_SCHEMA =
|
213278
|
-
module.exports.JSON_SCHEMA =
|
213279
|
-
module.exports.CORE_SCHEMA =
|
213280
|
-
module.exports.DEFAULT_SAFE_SCHEMA =
|
213281
|
-
module.exports.DEFAULT_FULL_SCHEMA =
|
213276
|
+
module.exports.Type = __nested_webpack_require_807647__(6876);
|
213277
|
+
module.exports.Schema = __nested_webpack_require_807647__(6105);
|
213278
|
+
module.exports.FAILSAFE_SCHEMA = __nested_webpack_require_807647__(8441);
|
213279
|
+
module.exports.JSON_SCHEMA = __nested_webpack_require_807647__(1486);
|
213280
|
+
module.exports.CORE_SCHEMA = __nested_webpack_require_807647__(1112);
|
213281
|
+
module.exports.DEFAULT_SAFE_SCHEMA = __nested_webpack_require_807647__(596);
|
213282
|
+
module.exports.DEFAULT_FULL_SCHEMA = __nested_webpack_require_807647__(9647);
|
213282
213283
|
module.exports.load = loader.load;
|
213283
213284
|
module.exports.loadAll = loader.loadAll;
|
213284
213285
|
module.exports.safeLoad = loader.safeLoad;
|
213285
213286
|
module.exports.safeLoadAll = loader.safeLoadAll;
|
213286
213287
|
module.exports.dump = dumper.dump;
|
213287
213288
|
module.exports.safeDump = dumper.safeDump;
|
213288
|
-
module.exports.YAMLException =
|
213289
|
+
module.exports.YAMLException = __nested_webpack_require_807647__(3237);
|
213289
213290
|
|
213290
213291
|
// Deprecated schema names from JS-YAML 2.0.x
|
213291
|
-
module.exports.MINIMAL_SCHEMA =
|
213292
|
-
module.exports.SAFE_SCHEMA =
|
213293
|
-
module.exports.DEFAULT_SCHEMA =
|
213292
|
+
module.exports.MINIMAL_SCHEMA = __nested_webpack_require_807647__(8441);
|
213293
|
+
module.exports.SAFE_SCHEMA = __nested_webpack_require_807647__(596);
|
213294
|
+
module.exports.DEFAULT_SCHEMA = __nested_webpack_require_807647__(9647);
|
213294
213295
|
|
213295
213296
|
// Deprecated functions from JS-YAML 1.x.x
|
213296
213297
|
module.exports.scan = deprecated('scan');
|
@@ -213369,17 +213370,17 @@ module.exports.extend = extend;
|
|
213369
213370
|
/***/ }),
|
213370
213371
|
|
213371
213372
|
/***/ 8047:
|
213372
|
-
/***/ ((module, __unused_webpack_exports,
|
213373
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_810465__) => {
|
213373
213374
|
|
213374
213375
|
"use strict";
|
213375
213376
|
|
213376
213377
|
|
213377
213378
|
/*eslint-disable no-use-before-define*/
|
213378
213379
|
|
213379
|
-
var common =
|
213380
|
-
var YAMLException =
|
213381
|
-
var DEFAULT_FULL_SCHEMA =
|
213382
|
-
var DEFAULT_SAFE_SCHEMA =
|
213380
|
+
var common = __nested_webpack_require_810465__(903);
|
213381
|
+
var YAMLException = __nested_webpack_require_810465__(3237);
|
213382
|
+
var DEFAULT_FULL_SCHEMA = __nested_webpack_require_810465__(9647);
|
213383
|
+
var DEFAULT_SAFE_SCHEMA = __nested_webpack_require_810465__(596);
|
213383
213384
|
|
213384
213385
|
var _toString = Object.prototype.toString;
|
213385
213386
|
var _hasOwnProperty = Object.prototype.hasOwnProperty;
|
@@ -214255,18 +214256,18 @@ module.exports = YAMLException;
|
|
214255
214256
|
/***/ }),
|
214256
214257
|
|
214257
214258
|
/***/ 4349:
|
214258
|
-
/***/ ((module, __unused_webpack_exports,
|
214259
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_838169__) => {
|
214259
214260
|
|
214260
214261
|
"use strict";
|
214261
214262
|
|
214262
214263
|
|
214263
214264
|
/*eslint-disable max-len,no-use-before-define*/
|
214264
214265
|
|
214265
|
-
var common =
|
214266
|
-
var YAMLException =
|
214267
|
-
var Mark =
|
214268
|
-
var DEFAULT_SAFE_SCHEMA =
|
214269
|
-
var DEFAULT_FULL_SCHEMA =
|
214266
|
+
var common = __nested_webpack_require_838169__(903);
|
214267
|
+
var YAMLException = __nested_webpack_require_838169__(3237);
|
214268
|
+
var Mark = __nested_webpack_require_838169__(4926);
|
214269
|
+
var DEFAULT_SAFE_SCHEMA = __nested_webpack_require_838169__(596);
|
214270
|
+
var DEFAULT_FULL_SCHEMA = __nested_webpack_require_838169__(9647);
|
214270
214271
|
|
214271
214272
|
|
214272
214273
|
var _hasOwnProperty = Object.prototype.hasOwnProperty;
|
@@ -215888,13 +215889,13 @@ module.exports.safeLoad = safeLoad;
|
|
215888
215889
|
/***/ }),
|
215889
215890
|
|
215890
215891
|
/***/ 4926:
|
215891
|
-
/***/ ((module, __unused_webpack_exports,
|
215892
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_882036__) => {
|
215892
215893
|
|
215893
215894
|
"use strict";
|
215894
215895
|
|
215895
215896
|
|
215896
215897
|
|
215897
|
-
var common =
|
215898
|
+
var common = __nested_webpack_require_882036__(903);
|
215898
215899
|
|
215899
215900
|
|
215900
215901
|
function Mark(name, buffer, position, line, column) {
|
@@ -215972,16 +215973,16 @@ module.exports = Mark;
|
|
215972
215973
|
/***/ }),
|
215973
215974
|
|
215974
215975
|
/***/ 6105:
|
215975
|
-
/***/ ((module, __unused_webpack_exports,
|
215976
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_883698__) => {
|
215976
215977
|
|
215977
215978
|
"use strict";
|
215978
215979
|
|
215979
215980
|
|
215980
215981
|
/*eslint-disable max-len*/
|
215981
215982
|
|
215982
|
-
var common =
|
215983
|
-
var YAMLException =
|
215984
|
-
var Type =
|
215983
|
+
var common = __nested_webpack_require_883698__(903);
|
215984
|
+
var YAMLException = __nested_webpack_require_883698__(3237);
|
215985
|
+
var Type = __nested_webpack_require_883698__(6876);
|
215985
215986
|
|
215986
215987
|
|
215987
215988
|
function compileList(schema, name, result) {
|
@@ -216088,7 +216089,7 @@ module.exports = Schema;
|
|
216088
216089
|
/***/ }),
|
216089
216090
|
|
216090
216091
|
/***/ 1112:
|
216091
|
-
/***/ ((module, __unused_webpack_exports,
|
216092
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_886562__) => {
|
216092
216093
|
|
216093
216094
|
"use strict";
|
216094
216095
|
// Standard YAML's Core schema.
|
@@ -216101,12 +216102,12 @@ module.exports = Schema;
|
|
216101
216102
|
|
216102
216103
|
|
216103
216104
|
|
216104
|
-
var Schema =
|
216105
|
+
var Schema = __nested_webpack_require_886562__(6105);
|
216105
216106
|
|
216106
216107
|
|
216107
216108
|
module.exports = new Schema({
|
216108
216109
|
include: [
|
216109
|
-
|
216110
|
+
__nested_webpack_require_886562__(1486)
|
216110
216111
|
]
|
216111
216112
|
});
|
216112
216113
|
|
@@ -216114,7 +216115,7 @@ module.exports = new Schema({
|
|
216114
216115
|
/***/ }),
|
216115
216116
|
|
216116
216117
|
/***/ 9647:
|
216117
|
-
/***/ ((module, __unused_webpack_exports,
|
216118
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_887032__) => {
|
216118
216119
|
|
216119
216120
|
"use strict";
|
216120
216121
|
// JS-YAML's default schema for `load` function.
|
@@ -216129,17 +216130,17 @@ module.exports = new Schema({
|
|
216129
216130
|
|
216130
216131
|
|
216131
216132
|
|
216132
|
-
var Schema =
|
216133
|
+
var Schema = __nested_webpack_require_887032__(6105);
|
216133
216134
|
|
216134
216135
|
|
216135
216136
|
module.exports = Schema.DEFAULT = new Schema({
|
216136
216137
|
include: [
|
216137
|
-
|
216138
|
+
__nested_webpack_require_887032__(596)
|
216138
216139
|
],
|
216139
216140
|
explicit: [
|
216140
|
-
|
216141
|
-
|
216142
|
-
|
216141
|
+
__nested_webpack_require_887032__(5836),
|
216142
|
+
__nested_webpack_require_887032__(6841),
|
216143
|
+
__nested_webpack_require_887032__(8750)
|
216143
216144
|
]
|
216144
216145
|
});
|
216145
216146
|
|
@@ -216147,7 +216148,7 @@ module.exports = Schema.DEFAULT = new Schema({
|
|
216147
216148
|
/***/ }),
|
216148
216149
|
|
216149
216150
|
/***/ 596:
|
216150
|
-
/***/ ((module, __unused_webpack_exports,
|
216151
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_887726__) => {
|
216151
216152
|
|
216152
216153
|
"use strict";
|
216153
216154
|
// JS-YAML's default schema for `safeLoad` function.
|
@@ -216160,22 +216161,22 @@ module.exports = Schema.DEFAULT = new Schema({
|
|
216160
216161
|
|
216161
216162
|
|
216162
216163
|
|
216163
|
-
var Schema =
|
216164
|
+
var Schema = __nested_webpack_require_887726__(6105);
|
216164
216165
|
|
216165
216166
|
|
216166
216167
|
module.exports = new Schema({
|
216167
216168
|
include: [
|
216168
|
-
|
216169
|
+
__nested_webpack_require_887726__(1112)
|
216169
216170
|
],
|
216170
216171
|
implicit: [
|
216171
|
-
|
216172
|
-
|
216172
|
+
__nested_webpack_require_887726__(7028),
|
216173
|
+
__nested_webpack_require_887726__(7841)
|
216173
216174
|
],
|
216174
216175
|
explicit: [
|
216175
|
-
|
216176
|
-
|
216177
|
-
|
216178
|
-
|
216176
|
+
__nested_webpack_require_887726__(8675),
|
216177
|
+
__nested_webpack_require_887726__(3498),
|
216178
|
+
__nested_webpack_require_887726__(679),
|
216179
|
+
__nested_webpack_require_887726__(7205)
|
216179
216180
|
]
|
216180
216181
|
});
|
216181
216182
|
|
@@ -216183,7 +216184,7 @@ module.exports = new Schema({
|
|
216183
216184
|
/***/ }),
|
216184
216185
|
|
216185
216186
|
/***/ 8441:
|
216186
|
-
/***/ ((module, __unused_webpack_exports,
|
216187
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_888438__) => {
|
216187
216188
|
|
216188
216189
|
"use strict";
|
216189
216190
|
// Standard YAML's Failsafe schema.
|
@@ -216193,14 +216194,14 @@ module.exports = new Schema({
|
|
216193
216194
|
|
216194
216195
|
|
216195
216196
|
|
216196
|
-
var Schema =
|
216197
|
+
var Schema = __nested_webpack_require_888438__(6105);
|
216197
216198
|
|
216198
216199
|
|
216199
216200
|
module.exports = new Schema({
|
216200
216201
|
explicit: [
|
216201
|
-
|
216202
|
-
|
216203
|
-
|
216202
|
+
__nested_webpack_require_888438__(5348),
|
216203
|
+
__nested_webpack_require_888438__(7330),
|
216204
|
+
__nested_webpack_require_888438__(293)
|
216204
216205
|
]
|
216205
216206
|
});
|
216206
216207
|
|
@@ -216208,7 +216209,7 @@ module.exports = new Schema({
|
|
216208
216209
|
/***/ }),
|
216209
216210
|
|
216210
216211
|
/***/ 1486:
|
216211
|
-
/***/ ((module, __unused_webpack_exports,
|
216212
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_888824__) => {
|
216212
216213
|
|
216213
216214
|
"use strict";
|
216214
216215
|
// Standard YAML's JSON schema.
|
@@ -216222,18 +216223,18 @@ module.exports = new Schema({
|
|
216222
216223
|
|
216223
216224
|
|
216224
216225
|
|
216225
|
-
var Schema =
|
216226
|
+
var Schema = __nested_webpack_require_888824__(6105);
|
216226
216227
|
|
216227
216228
|
|
216228
216229
|
module.exports = new Schema({
|
216229
216230
|
include: [
|
216230
|
-
|
216231
|
+
__nested_webpack_require_888824__(8441)
|
216231
216232
|
],
|
216232
216233
|
implicit: [
|
216233
|
-
|
216234
|
-
|
216235
|
-
|
216236
|
-
|
216234
|
+
__nested_webpack_require_888824__(9074),
|
216235
|
+
__nested_webpack_require_888824__(4308),
|
216236
|
+
__nested_webpack_require_888824__(1167),
|
216237
|
+
__nested_webpack_require_888824__(7862)
|
216237
216238
|
]
|
216238
216239
|
});
|
216239
216240
|
|
@@ -216241,12 +216242,12 @@ module.exports = new Schema({
|
|
216241
216242
|
/***/ }),
|
216242
216243
|
|
216243
216244
|
/***/ 6876:
|
216244
|
-
/***/ ((module, __unused_webpack_exports,
|
216245
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_889522__) => {
|
216245
216246
|
|
216246
216247
|
"use strict";
|
216247
216248
|
|
216248
216249
|
|
216249
|
-
var YAMLException =
|
216250
|
+
var YAMLException = __nested_webpack_require_889522__(3237);
|
216250
216251
|
|
216251
216252
|
var TYPE_CONSTRUCTOR_OPTIONS = [
|
216252
216253
|
'kind',
|
@@ -216310,7 +216311,7 @@ module.exports = Type;
|
|
216310
216311
|
/***/ }),
|
216311
216312
|
|
216312
216313
|
/***/ 8675:
|
216313
|
-
/***/ ((module, __unused_webpack_exports,
|
216314
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_891206__) => {
|
216314
216315
|
|
216315
216316
|
"use strict";
|
216316
216317
|
|
@@ -216325,7 +216326,7 @@ try {
|
|
216325
216326
|
NodeBuffer = _require('buffer').Buffer;
|
216326
216327
|
} catch (__) {}
|
216327
216328
|
|
216328
|
-
var Type =
|
216329
|
+
var Type = __nested_webpack_require_891206__(6876);
|
216329
216330
|
|
216330
216331
|
|
216331
216332
|
// [ 64, 65, 66 ] -> [ padding, CR, LF ]
|
@@ -216456,12 +216457,12 @@ module.exports = new Type('tag:yaml.org,2002:binary', {
|
|
216456
216457
|
/***/ }),
|
216457
216458
|
|
216458
216459
|
/***/ 4308:
|
216459
|
-
/***/ ((module, __unused_webpack_exports,
|
216460
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_894598__) => {
|
216460
216461
|
|
216461
216462
|
"use strict";
|
216462
216463
|
|
216463
216464
|
|
216464
|
-
var Type =
|
216465
|
+
var Type = __nested_webpack_require_894598__(6876);
|
216465
216466
|
|
216466
216467
|
function resolveYamlBoolean(data) {
|
216467
216468
|
if (data === null) return false;
|
@@ -216499,13 +216500,13 @@ module.exports = new Type('tag:yaml.org,2002:bool', {
|
|
216499
216500
|
/***/ }),
|
216500
216501
|
|
216501
216502
|
/***/ 7862:
|
216502
|
-
/***/ ((module, __unused_webpack_exports,
|
216503
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_895671__) => {
|
216503
216504
|
|
216504
216505
|
"use strict";
|
216505
216506
|
|
216506
216507
|
|
216507
|
-
var common =
|
216508
|
-
var Type =
|
216508
|
+
var common = __nested_webpack_require_895671__(903);
|
216509
|
+
var Type = __nested_webpack_require_895671__(6876);
|
216509
216510
|
|
216510
216511
|
var YAML_FLOAT_PATTERN = new RegExp(
|
216511
216512
|
// 2.5e4, 2.5 and integers
|
@@ -216623,13 +216624,13 @@ module.exports = new Type('tag:yaml.org,2002:float', {
|
|
216623
216624
|
/***/ }),
|
216624
216625
|
|
216625
216626
|
/***/ 1167:
|
216626
|
-
/***/ ((module, __unused_webpack_exports,
|
216627
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_898617__) => {
|
216627
216628
|
|
216628
216629
|
"use strict";
|
216629
216630
|
|
216630
216631
|
|
216631
|
-
var common =
|
216632
|
-
var Type =
|
216632
|
+
var common = __nested_webpack_require_898617__(903);
|
216633
|
+
var Type = __nested_webpack_require_898617__(6876);
|
216633
216634
|
|
216634
216635
|
function isHexCode(c) {
|
216635
216636
|
return ((0x30/* 0 */ <= c) && (c <= 0x39/* 9 */)) ||
|
@@ -216804,7 +216805,7 @@ module.exports = new Type('tag:yaml.org,2002:int', {
|
|
216804
216805
|
/***/ }),
|
216805
216806
|
|
216806
216807
|
/***/ 8750:
|
216807
|
-
/***/ ((module, __unused_webpack_exports,
|
216808
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_902789__) => {
|
216808
216809
|
|
216809
216810
|
"use strict";
|
216810
216811
|
|
@@ -216827,7 +216828,7 @@ try {
|
|
216827
216828
|
if (typeof window !== 'undefined') esprima = window.esprima;
|
216828
216829
|
}
|
216829
216830
|
|
216830
|
-
var Type =
|
216831
|
+
var Type = __nested_webpack_require_902789__(6876);
|
216831
216832
|
|
216832
216833
|
function resolveJavascriptFunction(data) {
|
216833
216834
|
if (data === null) return false;
|
@@ -216904,12 +216905,12 @@ module.exports = new Type('tag:yaml.org,2002:js/function', {
|
|
216904
216905
|
/***/ }),
|
216905
216906
|
|
216906
216907
|
/***/ 6841:
|
216907
|
-
/***/ ((module, __unused_webpack_exports,
|
216908
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_905686__) => {
|
216908
216909
|
|
216909
216910
|
"use strict";
|
216910
216911
|
|
216911
216912
|
|
216912
|
-
var Type =
|
216913
|
+
var Type = __nested_webpack_require_905686__(6876);
|
216913
216914
|
|
216914
216915
|
function resolveJavascriptRegExp(data) {
|
216915
216916
|
if (data === null) return false;
|
@@ -216972,12 +216973,12 @@ module.exports = new Type('tag:yaml.org,2002:js/regexp', {
|
|
216972
216973
|
/***/ }),
|
216973
216974
|
|
216974
216975
|
/***/ 5836:
|
216975
|
-
/***/ ((module, __unused_webpack_exports,
|
216976
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_907357__) => {
|
216976
216977
|
|
216977
216978
|
"use strict";
|
216978
216979
|
|
216979
216980
|
|
216980
|
-
var Type =
|
216981
|
+
var Type = __nested_webpack_require_907357__(6876);
|
216981
216982
|
|
216982
216983
|
function resolveJavascriptUndefined() {
|
216983
216984
|
return true;
|
@@ -217008,12 +217009,12 @@ module.exports = new Type('tag:yaml.org,2002:js/undefined', {
|
|
217008
217009
|
/***/ }),
|
217009
217010
|
|
217010
217011
|
/***/ 293:
|
217011
|
-
/***/ ((module, __unused_webpack_exports,
|
217012
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_908028__) => {
|
217012
217013
|
|
217013
217014
|
"use strict";
|
217014
217015
|
|
217015
217016
|
|
217016
|
-
var Type =
|
217017
|
+
var Type = __nested_webpack_require_908028__(6876);
|
217017
217018
|
|
217018
217019
|
module.exports = new Type('tag:yaml.org,2002:map', {
|
217019
217020
|
kind: 'mapping',
|
@@ -217024,12 +217025,12 @@ module.exports = new Type('tag:yaml.org,2002:map', {
|
|
217024
217025
|
/***/ }),
|
217025
217026
|
|
217026
217027
|
/***/ 7841:
|
217027
|
-
/***/ ((module, __unused_webpack_exports,
|
217028
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_908320__) => {
|
217028
217029
|
|
217029
217030
|
"use strict";
|
217030
217031
|
|
217031
217032
|
|
217032
|
-
var Type =
|
217033
|
+
var Type = __nested_webpack_require_908320__(6876);
|
217033
217034
|
|
217034
217035
|
function resolveYamlMerge(data) {
|
217035
217036
|
return data === '<<' || data === null;
|
@@ -217044,12 +217045,12 @@ module.exports = new Type('tag:yaml.org,2002:merge', {
|
|
217044
217045
|
/***/ }),
|
217045
217046
|
|
217046
217047
|
/***/ 9074:
|
217047
|
-
/***/ ((module, __unused_webpack_exports,
|
217048
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_908652__) => {
|
217048
217049
|
|
217049
217050
|
"use strict";
|
217050
217051
|
|
217051
217052
|
|
217052
|
-
var Type =
|
217053
|
+
var Type = __nested_webpack_require_908652__(6876);
|
217053
217054
|
|
217054
217055
|
function resolveYamlNull(data) {
|
217055
217056
|
if (data === null) return true;
|
@@ -217086,12 +217087,12 @@ module.exports = new Type('tag:yaml.org,2002:null', {
|
|
217086
217087
|
/***/ }),
|
217087
217088
|
|
217088
217089
|
/***/ 3498:
|
217089
|
-
/***/ ((module, __unused_webpack_exports,
|
217090
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_909515__) => {
|
217090
217091
|
|
217091
217092
|
"use strict";
|
217092
217093
|
|
217093
217094
|
|
217094
|
-
var Type =
|
217095
|
+
var Type = __nested_webpack_require_909515__(6876);
|
217095
217096
|
|
217096
217097
|
var _hasOwnProperty = Object.prototype.hasOwnProperty;
|
217097
217098
|
var _toString = Object.prototype.toString;
|
@@ -217138,12 +217139,12 @@ module.exports = new Type('tag:yaml.org,2002:omap', {
|
|
217138
217139
|
/***/ }),
|
217139
217140
|
|
217140
217141
|
/***/ 679:
|
217141
|
-
/***/ ((module, __unused_webpack_exports,
|
217142
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_910639__) => {
|
217142
217143
|
|
217143
217144
|
"use strict";
|
217144
217145
|
|
217145
217146
|
|
217146
|
-
var Type =
|
217147
|
+
var Type = __nested_webpack_require_910639__(6876);
|
217147
217148
|
|
217148
217149
|
var _toString = Object.prototype.toString;
|
217149
217150
|
|
@@ -217199,12 +217200,12 @@ module.exports = new Type('tag:yaml.org,2002:pairs', {
|
|
217199
217200
|
/***/ }),
|
217200
217201
|
|
217201
217202
|
/***/ 7330:
|
217202
|
-
/***/ ((module, __unused_webpack_exports,
|
217203
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_911825__) => {
|
217203
217204
|
|
217204
217205
|
"use strict";
|
217205
217206
|
|
217206
217207
|
|
217207
|
-
var Type =
|
217208
|
+
var Type = __nested_webpack_require_911825__(6876);
|
217208
217209
|
|
217209
217210
|
module.exports = new Type('tag:yaml.org,2002:seq', {
|
217210
217211
|
kind: 'sequence',
|
@@ -217215,12 +217216,12 @@ module.exports = new Type('tag:yaml.org,2002:seq', {
|
|
217215
217216
|
/***/ }),
|
217216
217217
|
|
217217
217218
|
/***/ 7205:
|
217218
|
-
/***/ ((module, __unused_webpack_exports,
|
217219
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_912118__) => {
|
217219
217220
|
|
217220
217221
|
"use strict";
|
217221
217222
|
|
217222
217223
|
|
217223
|
-
var Type =
|
217224
|
+
var Type = __nested_webpack_require_912118__(6876);
|
217224
217225
|
|
217225
217226
|
var _hasOwnProperty = Object.prototype.hasOwnProperty;
|
217226
217227
|
|
@@ -217252,12 +217253,12 @@ module.exports = new Type('tag:yaml.org,2002:set', {
|
|
217252
217253
|
/***/ }),
|
217253
217254
|
|
217254
217255
|
/***/ 5348:
|
217255
|
-
/***/ ((module, __unused_webpack_exports,
|
217256
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_912767__) => {
|
217256
217257
|
|
217257
217258
|
"use strict";
|
217258
217259
|
|
217259
217260
|
|
217260
|
-
var Type =
|
217261
|
+
var Type = __nested_webpack_require_912767__(6876);
|
217261
217262
|
|
217262
217263
|
module.exports = new Type('tag:yaml.org,2002:str', {
|
217263
217264
|
kind: 'scalar',
|
@@ -217268,12 +217269,12 @@ module.exports = new Type('tag:yaml.org,2002:str', {
|
|
217268
217269
|
/***/ }),
|
217269
217270
|
|
217270
217271
|
/***/ 7028:
|
217271
|
-
/***/ ((module, __unused_webpack_exports,
|
217272
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_913058__) => {
|
217272
217273
|
|
217273
217274
|
"use strict";
|
217274
217275
|
|
217275
217276
|
|
217276
|
-
var Type =
|
217277
|
+
var Type = __nested_webpack_require_913058__(6876);
|
217277
217278
|
|
217278
217279
|
var YAML_DATE_REGEXP = new RegExp(
|
217279
217280
|
'^([0-9][0-9][0-9][0-9])' + // [1] year
|
@@ -217364,7 +217365,7 @@ module.exports = new Type('tag:yaml.org,2002:timestamp', {
|
|
217364
217365
|
/***/ }),
|
217365
217366
|
|
217366
217367
|
/***/ 7276:
|
217367
|
-
/***/ (function(__unused_webpack_module, exports,
|
217368
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_915739__) {
|
217368
217369
|
|
217369
217370
|
"use strict";
|
217370
217371
|
|
@@ -217373,12 +217374,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
217373
217374
|
};
|
217374
217375
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
217375
217376
|
exports.updateRoutesManifest = exports.updateFunctionsManifest = exports.convertRuntimeToPlugin = void 0;
|
217376
|
-
const fs_extra_1 = __importDefault(
|
217377
|
-
const path_1 =
|
217378
|
-
const glob_1 = __importDefault(
|
217379
|
-
const normalize_path_1 =
|
217380
|
-
const lambda_1 =
|
217381
|
-
const _1 =
|
217377
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_915739__(5392));
|
217378
|
+
const path_1 = __nested_webpack_require_915739__(5622);
|
217379
|
+
const glob_1 = __importDefault(__nested_webpack_require_915739__(4240));
|
217380
|
+
const normalize_path_1 = __nested_webpack_require_915739__(6261);
|
217381
|
+
const lambda_1 = __nested_webpack_require_915739__(6721);
|
217382
|
+
const _1 = __nested_webpack_require_915739__(2855);
|
217382
217383
|
// `.output` was already created by the Build Command, so we have
|
217383
217384
|
// to ensure its contents don't get bundled into the Lambda. Similarily,
|
217384
217385
|
// we don't want to bundle anything from `.vercel` either. Lastly,
|
@@ -217670,12 +217671,12 @@ exports.updateRoutesManifest = updateRoutesManifest;
|
|
217670
217671
|
/***/ }),
|
217671
217672
|
|
217672
217673
|
/***/ 1868:
|
217673
|
-
/***/ ((__unused_webpack_module, exports,
|
217674
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_931580__) => {
|
217674
217675
|
|
217675
217676
|
"use strict";
|
217676
217677
|
|
217677
217678
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
217678
|
-
const _1 =
|
217679
|
+
const _1 = __nested_webpack_require_931580__(2855);
|
217679
217680
|
function debug(message, ...additional) {
|
217680
217681
|
if (_1.getPlatformEnv('BUILDER_DEBUG')) {
|
217681
217682
|
console.log(message, ...additional);
|
@@ -217687,7 +217688,7 @@ exports.default = debug;
|
|
217687
217688
|
/***/ }),
|
217688
217689
|
|
217689
217690
|
/***/ 4246:
|
217690
|
-
/***/ (function(__unused_webpack_module, exports,
|
217691
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_931965__) {
|
217691
217692
|
|
217692
217693
|
"use strict";
|
217693
217694
|
|
@@ -217696,11 +217697,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
217696
217697
|
};
|
217697
217698
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
217698
217699
|
exports.detectBuilders = exports.detectOutputDirectory = exports.detectApiDirectory = exports.detectApiExtensions = exports.sortFiles = void 0;
|
217699
|
-
const minimatch_1 = __importDefault(
|
217700
|
-
const semver_1 =
|
217701
|
-
const path_1 =
|
217702
|
-
const frameworks_1 = __importDefault(
|
217703
|
-
const _1 =
|
217700
|
+
const minimatch_1 = __importDefault(__nested_webpack_require_931965__(9566));
|
217701
|
+
const semver_1 = __nested_webpack_require_931965__(2879);
|
217702
|
+
const path_1 = __nested_webpack_require_931965__(5622);
|
217703
|
+
const frameworks_1 = __importDefault(__nested_webpack_require_931965__(8438));
|
217704
|
+
const _1 = __nested_webpack_require_931965__(2855);
|
217704
217705
|
const slugToFramework = new Map(frameworks_1.default.map(f => [f.slug, f]));
|
217705
217706
|
// We need to sort the file paths by alphabet to make
|
217706
217707
|
// sure the routes stay in the same order e.g. for deduping
|
@@ -218529,7 +218530,7 @@ function sortFilesBySegmentCount(fileA, fileB) {
|
|
218529
218530
|
/***/ }),
|
218530
218531
|
|
218531
218532
|
/***/ 1182:
|
218532
|
-
/***/ (function(__unused_webpack_module, exports,
|
218533
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_963942__) {
|
218533
218534
|
|
218534
218535
|
"use strict";
|
218535
218536
|
|
@@ -218538,8 +218539,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218538
218539
|
};
|
218539
218540
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218540
218541
|
exports.detectFileSystemAPI = void 0;
|
218541
|
-
const semver_1 = __importDefault(
|
218542
|
-
const _1 =
|
218542
|
+
const semver_1 = __importDefault(__nested_webpack_require_963942__(2879));
|
218543
|
+
const _1 = __nested_webpack_require_963942__(2855);
|
218543
218544
|
const enableFileSystemApiFrameworks = new Set(['solidstart']);
|
218544
218545
|
/**
|
218545
218546
|
* If the Deployment can be built with the new File System API,
|
@@ -218940,7 +218941,7 @@ function getSuggestion(topLevelProp, additionalProperty) {
|
|
218940
218941
|
/***/ }),
|
218941
218942
|
|
218942
218943
|
/***/ 2397:
|
218943
|
-
/***/ (function(__unused_webpack_module, exports,
|
218944
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_979036__) {
|
218944
218945
|
|
218945
218946
|
"use strict";
|
218946
218947
|
|
@@ -218948,8 +218949,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218948
218949
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
218949
218950
|
};
|
218950
218951
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218951
|
-
const assert_1 = __importDefault(
|
218952
|
-
const into_stream_1 = __importDefault(
|
218952
|
+
const assert_1 = __importDefault(__nested_webpack_require_979036__(2357));
|
218953
|
+
const into_stream_1 = __importDefault(__nested_webpack_require_979036__(6130));
|
218953
218954
|
class FileBlob {
|
218954
218955
|
constructor({ mode = 0o100644, contentType, data }) {
|
218955
218956
|
assert_1.default(typeof mode === 'number');
|
@@ -218981,7 +218982,7 @@ exports.default = FileBlob;
|
|
218981
218982
|
/***/ }),
|
218982
218983
|
|
218983
218984
|
/***/ 9331:
|
218984
|
-
/***/ (function(__unused_webpack_module, exports,
|
218985
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_980488__) {
|
218985
218986
|
|
218986
218987
|
"use strict";
|
218987
218988
|
|
@@ -218989,11 +218990,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218989
218990
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
218990
218991
|
};
|
218991
218992
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218992
|
-
const assert_1 = __importDefault(
|
218993
|
-
const fs_extra_1 = __importDefault(
|
218994
|
-
const multistream_1 = __importDefault(
|
218995
|
-
const path_1 = __importDefault(
|
218996
|
-
const async_sema_1 = __importDefault(
|
218993
|
+
const assert_1 = __importDefault(__nested_webpack_require_980488__(2357));
|
218994
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_980488__(5392));
|
218995
|
+
const multistream_1 = __importDefault(__nested_webpack_require_980488__(8179));
|
218996
|
+
const path_1 = __importDefault(__nested_webpack_require_980488__(5622));
|
218997
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_980488__(5758));
|
218997
218998
|
const semaToPreventEMFILE = new async_sema_1.default(20);
|
218998
218999
|
class FileFsRef {
|
218999
219000
|
constructor({ mode = 0o100644, contentType, fsPath }) {
|
@@ -219059,7 +219060,7 @@ exports.default = FileFsRef;
|
|
219059
219060
|
/***/ }),
|
219060
219061
|
|
219061
219062
|
/***/ 5187:
|
219062
|
-
/***/ (function(__unused_webpack_module, exports,
|
219063
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_983292__) {
|
219063
219064
|
|
219064
219065
|
"use strict";
|
219065
219066
|
|
@@ -219067,11 +219068,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219067
219068
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
219068
219069
|
};
|
219069
219070
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219070
|
-
const assert_1 = __importDefault(
|
219071
|
-
const node_fetch_1 = __importDefault(
|
219072
|
-
const multistream_1 = __importDefault(
|
219073
|
-
const async_retry_1 = __importDefault(
|
219074
|
-
const async_sema_1 = __importDefault(
|
219071
|
+
const assert_1 = __importDefault(__nested_webpack_require_983292__(2357));
|
219072
|
+
const node_fetch_1 = __importDefault(__nested_webpack_require_983292__(2197));
|
219073
|
+
const multistream_1 = __importDefault(__nested_webpack_require_983292__(8179));
|
219074
|
+
const async_retry_1 = __importDefault(__nested_webpack_require_983292__(3691));
|
219075
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_983292__(5758));
|
219075
219076
|
const semaToDownloadFromS3 = new async_sema_1.default(5);
|
219076
219077
|
class BailableError extends Error {
|
219077
219078
|
constructor(...args) {
|
@@ -219152,7 +219153,7 @@ exports.default = FileRef;
|
|
219152
219153
|
/***/ }),
|
219153
219154
|
|
219154
219155
|
/***/ 1611:
|
219155
|
-
/***/ (function(__unused_webpack_module, exports,
|
219156
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_986693__) {
|
219156
219157
|
|
219157
219158
|
"use strict";
|
219158
219159
|
|
@@ -219161,10 +219162,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219161
219162
|
};
|
219162
219163
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219163
219164
|
exports.isSymbolicLink = void 0;
|
219164
|
-
const path_1 = __importDefault(
|
219165
|
-
const debug_1 = __importDefault(
|
219166
|
-
const file_fs_ref_1 = __importDefault(
|
219167
|
-
const fs_extra_1 =
|
219165
|
+
const path_1 = __importDefault(__nested_webpack_require_986693__(5622));
|
219166
|
+
const debug_1 = __importDefault(__nested_webpack_require_986693__(1868));
|
219167
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_986693__(9331));
|
219168
|
+
const fs_extra_1 = __nested_webpack_require_986693__(5392);
|
219168
219169
|
const S_IFMT = 61440; /* 0170000 type of file */
|
219169
219170
|
const S_IFLNK = 40960; /* 0120000 symbolic link */
|
219170
219171
|
function isSymbolicLink(mode) {
|
@@ -219226,14 +219227,14 @@ exports.default = download;
|
|
219226
219227
|
/***/ }),
|
219227
219228
|
|
219228
219229
|
/***/ 3838:
|
219229
|
-
/***/ ((__unused_webpack_module, exports,
|
219230
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_989518__) => {
|
219230
219231
|
|
219231
219232
|
"use strict";
|
219232
219233
|
|
219233
219234
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219234
|
-
const path_1 =
|
219235
|
-
const os_1 =
|
219236
|
-
const fs_extra_1 =
|
219235
|
+
const path_1 = __nested_webpack_require_989518__(5622);
|
219236
|
+
const os_1 = __nested_webpack_require_989518__(2087);
|
219237
|
+
const fs_extra_1 = __nested_webpack_require_989518__(5392);
|
219237
219238
|
async function getWritableDirectory() {
|
219238
219239
|
const name = Math.floor(Math.random() * 0x7fffffff).toString(16);
|
219239
219240
|
const directory = path_1.join(os_1.tmpdir(), name);
|
@@ -219246,7 +219247,7 @@ exports.default = getWritableDirectory;
|
|
219246
219247
|
/***/ }),
|
219247
219248
|
|
219248
219249
|
/***/ 4240:
|
219249
|
-
/***/ (function(__unused_webpack_module, exports,
|
219250
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_990098__) {
|
219250
219251
|
|
219251
219252
|
"use strict";
|
219252
219253
|
|
@@ -219254,13 +219255,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219254
219255
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
219255
219256
|
};
|
219256
219257
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219257
|
-
const path_1 = __importDefault(
|
219258
|
-
const assert_1 = __importDefault(
|
219259
|
-
const glob_1 = __importDefault(
|
219260
|
-
const util_1 =
|
219261
|
-
const fs_extra_1 =
|
219262
|
-
const normalize_path_1 =
|
219263
|
-
const file_fs_ref_1 = __importDefault(
|
219258
|
+
const path_1 = __importDefault(__nested_webpack_require_990098__(5622));
|
219259
|
+
const assert_1 = __importDefault(__nested_webpack_require_990098__(2357));
|
219260
|
+
const glob_1 = __importDefault(__nested_webpack_require_990098__(1104));
|
219261
|
+
const util_1 = __nested_webpack_require_990098__(1669);
|
219262
|
+
const fs_extra_1 = __nested_webpack_require_990098__(5392);
|
219263
|
+
const normalize_path_1 = __nested_webpack_require_990098__(6261);
|
219264
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_990098__(9331));
|
219264
219265
|
const vanillaGlob = util_1.promisify(glob_1.default);
|
219265
219266
|
async function glob(pattern, opts, mountpoint) {
|
219266
219267
|
let options;
|
@@ -219306,7 +219307,7 @@ exports.default = glob;
|
|
219306
219307
|
/***/ }),
|
219307
219308
|
|
219308
219309
|
/***/ 7903:
|
219309
|
-
/***/ (function(__unused_webpack_module, exports,
|
219310
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_992294__) {
|
219310
219311
|
|
219311
219312
|
"use strict";
|
219312
219313
|
|
@@ -219315,9 +219316,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219315
219316
|
};
|
219316
219317
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219317
219318
|
exports.getSupportedNodeVersion = exports.getDiscontinuedNodeVersions = exports.getLatestNodeVersion = void 0;
|
219318
|
-
const semver_1 =
|
219319
|
-
const errors_1 =
|
219320
|
-
const debug_1 = __importDefault(
|
219319
|
+
const semver_1 = __nested_webpack_require_992294__(2879);
|
219320
|
+
const errors_1 = __nested_webpack_require_992294__(3983);
|
219321
|
+
const debug_1 = __importDefault(__nested_webpack_require_992294__(1868));
|
219321
219322
|
const allOptions = [
|
219322
219323
|
{ major: 14, range: '14.x', runtime: 'nodejs14.x' },
|
219323
219324
|
{ major: 12, range: '12.x', runtime: 'nodejs12.x' },
|
@@ -219411,7 +219412,7 @@ exports.normalizePath = normalizePath;
|
|
219411
219412
|
/***/ }),
|
219412
219413
|
|
219413
219414
|
/***/ 7792:
|
219414
|
-
/***/ (function(__unused_webpack_module, exports,
|
219415
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_996162__) {
|
219415
219416
|
|
219416
219417
|
"use strict";
|
219417
219418
|
|
@@ -219420,9 +219421,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219420
219421
|
};
|
219421
219422
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219422
219423
|
exports.readConfigFile = void 0;
|
219423
|
-
const js_yaml_1 = __importDefault(
|
219424
|
-
const toml_1 = __importDefault(
|
219425
|
-
const fs_extra_1 =
|
219424
|
+
const js_yaml_1 = __importDefault(__nested_webpack_require_996162__(6540));
|
219425
|
+
const toml_1 = __importDefault(__nested_webpack_require_996162__(9434));
|
219426
|
+
const fs_extra_1 = __nested_webpack_require_996162__(5392);
|
219426
219427
|
async function readFileOrNull(file) {
|
219427
219428
|
try {
|
219428
219429
|
const data = await fs_extra_1.readFile(file);
|
@@ -219477,7 +219478,7 @@ exports.default = rename;
|
|
219477
219478
|
/***/ }),
|
219478
219479
|
|
219479
219480
|
/***/ 1442:
|
219480
|
-
/***/ (function(__unused_webpack_module, exports,
|
219481
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_997955__) {
|
219481
219482
|
|
219482
219483
|
"use strict";
|
219483
219484
|
|
@@ -219486,14 +219487,14 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219486
219487
|
};
|
219487
219488
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219488
219489
|
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;
|
219489
|
-
const assert_1 = __importDefault(
|
219490
|
-
const fs_extra_1 = __importDefault(
|
219491
|
-
const path_1 = __importDefault(
|
219492
|
-
const debug_1 = __importDefault(
|
219493
|
-
const cross_spawn_1 = __importDefault(
|
219494
|
-
const util_1 =
|
219495
|
-
const errors_1 =
|
219496
|
-
const node_version_1 =
|
219490
|
+
const assert_1 = __importDefault(__nested_webpack_require_997955__(2357));
|
219491
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_997955__(5392));
|
219492
|
+
const path_1 = __importDefault(__nested_webpack_require_997955__(5622));
|
219493
|
+
const debug_1 = __importDefault(__nested_webpack_require_997955__(1868));
|
219494
|
+
const cross_spawn_1 = __importDefault(__nested_webpack_require_997955__(7618));
|
219495
|
+
const util_1 = __nested_webpack_require_997955__(1669);
|
219496
|
+
const errors_1 = __nested_webpack_require_997955__(3983);
|
219497
|
+
const node_version_1 = __nested_webpack_require_997955__(7903);
|
219497
219498
|
function spawnAsync(command, args, opts = {}) {
|
219498
219499
|
return new Promise((resolve, reject) => {
|
219499
219500
|
const stderrLogs = [];
|
@@ -219804,7 +219805,7 @@ exports.installDependencies = util_1.deprecate(runNpmInstall, 'installDependenci
|
|
219804
219805
|
/***/ }),
|
219805
219806
|
|
219806
219807
|
/***/ 2560:
|
219807
|
-
/***/ (function(__unused_webpack_module, exports,
|
219808
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1011945__) {
|
219808
219809
|
|
219809
219810
|
"use strict";
|
219810
219811
|
|
@@ -219812,7 +219813,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219812
219813
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
219813
219814
|
};
|
219814
219815
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219815
|
-
const end_of_stream_1 = __importDefault(
|
219816
|
+
const end_of_stream_1 = __importDefault(__nested_webpack_require_1011945__(687));
|
219816
219817
|
function streamToBuffer(stream) {
|
219817
219818
|
return new Promise((resolve, reject) => {
|
219818
219819
|
const buffers = [];
|
@@ -219841,7 +219842,7 @@ exports.default = streamToBuffer;
|
|
219841
219842
|
/***/ }),
|
219842
219843
|
|
219843
219844
|
/***/ 1148:
|
219844
|
-
/***/ (function(__unused_webpack_module, exports,
|
219845
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1013013__) {
|
219845
219846
|
|
219846
219847
|
"use strict";
|
219847
219848
|
|
@@ -219849,9 +219850,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219849
219850
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
219850
219851
|
};
|
219851
219852
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219852
|
-
const path_1 = __importDefault(
|
219853
|
-
const fs_extra_1 = __importDefault(
|
219854
|
-
const ignore_1 = __importDefault(
|
219853
|
+
const path_1 = __importDefault(__nested_webpack_require_1013013__(5622));
|
219854
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_1013013__(5392));
|
219855
|
+
const ignore_1 = __importDefault(__nested_webpack_require_1013013__(3556));
|
219855
219856
|
function isCodedError(error) {
|
219856
219857
|
return (error !== null &&
|
219857
219858
|
error !== undefined &&
|
@@ -219908,7 +219909,7 @@ exports.default = default_1;
|
|
219908
219909
|
/***/ }),
|
219909
219910
|
|
219910
219911
|
/***/ 2855:
|
219911
|
-
/***/ (function(__unused_webpack_module, exports,
|
219912
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1015395__) {
|
219912
219913
|
|
219913
219914
|
"use strict";
|
219914
219915
|
|
@@ -219939,29 +219940,29 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219939
219940
|
};
|
219940
219941
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219941
219942
|
exports.getInputHash = exports.getPlatformEnv = exports.isStaticRuntime = exports.isOfficialRuntime = exports.updateRoutesManifest = exports.updateFunctionsManifest = exports.convertRuntimeToPlugin = exports.normalizePath = exports.readConfigFile = exports.DetectorFilesystem = exports.detectFramework = exports.detectFileSystemAPI = 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;
|
219942
|
-
const crypto_1 =
|
219943
|
-
const file_blob_1 = __importDefault(
|
219943
|
+
const crypto_1 = __nested_webpack_require_1015395__(6417);
|
219944
|
+
const file_blob_1 = __importDefault(__nested_webpack_require_1015395__(2397));
|
219944
219945
|
exports.FileBlob = file_blob_1.default;
|
219945
|
-
const file_fs_ref_1 = __importDefault(
|
219946
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_1015395__(9331));
|
219946
219947
|
exports.FileFsRef = file_fs_ref_1.default;
|
219947
|
-
const file_ref_1 = __importDefault(
|
219948
|
+
const file_ref_1 = __importDefault(__nested_webpack_require_1015395__(5187));
|
219948
219949
|
exports.FileRef = file_ref_1.default;
|
219949
|
-
const lambda_1 =
|
219950
|
+
const lambda_1 = __nested_webpack_require_1015395__(6721);
|
219950
219951
|
Object.defineProperty(exports, "Lambda", ({ enumerable: true, get: function () { return lambda_1.Lambda; } }));
|
219951
219952
|
Object.defineProperty(exports, "createLambda", ({ enumerable: true, get: function () { return lambda_1.createLambda; } }));
|
219952
219953
|
Object.defineProperty(exports, "getLambdaOptionsFromFunction", ({ enumerable: true, get: function () { return lambda_1.getLambdaOptionsFromFunction; } }));
|
219953
|
-
const prerender_1 =
|
219954
|
+
const prerender_1 = __nested_webpack_require_1015395__(2850);
|
219954
219955
|
Object.defineProperty(exports, "Prerender", ({ enumerable: true, get: function () { return prerender_1.Prerender; } }));
|
219955
|
-
const download_1 = __importStar(
|
219956
|
+
const download_1 = __importStar(__nested_webpack_require_1015395__(1611));
|
219956
219957
|
exports.download = download_1.default;
|
219957
219958
|
Object.defineProperty(exports, "isSymbolicLink", ({ enumerable: true, get: function () { return download_1.isSymbolicLink; } }));
|
219958
|
-
const get_writable_directory_1 = __importDefault(
|
219959
|
+
const get_writable_directory_1 = __importDefault(__nested_webpack_require_1015395__(3838));
|
219959
219960
|
exports.getWriteableDirectory = get_writable_directory_1.default;
|
219960
|
-
const glob_1 = __importDefault(
|
219961
|
+
const glob_1 = __importDefault(__nested_webpack_require_1015395__(4240));
|
219961
219962
|
exports.glob = glob_1.default;
|
219962
|
-
const rename_1 = __importDefault(
|
219963
|
+
const rename_1 = __importDefault(__nested_webpack_require_1015395__(6718));
|
219963
219964
|
exports.rename = rename_1.default;
|
219964
|
-
const run_user_scripts_1 =
|
219965
|
+
const run_user_scripts_1 = __nested_webpack_require_1015395__(1442);
|
219965
219966
|
Object.defineProperty(exports, "execAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.execAsync; } }));
|
219966
219967
|
Object.defineProperty(exports, "spawnAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.spawnAsync; } }));
|
219967
219968
|
Object.defineProperty(exports, "execCommand", ({ enumerable: true, get: function () { return run_user_scripts_1.execCommand; } }));
|
@@ -219978,40 +219979,40 @@ Object.defineProperty(exports, "getNodeVersion", ({ enumerable: true, get: funct
|
|
219978
219979
|
Object.defineProperty(exports, "getSpawnOptions", ({ enumerable: true, get: function () { return run_user_scripts_1.getSpawnOptions; } }));
|
219979
219980
|
Object.defineProperty(exports, "getNodeBinPath", ({ enumerable: true, get: function () { return run_user_scripts_1.getNodeBinPath; } }));
|
219980
219981
|
Object.defineProperty(exports, "scanParentDirs", ({ enumerable: true, get: function () { return run_user_scripts_1.scanParentDirs; } }));
|
219981
|
-
const node_version_1 =
|
219982
|
+
const node_version_1 = __nested_webpack_require_1015395__(7903);
|
219982
219983
|
Object.defineProperty(exports, "getLatestNodeVersion", ({ enumerable: true, get: function () { return node_version_1.getLatestNodeVersion; } }));
|
219983
219984
|
Object.defineProperty(exports, "getDiscontinuedNodeVersions", ({ enumerable: true, get: function () { return node_version_1.getDiscontinuedNodeVersions; } }));
|
219984
|
-
const errors_1 =
|
219985
|
-
const stream_to_buffer_1 = __importDefault(
|
219985
|
+
const errors_1 = __nested_webpack_require_1015395__(3983);
|
219986
|
+
const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1015395__(2560));
|
219986
219987
|
exports.streamToBuffer = stream_to_buffer_1.default;
|
219987
|
-
const should_serve_1 = __importDefault(
|
219988
|
+
const should_serve_1 = __importDefault(__nested_webpack_require_1015395__(2564));
|
219988
219989
|
exports.shouldServe = should_serve_1.default;
|
219989
|
-
const debug_1 = __importDefault(
|
219990
|
+
const debug_1 = __importDefault(__nested_webpack_require_1015395__(1868));
|
219990
219991
|
exports.debug = debug_1.default;
|
219991
|
-
const get_ignore_filter_1 = __importDefault(
|
219992
|
+
const get_ignore_filter_1 = __importDefault(__nested_webpack_require_1015395__(1148));
|
219992
219993
|
exports.getIgnoreFilter = get_ignore_filter_1.default;
|
219993
|
-
var detect_builders_1 =
|
219994
|
+
var detect_builders_1 = __nested_webpack_require_1015395__(4246);
|
219994
219995
|
Object.defineProperty(exports, "detectBuilders", ({ enumerable: true, get: function () { return detect_builders_1.detectBuilders; } }));
|
219995
219996
|
Object.defineProperty(exports, "detectOutputDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectOutputDirectory; } }));
|
219996
219997
|
Object.defineProperty(exports, "detectApiDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectApiDirectory; } }));
|
219997
219998
|
Object.defineProperty(exports, "detectApiExtensions", ({ enumerable: true, get: function () { return detect_builders_1.detectApiExtensions; } }));
|
219998
|
-
var detect_file_system_api_1 =
|
219999
|
+
var detect_file_system_api_1 = __nested_webpack_require_1015395__(1182);
|
219999
220000
|
Object.defineProperty(exports, "detectFileSystemAPI", ({ enumerable: true, get: function () { return detect_file_system_api_1.detectFileSystemAPI; } }));
|
220000
|
-
var detect_framework_1 =
|
220001
|
+
var detect_framework_1 = __nested_webpack_require_1015395__(5224);
|
220001
220002
|
Object.defineProperty(exports, "detectFramework", ({ enumerable: true, get: function () { return detect_framework_1.detectFramework; } }));
|
220002
|
-
var filesystem_1 =
|
220003
|
+
var filesystem_1 = __nested_webpack_require_1015395__(461);
|
220003
220004
|
Object.defineProperty(exports, "DetectorFilesystem", ({ enumerable: true, get: function () { return filesystem_1.DetectorFilesystem; } }));
|
220004
|
-
var read_config_file_1 =
|
220005
|
+
var read_config_file_1 = __nested_webpack_require_1015395__(7792);
|
220005
220006
|
Object.defineProperty(exports, "readConfigFile", ({ enumerable: true, get: function () { return read_config_file_1.readConfigFile; } }));
|
220006
|
-
var normalize_path_1 =
|
220007
|
+
var normalize_path_1 = __nested_webpack_require_1015395__(6261);
|
220007
220008
|
Object.defineProperty(exports, "normalizePath", ({ enumerable: true, get: function () { return normalize_path_1.normalizePath; } }));
|
220008
|
-
var convert_runtime_to_plugin_1 =
|
220009
|
+
var convert_runtime_to_plugin_1 = __nested_webpack_require_1015395__(7276);
|
220009
220010
|
Object.defineProperty(exports, "convertRuntimeToPlugin", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.convertRuntimeToPlugin; } }));
|
220010
220011
|
Object.defineProperty(exports, "updateFunctionsManifest", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.updateFunctionsManifest; } }));
|
220011
220012
|
Object.defineProperty(exports, "updateRoutesManifest", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.updateRoutesManifest; } }));
|
220012
|
-
__exportStar(
|
220013
|
-
__exportStar(
|
220014
|
-
__exportStar(
|
220013
|
+
__exportStar(__nested_webpack_require_1015395__(2416), exports);
|
220014
|
+
__exportStar(__nested_webpack_require_1015395__(5748), exports);
|
220015
|
+
__exportStar(__nested_webpack_require_1015395__(3983), exports);
|
220015
220016
|
/**
|
220016
220017
|
* Helper function to support both `@vercel` and legacy `@now` official Runtimes.
|
220017
220018
|
*/
|
@@ -220064,7 +220065,7 @@ exports.getInputHash = getInputHash;
|
|
220064
220065
|
/***/ }),
|
220065
220066
|
|
220066
220067
|
/***/ 6721:
|
220067
|
-
/***/ (function(__unused_webpack_module, exports,
|
220068
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1026615__) {
|
220068
220069
|
|
220069
220070
|
"use strict";
|
220070
220071
|
|
@@ -220073,13 +220074,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
220073
220074
|
};
|
220074
220075
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
220075
220076
|
exports.getLambdaOptionsFromFunction = exports.createZip = exports.createLambda = exports.Lambda = exports.FILES_SYMBOL = void 0;
|
220076
|
-
const assert_1 = __importDefault(
|
220077
|
-
const async_sema_1 = __importDefault(
|
220078
|
-
const yazl_1 =
|
220079
|
-
const minimatch_1 = __importDefault(
|
220080
|
-
const fs_extra_1 =
|
220081
|
-
const download_1 =
|
220082
|
-
const stream_to_buffer_1 = __importDefault(
|
220077
|
+
const assert_1 = __importDefault(__nested_webpack_require_1026615__(2357));
|
220078
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_1026615__(5758));
|
220079
|
+
const yazl_1 = __nested_webpack_require_1026615__(1223);
|
220080
|
+
const minimatch_1 = __importDefault(__nested_webpack_require_1026615__(9566));
|
220081
|
+
const fs_extra_1 = __nested_webpack_require_1026615__(5392);
|
220082
|
+
const download_1 = __nested_webpack_require_1026615__(1611);
|
220083
|
+
const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1026615__(2560));
|
220083
220084
|
exports.FILES_SYMBOL = Symbol('files');
|
220084
220085
|
class Lambda {
|
220085
220086
|
constructor({ zipBuffer, handler, runtime, maxDuration, memory, environment, allowQuery, regions, }) {
|
@@ -220308,12 +220309,12 @@ exports.buildsSchema = {
|
|
220308
220309
|
/***/ }),
|
220309
220310
|
|
220310
220311
|
/***/ 2564:
|
220311
|
-
/***/ ((__unused_webpack_module, exports,
|
220312
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_1035125__) => {
|
220312
220313
|
|
220313
220314
|
"use strict";
|
220314
220315
|
|
220315
220316
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
220316
|
-
const path_1 =
|
220317
|
+
const path_1 = __nested_webpack_require_1035125__(5622);
|
220317
220318
|
function shouldServe({ entrypoint, files, requestPath, }) {
|
220318
220319
|
requestPath = requestPath.replace(/\/$/, ''); // sanitize trailing '/'
|
220319
220320
|
entrypoint = entrypoint.replace(/\\/, '/'); // windows compatibility
|
@@ -220550,7 +220551,7 @@ module.exports = __webpack_require__(78761);
|
|
220550
220551
|
/******/ var __webpack_module_cache__ = {};
|
220551
220552
|
/******/
|
220552
220553
|
/******/ // The require function
|
220553
|
-
/******/ function
|
220554
|
+
/******/ function __nested_webpack_require_1134860__(moduleId) {
|
220554
220555
|
/******/ // Check if module is in cache
|
220555
220556
|
/******/ if(__webpack_module_cache__[moduleId]) {
|
220556
220557
|
/******/ return __webpack_module_cache__[moduleId].exports;
|
@@ -220565,7 +220566,7 @@ module.exports = __webpack_require__(78761);
|
|
220565
220566
|
/******/ // Execute the module function
|
220566
220567
|
/******/ var threw = true;
|
220567
220568
|
/******/ try {
|
220568
|
-
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports,
|
220569
|
+
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __nested_webpack_require_1134860__);
|
220569
220570
|
/******/ threw = false;
|
220570
220571
|
/******/ } finally {
|
220571
220572
|
/******/ if(threw) delete __webpack_module_cache__[moduleId];
|
@@ -220578,11 +220579,11 @@ module.exports = __webpack_require__(78761);
|
|
220578
220579
|
/************************************************************************/
|
220579
220580
|
/******/ /* webpack/runtime/compat */
|
220580
220581
|
/******/
|
220581
|
-
/******/
|
220582
|
+
/******/ __nested_webpack_require_1134860__.ab = __dirname + "/";/************************************************************************/
|
220582
220583
|
/******/ // module exports must be returned from runtime so entry inlining is disabled
|
220583
220584
|
/******/ // startup
|
220584
220585
|
/******/ // Load entry module and return exports
|
220585
|
-
/******/ return
|
220586
|
+
/******/ return __nested_webpack_require_1134860__(2855);
|
220586
220587
|
/******/ })()
|
220587
220588
|
;
|
220588
220589
|
|
@@ -243825,6 +243826,7 @@ exports.frameworks = [
|
|
243825
243826
|
tagline: 'SvelteKit is a framework for building web applications of all sizes.',
|
243826
243827
|
description: 'A SvelteKit app optimized to work for serverless.',
|
243827
243828
|
website: 'https://kit.svelte.dev',
|
243829
|
+
envPrefix: 'VITE_',
|
243828
243830
|
detectors: {
|
243829
243831
|
every: [
|
243830
243832
|
{
|
@@ -252566,9 +252568,10 @@ const logo_1 = __importDefault(__webpack_require__(9829));
|
|
252566
252568
|
const cmd_1 = __importDefault(__webpack_require__(87350));
|
252567
252569
|
const highlight_1 = __importDefault(__webpack_require__(8199));
|
252568
252570
|
const dev_1 = __importDefault(__webpack_require__(27447));
|
252569
|
-
const read_package_1 = __importDefault(__webpack_require__(79181));
|
252570
252571
|
const read_config_1 = __importDefault(__webpack_require__(89735));
|
252572
|
+
const read_json_file_1 = __importDefault(__webpack_require__(16898));
|
252571
252573
|
const pkg_name_1 = __webpack_require__(98106);
|
252574
|
+
const errors_ts_1 = __webpack_require__(60156);
|
252572
252575
|
const COMMAND_CONFIG = {
|
252573
252576
|
dev: ['dev'],
|
252574
252577
|
};
|
@@ -252598,6 +252601,7 @@ const help = () => {
|
|
252598
252601
|
`);
|
252599
252602
|
};
|
252600
252603
|
async function main(client) {
|
252604
|
+
var _a;
|
252601
252605
|
if (process.env.__VERCEL_DEV_RUNNING) {
|
252602
252606
|
client.output.error(`${cmd_1.default(`${pkg_name_1.getPkgName()} dev`)} must not recursively invoke itself. Check the Development Command in the Project Settings or the ${cmd_1.default('dev')} script in ${cmd_1.default('package.json')}`);
|
252603
252607
|
client.output.error(`Learn More: https://vercel.link/recursive-invocation-of-commands`);
|
@@ -252633,20 +252637,21 @@ async function main(client) {
|
|
252633
252637
|
return 2;
|
252634
252638
|
}
|
252635
252639
|
const [dir = '.'] = args;
|
252636
|
-
const
|
252637
|
-
|
252638
|
-
|
252639
|
-
|
252640
|
-
|
252641
|
-
|
252642
|
-
|
252643
|
-
|
252644
|
-
|
252645
|
-
|
252646
|
-
|
252647
|
-
|
252648
|
-
|
252649
|
-
|
252640
|
+
const vercelConfig = await read_config_1.default(dir);
|
252641
|
+
const hasBuilds = vercelConfig &&
|
252642
|
+
'builds' in vercelConfig &&
|
252643
|
+
vercelConfig.builds &&
|
252644
|
+
vercelConfig.builds.length > 0;
|
252645
|
+
if (!vercelConfig || !hasBuilds) {
|
252646
|
+
const pkg = await read_json_file_1.default(path_1.default.join(dir, 'package.json'));
|
252647
|
+
if (pkg instanceof errors_ts_1.CantParseJSONFile) {
|
252648
|
+
client.output.error('Could not parse package.json');
|
252649
|
+
return 1;
|
252650
|
+
}
|
252651
|
+
if (/\b(now|vercel)\b\W+\bdev\b/.test(((_a = pkg === null || pkg === void 0 ? void 0 : pkg.scripts) === null || _a === void 0 ? void 0 : _a.dev) || '')) {
|
252652
|
+
client.output.error(`${cmd_1.default(`${pkg_name_1.getPkgName()} dev`)} must not recursively invoke itself. Check the Development Command in the Project Settings or the ${cmd_1.default('dev')} script in ${cmd_1.default('package.json')}`);
|
252653
|
+
client.output.error(`Learn More: https://vercel.link/recursive-invocation-of-commands`);
|
252654
|
+
return 1;
|
252650
252655
|
}
|
252651
252656
|
}
|
252652
252657
|
if (argv._.length > 2) {
|
@@ -265849,7 +265854,6 @@ const client_1 = __webpack_require__(20192);
|
|
265849
265854
|
const errors_ts_1 = __webpack_require__(60156);
|
265850
265855
|
const humanize_path_1 = __importDefault(__webpack_require__(45090));
|
265851
265856
|
const read_json_file_1 = __importDefault(__webpack_require__(16898));
|
265852
|
-
const read_package_1 = __importDefault(__webpack_require__(79181));
|
265853
265857
|
let config;
|
265854
265858
|
async function getConfig(output, configFile) {
|
265855
265859
|
// If config was already read, just return it
|
@@ -265908,29 +265912,10 @@ async function getConfig(output, configFile) {
|
|
265908
265912
|
config[client_1.fileNameSymbol] = 'now.json';
|
265909
265913
|
return config;
|
265910
265914
|
}
|
265911
|
-
// Finally try with the package
|
265912
|
-
const pkgFilePath = path_1.default.resolve(localPath, 'package.json');
|
265913
|
-
const pkgConfig = await readConfigFromPackage(pkgFilePath);
|
265914
|
-
if (pkgConfig instanceof errors_ts_1.CantParseJSONFile) {
|
265915
|
-
return pkgConfig;
|
265916
|
-
}
|
265917
|
-
if (pkgConfig) {
|
265918
|
-
output.debug(`Found config in package ${pkgFilePath}`);
|
265919
|
-
config = pkgConfig;
|
265920
|
-
config[client_1.fileNameSymbol] = 'package.json';
|
265921
|
-
return config;
|
265922
|
-
}
|
265923
265915
|
// If we couldn't find the config anywhere return error
|
265924
|
-
return new errors_ts_1.CantFindConfig([vercelFilePath, nowFilePath
|
265916
|
+
return new errors_ts_1.CantFindConfig([vercelFilePath, nowFilePath].map(humanize_path_1.default));
|
265925
265917
|
}
|
265926
265918
|
exports.default = getConfig;
|
265927
|
-
async function readConfigFromPackage(file) {
|
265928
|
-
const result = await read_package_1.default(file);
|
265929
|
-
if (result instanceof errors_ts_1.CantParseJSONFile) {
|
265930
|
-
return result;
|
265931
|
-
}
|
265932
|
-
return result !== null ? result.now : null;
|
265933
|
-
}
|
265934
265919
|
|
265935
265920
|
|
265936
265921
|
/***/ }),
|
@@ -270497,34 +270482,6 @@ async function readFileSafe(file) {
|
|
270497
270482
|
}
|
270498
270483
|
|
270499
270484
|
|
270500
|
-
/***/ }),
|
270501
|
-
|
270502
|
-
/***/ 79181:
|
270503
|
-
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
270504
|
-
|
270505
|
-
"use strict";
|
270506
|
-
|
270507
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
270508
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
270509
|
-
};
|
270510
|
-
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
270511
|
-
const path_1 = __importDefault(__webpack_require__(85622));
|
270512
|
-
const errors_ts_1 = __webpack_require__(60156);
|
270513
|
-
const read_json_file_1 = __importDefault(__webpack_require__(16898));
|
270514
|
-
async function readPackage(file) {
|
270515
|
-
const pkgFilePath = file || path_1.default.resolve(process.cwd(), 'package.json');
|
270516
|
-
const result = await read_json_file_1.default(pkgFilePath);
|
270517
|
-
if (result instanceof errors_ts_1.CantParseJSONFile) {
|
270518
|
-
return result;
|
270519
|
-
}
|
270520
|
-
if (result) {
|
270521
|
-
return result;
|
270522
|
-
}
|
270523
|
-
return null;
|
270524
|
-
}
|
270525
|
-
exports.default = readPackage;
|
270526
|
-
|
270527
|
-
|
270528
270485
|
/***/ }),
|
270529
270486
|
|
270530
270487
|
/***/ 71494:
|
@@ -271377,7 +271334,7 @@ module.exports = JSON.parse("[\"ac\",\"com.ac\",\"edu.ac\",\"gov.ac\",\"net.ac\"
|
|
271377
271334
|
/***/ ((module) => {
|
271378
271335
|
|
271379
271336
|
"use strict";
|
271380
|
-
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"23.1.3-canary.
|
271337
|
+
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"23.1.3-canary.71\",\"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.46\",\"@vercel/go\":\"1.2.4-canary.4\",\"@vercel/node\":\"1.12.2-canary.7\",\"@vercel/python\":\"2.1.2-canary.2\",\"@vercel/ruby\":\"1.2.10-canary.0\",\"update-notifier\":\"4.1.0\",\"vercel-plugin-middleware\":\"0.0.0-canary.23\",\"vercel-plugin-node\":\"1.12.2-canary.38\"},\"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/client\":\"10.2.3-canary.49\",\"@vercel/frameworks\":\"0.5.1-canary.19\",\"@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\":\"b620c5343a60039f86188d4667e4dc71baf4f505\"}");
|
271381
271338
|
|
271382
271339
|
/***/ }),
|
271383
271340
|
|
@@ -271393,7 +271350,7 @@ module.exports = JSON.parse("{\"VISA\":\"Visa\",\"MASTERCARD\":\"MasterCard\",\"
|
|
271393
271350
|
/***/ ((module) => {
|
271394
271351
|
|
271395
271352
|
"use strict";
|
271396
|
-
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.2.3-canary.
|
271353
|
+
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.2.3-canary.49\",\"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.46\",\"@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\":\"b620c5343a60039f86188d4667e4dc71baf4f505\"}");
|
271397
271354
|
|
271398
271355
|
/***/ }),
|
271399
271356
|
|