vercel 23.1.3-canary.44 → 23.1.3-canary.45
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 +105 -122
- package/package.json +4 -4
package/dist/index.js
CHANGED
@@ -216935,7 +216935,6 @@ const path_1 = __nested_webpack_require_905807__(5622);
|
|
216935
216935
|
const glob_1 = __importDefault(__nested_webpack_require_905807__(4240));
|
216936
216936
|
const normalize_path_1 = __nested_webpack_require_905807__(6261);
|
216937
216937
|
const lambda_1 = __nested_webpack_require_905807__(6721);
|
216938
|
-
const minimatch_1 = __importDefault(__nested_webpack_require_905807__(9566));
|
216939
216938
|
/**
|
216940
216939
|
* Convert legacy Runtime to a Plugin.
|
216941
216940
|
* @param buildRuntime - a legacy build() function from a Runtime
|
@@ -216943,26 +216942,21 @@ const minimatch_1 = __importDefault(__nested_webpack_require_905807__(9566));
|
|
216943
216942
|
*/
|
216944
216943
|
function convertRuntimeToPlugin(buildRuntime, ext) {
|
216945
216944
|
// This `build()` signature should match `plugin.build()` signature in `vercel build`.
|
216946
|
-
return async function build({
|
216945
|
+
return async function build({ workPath }) {
|
216947
216946
|
const opts = { cwd: workPath };
|
216948
216947
|
const files = await glob_1.default('**', opts);
|
216949
216948
|
delete files['vercel.json']; // Builders/Runtimes didn't have vercel.json
|
216950
216949
|
const entrypoints = await glob_1.default(`api/**/*${ext}`, opts);
|
216951
216950
|
const pages = {};
|
216952
|
-
const { functions = {} } = vercelConfig;
|
216953
216951
|
const traceDir = path_1.join(workPath, '.output', 'runtime-traced-files');
|
216954
216952
|
await fs_extra_1.default.ensureDir(traceDir);
|
216955
216953
|
for (const entrypoint of Object.keys(entrypoints)) {
|
216956
|
-
const key = Object.keys(functions).find(src => src === entrypoint || minimatch_1.default(entrypoint, src)) || '';
|
216957
|
-
const config = functions[key] || {};
|
216958
216954
|
const { output } = await buildRuntime({
|
216959
216955
|
files,
|
216960
216956
|
entrypoint,
|
216961
216957
|
workPath,
|
216962
216958
|
config: {
|
216963
216959
|
zeroConfig: true,
|
216964
|
-
includeFiles: config.includeFiles,
|
216965
|
-
excludeFiles: config.excludeFiles,
|
216966
216960
|
},
|
216967
216961
|
meta: {
|
216968
216962
|
avoidTopLevelInstall: true,
|
@@ -216975,7 +216969,6 @@ function convertRuntimeToPlugin(buildRuntime, ext) {
|
|
216975
216969
|
maxDuration: output.maxDuration,
|
216976
216970
|
environment: output.environment,
|
216977
216971
|
allowQuery: output.allowQuery,
|
216978
|
-
//regions: output.regions,
|
216979
216972
|
};
|
216980
216973
|
// @ts-ignore This symbol is a private API
|
216981
216974
|
const lambdaFiles = output[lambda_1.FILES_SYMBOL];
|
@@ -217008,7 +217001,7 @@ function convertRuntimeToPlugin(buildRuntime, ext) {
|
|
217008
217001
|
await fs_extra_1.default.ensureDir(path_1.dirname(nft));
|
217009
217002
|
await fs_extra_1.default.writeFile(nft, json);
|
217010
217003
|
}
|
217011
|
-
await updateFunctionsManifest({
|
217004
|
+
await updateFunctionsManifest({ workPath, pages });
|
217012
217005
|
};
|
217013
217006
|
}
|
217014
217007
|
exports.convertRuntimeToPlugin = convertRuntimeToPlugin;
|
@@ -217036,10 +217029,9 @@ async function readJson(filePath) {
|
|
217036
217029
|
}
|
217037
217030
|
/**
|
217038
217031
|
* If `.output/functions-manifest.json` exists, append to the pages
|
217039
|
-
* property. Otherwise write a new file.
|
217040
|
-
* and apply relevant `functions` property config.
|
217032
|
+
* property. Otherwise write a new file.
|
217041
217033
|
*/
|
217042
|
-
async function updateFunctionsManifest({
|
217034
|
+
async function updateFunctionsManifest({ workPath, pages, }) {
|
217043
217035
|
const functionsManifestPath = path_1.join(workPath, '.output', 'functions-manifest.json');
|
217044
217036
|
const functionsManifest = await readJson(functionsManifestPath);
|
217045
217037
|
if (!functionsManifest.version)
|
@@ -217047,16 +217039,7 @@ async function updateFunctionsManifest({ vercelConfig, workPath, pages, }) {
|
|
217047
217039
|
if (!functionsManifest.pages)
|
217048
217040
|
functionsManifest.pages = {};
|
217049
217041
|
for (const [pageKey, pageConfig] of Object.entries(pages)) {
|
217050
|
-
|
217051
|
-
sourceFile: pageKey,
|
217052
|
-
config: vercelConfig,
|
217053
|
-
});
|
217054
|
-
functionsManifest.pages[pageKey] = {
|
217055
|
-
...pageConfig,
|
217056
|
-
memory: fnConfig.memory || pageConfig.memory,
|
217057
|
-
maxDuration: fnConfig.maxDuration || pageConfig.maxDuration,
|
217058
|
-
regions: vercelConfig.regions || pageConfig.regions,
|
217059
|
-
};
|
217042
|
+
functionsManifest.pages[pageKey] = { ...pageConfig };
|
217060
217043
|
}
|
217061
217044
|
await fs_extra_1.default.writeFile(functionsManifestPath, JSON.stringify(functionsManifest));
|
217062
217045
|
}
|
@@ -217105,12 +217088,12 @@ exports.updateRoutesManifest = updateRoutesManifest;
|
|
217105
217088
|
/***/ }),
|
217106
217089
|
|
217107
217090
|
/***/ 1868:
|
217108
|
-
/***/ ((__unused_webpack_module, exports,
|
217091
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_912535__) => {
|
217109
217092
|
|
217110
217093
|
"use strict";
|
217111
217094
|
|
217112
217095
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
217113
|
-
const _1 =
|
217096
|
+
const _1 = __nested_webpack_require_912535__(2855);
|
217114
217097
|
function debug(message, ...additional) {
|
217115
217098
|
if (_1.getPlatformEnv('BUILDER_DEBUG')) {
|
217116
217099
|
console.log(message, ...additional);
|
@@ -217122,7 +217105,7 @@ exports.default = debug;
|
|
217122
217105
|
/***/ }),
|
217123
217106
|
|
217124
217107
|
/***/ 4246:
|
217125
|
-
/***/ (function(__unused_webpack_module, exports,
|
217108
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_912920__) {
|
217126
217109
|
|
217127
217110
|
"use strict";
|
217128
217111
|
|
@@ -217131,11 +217114,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
217131
217114
|
};
|
217132
217115
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
217133
217116
|
exports.detectBuilders = exports.detectOutputDirectory = exports.detectApiDirectory = exports.detectApiExtensions = exports.sortFiles = void 0;
|
217134
|
-
const minimatch_1 = __importDefault(
|
217135
|
-
const semver_1 =
|
217136
|
-
const path_1 =
|
217137
|
-
const frameworks_1 = __importDefault(
|
217138
|
-
const _1 =
|
217117
|
+
const minimatch_1 = __importDefault(__nested_webpack_require_912920__(9566));
|
217118
|
+
const semver_1 = __nested_webpack_require_912920__(2879);
|
217119
|
+
const path_1 = __nested_webpack_require_912920__(5622);
|
217120
|
+
const frameworks_1 = __importDefault(__nested_webpack_require_912920__(8438));
|
217121
|
+
const _1 = __nested_webpack_require_912920__(2855);
|
217139
217122
|
const slugToFramework = new Map(frameworks_1.default.map(f => [f.slug, f]));
|
217140
217123
|
// We need to sort the file paths by alphabet to make
|
217141
217124
|
// sure the routes stay in the same order e.g. for deduping
|
@@ -218194,7 +218177,7 @@ function getSuggestion(topLevelProp, additionalProperty) {
|
|
218194
218177
|
/***/ }),
|
218195
218178
|
|
218196
218179
|
/***/ 2397:
|
218197
|
-
/***/ (function(__unused_webpack_module, exports,
|
218180
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_952304__) {
|
218198
218181
|
|
218199
218182
|
"use strict";
|
218200
218183
|
|
@@ -218202,8 +218185,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218202
218185
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
218203
218186
|
};
|
218204
218187
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218205
|
-
const assert_1 = __importDefault(
|
218206
|
-
const into_stream_1 = __importDefault(
|
218188
|
+
const assert_1 = __importDefault(__nested_webpack_require_952304__(2357));
|
218189
|
+
const into_stream_1 = __importDefault(__nested_webpack_require_952304__(6130));
|
218207
218190
|
class FileBlob {
|
218208
218191
|
constructor({ mode = 0o100644, contentType, data }) {
|
218209
218192
|
assert_1.default(typeof mode === 'number');
|
@@ -218235,7 +218218,7 @@ exports.default = FileBlob;
|
|
218235
218218
|
/***/ }),
|
218236
218219
|
|
218237
218220
|
/***/ 9331:
|
218238
|
-
/***/ (function(__unused_webpack_module, exports,
|
218221
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_953756__) {
|
218239
218222
|
|
218240
218223
|
"use strict";
|
218241
218224
|
|
@@ -218243,11 +218226,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218243
218226
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
218244
218227
|
};
|
218245
218228
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218246
|
-
const assert_1 = __importDefault(
|
218247
|
-
const fs_extra_1 = __importDefault(
|
218248
|
-
const multistream_1 = __importDefault(
|
218249
|
-
const path_1 = __importDefault(
|
218250
|
-
const async_sema_1 = __importDefault(
|
218229
|
+
const assert_1 = __importDefault(__nested_webpack_require_953756__(2357));
|
218230
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_953756__(5392));
|
218231
|
+
const multistream_1 = __importDefault(__nested_webpack_require_953756__(8179));
|
218232
|
+
const path_1 = __importDefault(__nested_webpack_require_953756__(5622));
|
218233
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_953756__(5758));
|
218251
218234
|
const semaToPreventEMFILE = new async_sema_1.default(20);
|
218252
218235
|
class FileFsRef {
|
218253
218236
|
constructor({ mode = 0o100644, contentType, fsPath }) {
|
@@ -218313,7 +218296,7 @@ exports.default = FileFsRef;
|
|
218313
218296
|
/***/ }),
|
218314
218297
|
|
218315
218298
|
/***/ 5187:
|
218316
|
-
/***/ (function(__unused_webpack_module, exports,
|
218299
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_956560__) {
|
218317
218300
|
|
218318
218301
|
"use strict";
|
218319
218302
|
|
@@ -218321,11 +218304,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218321
218304
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
218322
218305
|
};
|
218323
218306
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218324
|
-
const assert_1 = __importDefault(
|
218325
|
-
const node_fetch_1 = __importDefault(
|
218326
|
-
const multistream_1 = __importDefault(
|
218327
|
-
const async_retry_1 = __importDefault(
|
218328
|
-
const async_sema_1 = __importDefault(
|
218307
|
+
const assert_1 = __importDefault(__nested_webpack_require_956560__(2357));
|
218308
|
+
const node_fetch_1 = __importDefault(__nested_webpack_require_956560__(2197));
|
218309
|
+
const multistream_1 = __importDefault(__nested_webpack_require_956560__(8179));
|
218310
|
+
const async_retry_1 = __importDefault(__nested_webpack_require_956560__(3691));
|
218311
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_956560__(5758));
|
218329
218312
|
const semaToDownloadFromS3 = new async_sema_1.default(5);
|
218330
218313
|
class BailableError extends Error {
|
218331
218314
|
constructor(...args) {
|
@@ -218406,7 +218389,7 @@ exports.default = FileRef;
|
|
218406
218389
|
/***/ }),
|
218407
218390
|
|
218408
218391
|
/***/ 1611:
|
218409
|
-
/***/ (function(__unused_webpack_module, exports,
|
218392
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_959961__) {
|
218410
218393
|
|
218411
218394
|
"use strict";
|
218412
218395
|
|
@@ -218415,10 +218398,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218415
218398
|
};
|
218416
218399
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218417
218400
|
exports.isSymbolicLink = void 0;
|
218418
|
-
const path_1 = __importDefault(
|
218419
|
-
const debug_1 = __importDefault(
|
218420
|
-
const file_fs_ref_1 = __importDefault(
|
218421
|
-
const fs_extra_1 =
|
218401
|
+
const path_1 = __importDefault(__nested_webpack_require_959961__(5622));
|
218402
|
+
const debug_1 = __importDefault(__nested_webpack_require_959961__(1868));
|
218403
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_959961__(9331));
|
218404
|
+
const fs_extra_1 = __nested_webpack_require_959961__(5392);
|
218422
218405
|
const S_IFMT = 61440; /* 0170000 type of file */
|
218423
218406
|
const S_IFLNK = 40960; /* 0120000 symbolic link */
|
218424
218407
|
function isSymbolicLink(mode) {
|
@@ -218480,14 +218463,14 @@ exports.default = download;
|
|
218480
218463
|
/***/ }),
|
218481
218464
|
|
218482
218465
|
/***/ 3838:
|
218483
|
-
/***/ ((__unused_webpack_module, exports,
|
218466
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_962786__) => {
|
218484
218467
|
|
218485
218468
|
"use strict";
|
218486
218469
|
|
218487
218470
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218488
|
-
const path_1 =
|
218489
|
-
const os_1 =
|
218490
|
-
const fs_extra_1 =
|
218471
|
+
const path_1 = __nested_webpack_require_962786__(5622);
|
218472
|
+
const os_1 = __nested_webpack_require_962786__(2087);
|
218473
|
+
const fs_extra_1 = __nested_webpack_require_962786__(5392);
|
218491
218474
|
async function getWritableDirectory() {
|
218492
218475
|
const name = Math.floor(Math.random() * 0x7fffffff).toString(16);
|
218493
218476
|
const directory = path_1.join(os_1.tmpdir(), name);
|
@@ -218500,7 +218483,7 @@ exports.default = getWritableDirectory;
|
|
218500
218483
|
/***/ }),
|
218501
218484
|
|
218502
218485
|
/***/ 4240:
|
218503
|
-
/***/ (function(__unused_webpack_module, exports,
|
218486
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_963366__) {
|
218504
218487
|
|
218505
218488
|
"use strict";
|
218506
218489
|
|
@@ -218508,13 +218491,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218508
218491
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
218509
218492
|
};
|
218510
218493
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218511
|
-
const path_1 = __importDefault(
|
218512
|
-
const assert_1 = __importDefault(
|
218513
|
-
const glob_1 = __importDefault(
|
218514
|
-
const util_1 =
|
218515
|
-
const fs_extra_1 =
|
218516
|
-
const normalize_path_1 =
|
218517
|
-
const file_fs_ref_1 = __importDefault(
|
218494
|
+
const path_1 = __importDefault(__nested_webpack_require_963366__(5622));
|
218495
|
+
const assert_1 = __importDefault(__nested_webpack_require_963366__(2357));
|
218496
|
+
const glob_1 = __importDefault(__nested_webpack_require_963366__(1104));
|
218497
|
+
const util_1 = __nested_webpack_require_963366__(1669);
|
218498
|
+
const fs_extra_1 = __nested_webpack_require_963366__(5392);
|
218499
|
+
const normalize_path_1 = __nested_webpack_require_963366__(6261);
|
218500
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_963366__(9331));
|
218518
218501
|
const vanillaGlob = util_1.promisify(glob_1.default);
|
218519
218502
|
async function glob(pattern, opts, mountpoint) {
|
218520
218503
|
let options;
|
@@ -218560,7 +218543,7 @@ exports.default = glob;
|
|
218560
218543
|
/***/ }),
|
218561
218544
|
|
218562
218545
|
/***/ 7903:
|
218563
|
-
/***/ (function(__unused_webpack_module, exports,
|
218546
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_965562__) {
|
218564
218547
|
|
218565
218548
|
"use strict";
|
218566
218549
|
|
@@ -218569,9 +218552,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218569
218552
|
};
|
218570
218553
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218571
218554
|
exports.getSupportedNodeVersion = exports.getDiscontinuedNodeVersions = exports.getLatestNodeVersion = void 0;
|
218572
|
-
const semver_1 =
|
218573
|
-
const errors_1 =
|
218574
|
-
const debug_1 = __importDefault(
|
218555
|
+
const semver_1 = __nested_webpack_require_965562__(2879);
|
218556
|
+
const errors_1 = __nested_webpack_require_965562__(3983);
|
218557
|
+
const debug_1 = __importDefault(__nested_webpack_require_965562__(1868));
|
218575
218558
|
const allOptions = [
|
218576
218559
|
{ major: 14, range: '14.x', runtime: 'nodejs14.x' },
|
218577
218560
|
{ major: 12, range: '12.x', runtime: 'nodejs12.x' },
|
@@ -218665,7 +218648,7 @@ exports.normalizePath = normalizePath;
|
|
218665
218648
|
/***/ }),
|
218666
218649
|
|
218667
218650
|
/***/ 7792:
|
218668
|
-
/***/ (function(__unused_webpack_module, exports,
|
218651
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_969430__) {
|
218669
218652
|
|
218670
218653
|
"use strict";
|
218671
218654
|
|
@@ -218674,9 +218657,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218674
218657
|
};
|
218675
218658
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218676
218659
|
exports.readConfigFile = void 0;
|
218677
|
-
const js_yaml_1 = __importDefault(
|
218678
|
-
const toml_1 = __importDefault(
|
218679
|
-
const fs_extra_1 =
|
218660
|
+
const js_yaml_1 = __importDefault(__nested_webpack_require_969430__(6540));
|
218661
|
+
const toml_1 = __importDefault(__nested_webpack_require_969430__(9434));
|
218662
|
+
const fs_extra_1 = __nested_webpack_require_969430__(5392);
|
218680
218663
|
async function readFileOrNull(file) {
|
218681
218664
|
try {
|
218682
218665
|
const data = await fs_extra_1.readFile(file);
|
@@ -218731,7 +218714,7 @@ exports.default = rename;
|
|
218731
218714
|
/***/ }),
|
218732
218715
|
|
218733
218716
|
/***/ 1442:
|
218734
|
-
/***/ (function(__unused_webpack_module, exports,
|
218717
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_971223__) {
|
218735
218718
|
|
218736
218719
|
"use strict";
|
218737
218720
|
|
@@ -218740,14 +218723,14 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218740
218723
|
};
|
218741
218724
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218742
218725
|
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;
|
218743
|
-
const assert_1 = __importDefault(
|
218744
|
-
const fs_extra_1 = __importDefault(
|
218745
|
-
const path_1 = __importDefault(
|
218746
|
-
const debug_1 = __importDefault(
|
218747
|
-
const cross_spawn_1 = __importDefault(
|
218748
|
-
const util_1 =
|
218749
|
-
const errors_1 =
|
218750
|
-
const node_version_1 =
|
218726
|
+
const assert_1 = __importDefault(__nested_webpack_require_971223__(2357));
|
218727
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_971223__(5392));
|
218728
|
+
const path_1 = __importDefault(__nested_webpack_require_971223__(5622));
|
218729
|
+
const debug_1 = __importDefault(__nested_webpack_require_971223__(1868));
|
218730
|
+
const cross_spawn_1 = __importDefault(__nested_webpack_require_971223__(7618));
|
218731
|
+
const util_1 = __nested_webpack_require_971223__(1669);
|
218732
|
+
const errors_1 = __nested_webpack_require_971223__(3983);
|
218733
|
+
const node_version_1 = __nested_webpack_require_971223__(7903);
|
218751
218734
|
function spawnAsync(command, args, opts = {}) {
|
218752
218735
|
return new Promise((resolve, reject) => {
|
218753
218736
|
const stderrLogs = [];
|
@@ -219058,7 +219041,7 @@ exports.installDependencies = util_1.deprecate(runNpmInstall, 'installDependenci
|
|
219058
219041
|
/***/ }),
|
219059
219042
|
|
219060
219043
|
/***/ 2560:
|
219061
|
-
/***/ (function(__unused_webpack_module, exports,
|
219044
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_985213__) {
|
219062
219045
|
|
219063
219046
|
"use strict";
|
219064
219047
|
|
@@ -219066,7 +219049,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219066
219049
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
219067
219050
|
};
|
219068
219051
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219069
|
-
const end_of_stream_1 = __importDefault(
|
219052
|
+
const end_of_stream_1 = __importDefault(__nested_webpack_require_985213__(687));
|
219070
219053
|
function streamToBuffer(stream) {
|
219071
219054
|
return new Promise((resolve, reject) => {
|
219072
219055
|
const buffers = [];
|
@@ -219095,7 +219078,7 @@ exports.default = streamToBuffer;
|
|
219095
219078
|
/***/ }),
|
219096
219079
|
|
219097
219080
|
/***/ 2855:
|
219098
|
-
/***/ (function(__unused_webpack_module, exports,
|
219081
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_986281__) {
|
219099
219082
|
|
219100
219083
|
"use strict";
|
219101
219084
|
|
@@ -219126,28 +219109,28 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219126
219109
|
};
|
219127
219110
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219128
219111
|
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.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;
|
219129
|
-
const file_blob_1 = __importDefault(
|
219112
|
+
const file_blob_1 = __importDefault(__nested_webpack_require_986281__(2397));
|
219130
219113
|
exports.FileBlob = file_blob_1.default;
|
219131
|
-
const file_fs_ref_1 = __importDefault(
|
219114
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_986281__(9331));
|
219132
219115
|
exports.FileFsRef = file_fs_ref_1.default;
|
219133
|
-
const file_ref_1 = __importDefault(
|
219116
|
+
const file_ref_1 = __importDefault(__nested_webpack_require_986281__(5187));
|
219134
219117
|
exports.FileRef = file_ref_1.default;
|
219135
|
-
const lambda_1 =
|
219118
|
+
const lambda_1 = __nested_webpack_require_986281__(6721);
|
219136
219119
|
Object.defineProperty(exports, "Lambda", ({ enumerable: true, get: function () { return lambda_1.Lambda; } }));
|
219137
219120
|
Object.defineProperty(exports, "createLambda", ({ enumerable: true, get: function () { return lambda_1.createLambda; } }));
|
219138
219121
|
Object.defineProperty(exports, "getLambdaOptionsFromFunction", ({ enumerable: true, get: function () { return lambda_1.getLambdaOptionsFromFunction; } }));
|
219139
|
-
const prerender_1 =
|
219122
|
+
const prerender_1 = __nested_webpack_require_986281__(2850);
|
219140
219123
|
Object.defineProperty(exports, "Prerender", ({ enumerable: true, get: function () { return prerender_1.Prerender; } }));
|
219141
|
-
const download_1 = __importStar(
|
219124
|
+
const download_1 = __importStar(__nested_webpack_require_986281__(1611));
|
219142
219125
|
exports.download = download_1.default;
|
219143
219126
|
Object.defineProperty(exports, "isSymbolicLink", ({ enumerable: true, get: function () { return download_1.isSymbolicLink; } }));
|
219144
|
-
const get_writable_directory_1 = __importDefault(
|
219127
|
+
const get_writable_directory_1 = __importDefault(__nested_webpack_require_986281__(3838));
|
219145
219128
|
exports.getWriteableDirectory = get_writable_directory_1.default;
|
219146
|
-
const glob_1 = __importDefault(
|
219129
|
+
const glob_1 = __importDefault(__nested_webpack_require_986281__(4240));
|
219147
219130
|
exports.glob = glob_1.default;
|
219148
|
-
const rename_1 = __importDefault(
|
219131
|
+
const rename_1 = __importDefault(__nested_webpack_require_986281__(6718));
|
219149
219132
|
exports.rename = rename_1.default;
|
219150
|
-
const run_user_scripts_1 =
|
219133
|
+
const run_user_scripts_1 = __nested_webpack_require_986281__(1442);
|
219151
219134
|
Object.defineProperty(exports, "execAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.execAsync; } }));
|
219152
219135
|
Object.defineProperty(exports, "spawnAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.spawnAsync; } }));
|
219153
219136
|
Object.defineProperty(exports, "execCommand", ({ enumerable: true, get: function () { return run_user_scripts_1.execCommand; } }));
|
@@ -219164,36 +219147,36 @@ Object.defineProperty(exports, "getNodeVersion", ({ enumerable: true, get: funct
|
|
219164
219147
|
Object.defineProperty(exports, "getSpawnOptions", ({ enumerable: true, get: function () { return run_user_scripts_1.getSpawnOptions; } }));
|
219165
219148
|
Object.defineProperty(exports, "getNodeBinPath", ({ enumerable: true, get: function () { return run_user_scripts_1.getNodeBinPath; } }));
|
219166
219149
|
Object.defineProperty(exports, "scanParentDirs", ({ enumerable: true, get: function () { return run_user_scripts_1.scanParentDirs; } }));
|
219167
|
-
const node_version_1 =
|
219150
|
+
const node_version_1 = __nested_webpack_require_986281__(7903);
|
219168
219151
|
Object.defineProperty(exports, "getLatestNodeVersion", ({ enumerable: true, get: function () { return node_version_1.getLatestNodeVersion; } }));
|
219169
219152
|
Object.defineProperty(exports, "getDiscontinuedNodeVersions", ({ enumerable: true, get: function () { return node_version_1.getDiscontinuedNodeVersions; } }));
|
219170
|
-
const errors_1 =
|
219171
|
-
const stream_to_buffer_1 = __importDefault(
|
219153
|
+
const errors_1 = __nested_webpack_require_986281__(3983);
|
219154
|
+
const stream_to_buffer_1 = __importDefault(__nested_webpack_require_986281__(2560));
|
219172
219155
|
exports.streamToBuffer = stream_to_buffer_1.default;
|
219173
|
-
const should_serve_1 = __importDefault(
|
219156
|
+
const should_serve_1 = __importDefault(__nested_webpack_require_986281__(2564));
|
219174
219157
|
exports.shouldServe = should_serve_1.default;
|
219175
|
-
const debug_1 = __importDefault(
|
219158
|
+
const debug_1 = __importDefault(__nested_webpack_require_986281__(1868));
|
219176
219159
|
exports.debug = debug_1.default;
|
219177
|
-
var detect_builders_1 =
|
219160
|
+
var detect_builders_1 = __nested_webpack_require_986281__(4246);
|
219178
219161
|
Object.defineProperty(exports, "detectBuilders", ({ enumerable: true, get: function () { return detect_builders_1.detectBuilders; } }));
|
219179
219162
|
Object.defineProperty(exports, "detectOutputDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectOutputDirectory; } }));
|
219180
219163
|
Object.defineProperty(exports, "detectApiDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectApiDirectory; } }));
|
219181
219164
|
Object.defineProperty(exports, "detectApiExtensions", ({ enumerable: true, get: function () { return detect_builders_1.detectApiExtensions; } }));
|
219182
|
-
var detect_framework_1 =
|
219165
|
+
var detect_framework_1 = __nested_webpack_require_986281__(5224);
|
219183
219166
|
Object.defineProperty(exports, "detectFramework", ({ enumerable: true, get: function () { return detect_framework_1.detectFramework; } }));
|
219184
|
-
var filesystem_1 =
|
219167
|
+
var filesystem_1 = __nested_webpack_require_986281__(461);
|
219185
219168
|
Object.defineProperty(exports, "DetectorFilesystem", ({ enumerable: true, get: function () { return filesystem_1.DetectorFilesystem; } }));
|
219186
|
-
var read_config_file_1 =
|
219169
|
+
var read_config_file_1 = __nested_webpack_require_986281__(7792);
|
219187
219170
|
Object.defineProperty(exports, "readConfigFile", ({ enumerable: true, get: function () { return read_config_file_1.readConfigFile; } }));
|
219188
|
-
var normalize_path_1 =
|
219171
|
+
var normalize_path_1 = __nested_webpack_require_986281__(6261);
|
219189
219172
|
Object.defineProperty(exports, "normalizePath", ({ enumerable: true, get: function () { return normalize_path_1.normalizePath; } }));
|
219190
|
-
var convert_runtime_to_plugin_1 =
|
219173
|
+
var convert_runtime_to_plugin_1 = __nested_webpack_require_986281__(7276);
|
219191
219174
|
Object.defineProperty(exports, "convertRuntimeToPlugin", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.convertRuntimeToPlugin; } }));
|
219192
219175
|
Object.defineProperty(exports, "updateFunctionsManifest", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.updateFunctionsManifest; } }));
|
219193
219176
|
Object.defineProperty(exports, "updateRoutesManifest", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.updateRoutesManifest; } }));
|
219194
|
-
__exportStar(
|
219195
|
-
__exportStar(
|
219196
|
-
__exportStar(
|
219177
|
+
__exportStar(__nested_webpack_require_986281__(2416), exports);
|
219178
|
+
__exportStar(__nested_webpack_require_986281__(5748), exports);
|
219179
|
+
__exportStar(__nested_webpack_require_986281__(3983), exports);
|
219197
219180
|
/**
|
219198
219181
|
* Helper function to support both `@vercel` and legacy `@now` official Runtimes.
|
219199
219182
|
*/
|
@@ -219238,7 +219221,7 @@ exports.getPlatformEnv = getPlatformEnv;
|
|
219238
219221
|
/***/ }),
|
219239
219222
|
|
219240
219223
|
/***/ 6721:
|
219241
|
-
/***/ (function(__unused_webpack_module, exports,
|
219224
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_996745__) {
|
219242
219225
|
|
219243
219226
|
"use strict";
|
219244
219227
|
|
@@ -219247,13 +219230,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219247
219230
|
};
|
219248
219231
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219249
219232
|
exports.getLambdaOptionsFromFunction = exports.createZip = exports.createLambda = exports.Lambda = exports.FILES_SYMBOL = void 0;
|
219250
|
-
const assert_1 = __importDefault(
|
219251
|
-
const async_sema_1 = __importDefault(
|
219252
|
-
const yazl_1 =
|
219253
|
-
const minimatch_1 = __importDefault(
|
219254
|
-
const fs_extra_1 =
|
219255
|
-
const download_1 =
|
219256
|
-
const stream_to_buffer_1 = __importDefault(
|
219233
|
+
const assert_1 = __importDefault(__nested_webpack_require_996745__(2357));
|
219234
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_996745__(5758));
|
219235
|
+
const yazl_1 = __nested_webpack_require_996745__(1223);
|
219236
|
+
const minimatch_1 = __importDefault(__nested_webpack_require_996745__(9566));
|
219237
|
+
const fs_extra_1 = __nested_webpack_require_996745__(5392);
|
219238
|
+
const download_1 = __nested_webpack_require_996745__(1611);
|
219239
|
+
const stream_to_buffer_1 = __importDefault(__nested_webpack_require_996745__(2560));
|
219257
219240
|
exports.FILES_SYMBOL = Symbol('files');
|
219258
219241
|
class Lambda {
|
219259
219242
|
constructor({ zipBuffer, handler, runtime, maxDuration, memory, environment, allowQuery, regions, }) {
|
@@ -219482,12 +219465,12 @@ exports.buildsSchema = {
|
|
219482
219465
|
/***/ }),
|
219483
219466
|
|
219484
219467
|
/***/ 2564:
|
219485
|
-
/***/ ((__unused_webpack_module, exports,
|
219468
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_1005255__) => {
|
219486
219469
|
|
219487
219470
|
"use strict";
|
219488
219471
|
|
219489
219472
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219490
|
-
const path_1 =
|
219473
|
+
const path_1 = __nested_webpack_require_1005255__(5622);
|
219491
219474
|
function shouldServe({ entrypoint, files, requestPath, }) {
|
219492
219475
|
requestPath = requestPath.replace(/\/$/, ''); // sanitize trailing '/'
|
219493
219476
|
entrypoint = entrypoint.replace(/\\/, '/'); // windows compatibility
|
@@ -219716,7 +219699,7 @@ module.exports = __webpack_require__(78761);
|
|
219716
219699
|
/******/ var __webpack_module_cache__ = {};
|
219717
219700
|
/******/
|
219718
219701
|
/******/ // The require function
|
219719
|
-
/******/ function
|
219702
|
+
/******/ function __nested_webpack_require_1104894__(moduleId) {
|
219720
219703
|
/******/ // Check if module is in cache
|
219721
219704
|
/******/ if(__webpack_module_cache__[moduleId]) {
|
219722
219705
|
/******/ return __webpack_module_cache__[moduleId].exports;
|
@@ -219731,7 +219714,7 @@ module.exports = __webpack_require__(78761);
|
|
219731
219714
|
/******/ // Execute the module function
|
219732
219715
|
/******/ var threw = true;
|
219733
219716
|
/******/ try {
|
219734
|
-
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports,
|
219717
|
+
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __nested_webpack_require_1104894__);
|
219735
219718
|
/******/ threw = false;
|
219736
219719
|
/******/ } finally {
|
219737
219720
|
/******/ if(threw) delete __webpack_module_cache__[moduleId];
|
@@ -219744,11 +219727,11 @@ module.exports = __webpack_require__(78761);
|
|
219744
219727
|
/************************************************************************/
|
219745
219728
|
/******/ /* webpack/runtime/compat */
|
219746
219729
|
/******/
|
219747
|
-
/******/
|
219730
|
+
/******/ __nested_webpack_require_1104894__.ab = __dirname + "/";/************************************************************************/
|
219748
219731
|
/******/ // module exports must be returned from runtime so entry inlining is disabled
|
219749
219732
|
/******/ // startup
|
219750
219733
|
/******/ // Load entry module and return exports
|
219751
|
-
/******/ return
|
219734
|
+
/******/ return __nested_webpack_require_1104894__(2855);
|
219752
219735
|
/******/ })()
|
219753
219736
|
;
|
219754
219737
|
|
@@ -270503,7 +270486,7 @@ module.exports = JSON.parse("[\"ac\",\"com.ac\",\"edu.ac\",\"gov.ac\",\"net.ac\"
|
|
270503
270486
|
/***/ ((module) => {
|
270504
270487
|
|
270505
270488
|
"use strict";
|
270506
|
-
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"23.1.3-canary.
|
270489
|
+
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"23.1.3-canary.45\",\"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.27\",\"@vercel/go\":\"1.2.4-canary.4\",\"@vercel/node\":\"1.12.2-canary.7\",\"@vercel/python\":\"2.1.2-canary.1\",\"@vercel/ruby\":\"1.2.8-canary.5\",\"update-notifier\":\"4.1.0\",\"vercel-plugin-middleware\":\"0.0.0-canary.7\",\"vercel-plugin-node\":\"1.12.2-canary.18\"},\"devDependencies\":{\"@next/env\":\"11.1.2\",\"@sentry/node\":\"5.5.0\",\"@sindresorhus/slugify\":\"0.11.0\",\"@tootallnate/once\":\"1.1.2\",\"@types/ansi-escapes\":\"3.0.0\",\"@types/ansi-regex\":\"4.0.0\",\"@types/async-retry\":\"1.2.1\",\"@types/bytes\":\"3.0.0\",\"@types/chance\":\"1.1.3\",\"@types/debug\":\"0.0.31\",\"@types/dotenv\":\"6.1.1\",\"@types/escape-html\":\"0.0.20\",\"@types/express\":\"4.17.13\",\"@types/fs-extra\":\"9.0.13\",\"@types/glob\":\"7.1.1\",\"@types/http-proxy\":\"1.16.2\",\"@types/inquirer\":\"7.3.1\",\"@types/jest\":\"27.0.1\",\"@types/load-json-file\":\"2.0.7\",\"@types/mime-types\":\"2.1.0\",\"@types/minimatch\":\"3.0.3\",\"@types/mri\":\"1.1.0\",\"@types/ms\":\"0.7.30\",\"@types/node\":\"11.11.0\",\"@types/node-fetch\":\"2.5.10\",\"@types/npm-package-arg\":\"6.1.0\",\"@types/pluralize\":\"0.0.29\",\"@types/progress\":\"2.0.3\",\"@types/psl\":\"1.1.0\",\"@types/semver\":\"6.0.1\",\"@types/tar-fs\":\"1.16.1\",\"@types/text-table\":\"0.2.0\",\"@types/title\":\"3.4.1\",\"@types/universal-analytics\":\"0.4.2\",\"@types/update-notifier\":\"5.1.0\",\"@types/which\":\"1.3.2\",\"@types/write-json-file\":\"2.2.1\",\"@vercel/frameworks\":\"0.5.1-canary.16\",\"@vercel/ncc\":\"0.24.0\",\"@vercel/nft\":\"0.17.0\",\"@zeit/fun\":\"0.11.2\",\"@zeit/source-map-support\":\"0.6.2\",\"ajv\":\"6.12.2\",\"alpha-sort\":\"2.0.1\",\"ansi-escapes\":\"3.0.0\",\"ansi-regex\":\"3.0.0\",\"arg\":\"5.0.0\",\"async-listen\":\"1.2.0\",\"async-retry\":\"1.1.3\",\"async-sema\":\"2.1.4\",\"ava\":\"2.2.0\",\"bytes\":\"3.0.0\",\"chalk\":\"4.1.0\",\"chance\":\"1.1.7\",\"chokidar\":\"3.3.1\",\"clipboardy\":\"2.1.0\",\"codecov\":\"3.8.2\",\"cpy\":\"7.2.0\",\"credit-card\":\"3.0.1\",\"date-fns\":\"1.29.0\",\"debug\":\"3.1.0\",\"dot\":\"1.1.3\",\"dotenv\":\"4.0.0\",\"email-prompt\":\"0.3.2\",\"email-validator\":\"1.1.1\",\"epipebomb\":\"1.0.0\",\"escape-html\":\"1.0.3\",\"esm\":\"3.1.4\",\"execa\":\"3.2.0\",\"express\":\"4.17.1\",\"fast-deep-equal\":\"3.1.3\",\"fs-extra\":\"10.0.0\",\"get-port\":\"5.1.1\",\"glob\":\"7.1.2\",\"http-proxy\":\"1.18.1\",\"inquirer\":\"7.0.4\",\"is-docker\":\"2.2.1\",\"is-port-reachable\":\"3.0.0\",\"is-url\":\"1.2.2\",\"jaro-winkler\":\"0.2.8\",\"jsonlines\":\"0.1.1\",\"load-json-file\":\"3.0.0\",\"mime-types\":\"2.1.24\",\"minimatch\":\"3.0.4\",\"mri\":\"1.1.5\",\"ms\":\"2.1.2\",\"node-fetch\":\"2.6.1\",\"npm-package-arg\":\"6.1.0\",\"open\":\"8.2.0\",\"ora\":\"3.4.0\",\"pcre-to-regexp\":\"1.0.0\",\"pluralize\":\"7.0.0\",\"progress\":\"2.0.3\",\"promisepipe\":\"3.0.0\",\"psl\":\"1.1.31\",\"qr-image\":\"3.2.0\",\"raw-body\":\"2.4.1\",\"rimraf\":\"3.0.2\",\"semver\":\"5.5.0\",\"serve-handler\":\"6.1.1\",\"strip-ansi\":\"5.2.0\",\"stripe\":\"5.1.0\",\"tar-fs\":\"1.16.3\",\"test-listen\":\"1.1.0\",\"text-table\":\"0.2.0\",\"title\":\"3.4.1\",\"tmp-promise\":\"1.0.3\",\"tree-kill\":\"1.2.2\",\"ts-eager\":\"2.0.2\",\"ts-node\":\"8.3.0\",\"typescript\":\"4.3.4\",\"universal-analytics\":\"0.4.20\",\"utility-types\":\"2.1.0\",\"which\":\"2.0.2\",\"write-json-file\":\"2.2.0\",\"xdg-app-paths\":\"5.1.0\"},\"jest\":{\"preset\":\"ts-jest\",\"globals\":{\"ts-jest\":{\"diagnostics\":false,\"isolatedModules\":true}},\"verbose\":false,\"testEnvironment\":\"node\",\"testMatch\":[\"<rootDir>/test/**/*.test.ts\"]},\"gitHead\":\"5499fa9a042ef4f44cd4a48f2a168bf5c6d164f5\"}");
|
270507
270490
|
|
270508
270491
|
/***/ }),
|
270509
270492
|
|
@@ -270519,7 +270502,7 @@ module.exports = JSON.parse("{\"VISA\":\"Visa\",\"MASTERCARD\":\"MasterCard\",\"
|
|
270519
270502
|
/***/ ((module) => {
|
270520
270503
|
|
270521
270504
|
"use strict";
|
270522
|
-
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.2.3-canary.
|
270505
|
+
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.2.3-canary.28\",\"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.27\",\"@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\":\"5499fa9a042ef4f44cd4a48f2a168bf5c6d164f5\"}");
|
270523
270506
|
|
270524
270507
|
/***/ }),
|
270525
270508
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "vercel",
|
3
|
-
"version": "23.1.3-canary.
|
3
|
+
"version": "23.1.3-canary.45",
|
4
4
|
"preferGlobal": true,
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"description": "The command-line interface for Vercel",
|
@@ -43,14 +43,14 @@
|
|
43
43
|
"node": ">= 12"
|
44
44
|
},
|
45
45
|
"dependencies": {
|
46
|
-
"@vercel/build-utils": "2.12.3-canary.
|
46
|
+
"@vercel/build-utils": "2.12.3-canary.27",
|
47
47
|
"@vercel/go": "1.2.4-canary.4",
|
48
48
|
"@vercel/node": "1.12.2-canary.7",
|
49
49
|
"@vercel/python": "2.1.2-canary.1",
|
50
50
|
"@vercel/ruby": "1.2.8-canary.5",
|
51
51
|
"update-notifier": "4.1.0",
|
52
52
|
"vercel-plugin-middleware": "0.0.0-canary.7",
|
53
|
-
"vercel-plugin-node": "1.12.2-canary.
|
53
|
+
"vercel-plugin-node": "1.12.2-canary.18"
|
54
54
|
},
|
55
55
|
"devDependencies": {
|
56
56
|
"@next/env": "11.1.2",
|
@@ -184,5 +184,5 @@
|
|
184
184
|
"<rootDir>/test/**/*.test.ts"
|
185
185
|
]
|
186
186
|
},
|
187
|
-
"gitHead": "
|
187
|
+
"gitHead": "5499fa9a042ef4f44cd4a48f2a168bf5c6d164f5"
|
188
188
|
}
|