vercel 23.1.3-canary.51 → 23.1.3-canary.52
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 +178 -123
- package/package.json +4 -4
package/dist/index.js
CHANGED
@@ -217420,6 +217420,22 @@ const shouldIgnorePath = (file, ignoreFilter, ignoreFile) => {
|
|
217420
217420
|
}
|
217421
217421
|
return isNative || ignoreFilter(file);
|
217422
217422
|
};
|
217423
|
+
const getSourceFiles = async (workPath, ignoreFilter) => {
|
217424
|
+
const list = await glob_1.default('**', {
|
217425
|
+
cwd: workPath,
|
217426
|
+
});
|
217427
|
+
// We're not passing this as an `ignore` filter to the `glob` function above,
|
217428
|
+
// so that we can re-use exactly the same `getIgnoreFilter` method that the
|
217429
|
+
// Build Step uses (literally the same code). Note that this exclusion only applies
|
217430
|
+
// when deploying. Locally, another exclusion is needed, which is handled
|
217431
|
+
// further below in the `convertRuntimeToPlugin` function.
|
217432
|
+
for (const file in list) {
|
217433
|
+
if (shouldIgnorePath(file, ignoreFilter, true)) {
|
217434
|
+
delete list[file];
|
217435
|
+
}
|
217436
|
+
}
|
217437
|
+
return list;
|
217438
|
+
};
|
217423
217439
|
/**
|
217424
217440
|
* Convert legacy Runtime to a Plugin.
|
217425
217441
|
* @param buildRuntime - a legacy build() function from a Runtime
|
@@ -217429,22 +217445,25 @@ const shouldIgnorePath = (file, ignoreFilter, ignoreFile) => {
|
|
217429
217445
|
function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
|
217430
217446
|
// This `build()` signature should match `plugin.build()` signature in `vercel build`.
|
217431
217447
|
return async function build({ workPath }) {
|
217432
|
-
const opts = { cwd: workPath };
|
217433
|
-
const files = await glob_1.default('**', opts);
|
217434
217448
|
// We also don't want to provide any files to Runtimes that were ignored
|
217435
217449
|
// through `.vercelignore` or `.nowignore`, because the Build Step does the same.
|
217436
217450
|
const ignoreFilter = await _1.getIgnoreFilter(workPath);
|
217437
|
-
//
|
217438
|
-
//
|
217439
|
-
|
217440
|
-
//
|
217441
|
-
|
217442
|
-
|
217443
|
-
|
217451
|
+
// Retrieve the files that are currently available on the File System,
|
217452
|
+
// before the Legacy Runtime has even started to build.
|
217453
|
+
const sourceFilesPreBuild = await getSourceFiles(workPath, ignoreFilter);
|
217454
|
+
// Instead of doing another `glob` to get all the matching source files,
|
217455
|
+
// we'll filter the list of existing files down to only the ones
|
217456
|
+
// that are matching the entrypoint pattern, so we're first creating
|
217457
|
+
// a clean new list to begin.
|
217458
|
+
const entrypoints = Object.assign({}, sourceFilesPreBuild);
|
217459
|
+
const entrypointMatch = new RegExp(`^api/.*${ext}$`);
|
217460
|
+
// Up next, we'll strip out the files from the list of entrypoints
|
217461
|
+
// that aren't actually considered entrypoints.
|
217462
|
+
for (const file in entrypoints) {
|
217463
|
+
if (!entrypointMatch.test(file)) {
|
217464
|
+
delete entrypoints[file];
|
217444
217465
|
}
|
217445
217466
|
}
|
217446
|
-
const entrypointPattern = `api/**/*${ext}`;
|
217447
|
-
const entrypoints = await glob_1.default(entrypointPattern, opts);
|
217448
217467
|
const pages = {};
|
217449
217468
|
const pluginName = packageName.replace('vercel-plugin-', '');
|
217450
217469
|
const traceDir = path_1.join(workPath, `.output`, `inputs`,
|
@@ -217456,7 +217475,7 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
|
|
217456
217475
|
await fs_extra_1.default.ensureDir(traceDir);
|
217457
217476
|
for (const entrypoint of Object.keys(entrypoints)) {
|
217458
217477
|
const { output } = await buildRuntime({
|
217459
|
-
files,
|
217478
|
+
files: sourceFilesPreBuild,
|
217460
217479
|
entrypoint,
|
217461
217480
|
workPath,
|
217462
217481
|
config: {
|
@@ -217466,8 +217485,23 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
|
|
217466
217485
|
avoidTopLevelInstall: true,
|
217467
217486
|
},
|
217468
217487
|
});
|
217488
|
+
// Legacy Runtimes tend to pollute the `workPath` with compiled results,
|
217489
|
+
// because the `workPath` used to be a place that was a place where they could
|
217490
|
+
// just put anything, but nowadays it's the working directory of the `vercel build`
|
217491
|
+
// command, which is the place where the developer keeps their source files,
|
217492
|
+
// so we don't want to pollute this space unnecessarily. That means we have to clean
|
217493
|
+
// up files that were created by the build, which is done further below.
|
217494
|
+
const sourceFilesAfterBuild = await getSourceFiles(workPath, ignoreFilter);
|
217495
|
+
// Further down, we will need the filename of the Lambda handler
|
217496
|
+
// for placing it inside `server/pages/api`, but because Legacy Runtimes
|
217497
|
+
// don't expose the filename directly, we have to construct it
|
217498
|
+
// from the handler name, and then find the matching file further below,
|
217499
|
+
// because we don't yet know its extension here.
|
217500
|
+
const handler = output.handler;
|
217501
|
+
const handlerMethod = handler.split('.').reverse()[0];
|
217502
|
+
const handlerFileName = handler.replace(`.${handlerMethod}`, '');
|
217469
217503
|
pages[entrypoint] = {
|
217470
|
-
handler:
|
217504
|
+
handler: handler,
|
217471
217505
|
runtime: output.runtime,
|
217472
217506
|
memory: output.memory,
|
217473
217507
|
maxDuration: output.maxDuration,
|
@@ -217485,12 +217519,33 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
|
|
217485
217519
|
delete lambdaFiles[file];
|
217486
217520
|
}
|
217487
217521
|
}
|
217522
|
+
const handlerFilePath = Object.keys(lambdaFiles).find(item => {
|
217523
|
+
return path_1.parse(item).name === handlerFileName;
|
217524
|
+
});
|
217525
|
+
const handlerFileOrigin = lambdaFiles[handlerFilePath || ''].fsPath;
|
217526
|
+
if (!handlerFileOrigin) {
|
217527
|
+
throw new Error(`Could not find a handler file. Please ensure that the list of \`files\` defined for the returned \`Lambda\` contains a file with the name ${handlerFileName} (+ any extension).`);
|
217528
|
+
}
|
217488
217529
|
const entry = path_1.join(workPath, '.output', 'server', 'pages', entrypoint);
|
217489
217530
|
await fs_extra_1.default.ensureDir(path_1.dirname(entry));
|
217490
|
-
await linkOrCopy(
|
217531
|
+
await linkOrCopy(handlerFileOrigin, entry);
|
217532
|
+
const toRemove = [];
|
217533
|
+
// You can find more details about this at the point where the
|
217534
|
+
// `sourceFilesAfterBuild` is created originally.
|
217535
|
+
for (const file in sourceFilesAfterBuild) {
|
217536
|
+
if (!sourceFilesPreBuild[file]) {
|
217537
|
+
const path = sourceFilesAfterBuild[file].fsPath;
|
217538
|
+
toRemove.push(fs_extra_1.default.remove(path));
|
217539
|
+
}
|
217540
|
+
}
|
217541
|
+
await Promise.all(toRemove);
|
217491
217542
|
const tracedFiles = [];
|
217492
217543
|
Object.entries(lambdaFiles).forEach(async ([relPath, file]) => {
|
217493
217544
|
const newPath = path_1.join(traceDir, relPath);
|
217545
|
+
// The handler was already moved into position above.
|
217546
|
+
if (relPath === handlerFilePath) {
|
217547
|
+
return;
|
217548
|
+
}
|
217494
217549
|
tracedFiles.push({ absolutePath: newPath, relativePath: relPath });
|
217495
217550
|
if (file.fsPath) {
|
217496
217551
|
await linkOrCopy(file.fsPath, newPath);
|
@@ -217506,9 +217561,9 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
|
|
217506
217561
|
const nft = path_1.join(workPath, '.output', 'server', 'pages', `${entrypoint}.nft.json`);
|
217507
217562
|
const json = JSON.stringify({
|
217508
217563
|
version: 1,
|
217509
|
-
files: tracedFiles.map(
|
217510
|
-
input: normalize_path_1.normalizePath(path_1.relative(nft,
|
217511
|
-
output: normalize_path_1.normalizePath(
|
217564
|
+
files: tracedFiles.map(file => ({
|
217565
|
+
input: normalize_path_1.normalizePath(path_1.relative(nft, file.absolutePath)),
|
217566
|
+
output: normalize_path_1.normalizePath(file.relativePath),
|
217512
217567
|
})),
|
217513
217568
|
});
|
217514
217569
|
await fs_extra_1.default.ensureDir(path_1.dirname(nft));
|
@@ -217601,12 +217656,12 @@ exports.updateRoutesManifest = updateRoutesManifest;
|
|
217601
217656
|
/***/ }),
|
217602
217657
|
|
217603
217658
|
/***/ 1868:
|
217604
|
-
/***/ ((__unused_webpack_module, exports,
|
217659
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_929696__) => {
|
217605
217660
|
|
217606
217661
|
"use strict";
|
217607
217662
|
|
217608
217663
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
217609
|
-
const _1 =
|
217664
|
+
const _1 = __nested_webpack_require_929696__(2855);
|
217610
217665
|
function debug(message, ...additional) {
|
217611
217666
|
if (_1.getPlatformEnv('BUILDER_DEBUG')) {
|
217612
217667
|
console.log(message, ...additional);
|
@@ -217618,7 +217673,7 @@ exports.default = debug;
|
|
217618
217673
|
/***/ }),
|
217619
217674
|
|
217620
217675
|
/***/ 4246:
|
217621
|
-
/***/ (function(__unused_webpack_module, exports,
|
217676
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_930081__) {
|
217622
217677
|
|
217623
217678
|
"use strict";
|
217624
217679
|
|
@@ -217627,11 +217682,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
217627
217682
|
};
|
217628
217683
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
217629
217684
|
exports.detectBuilders = exports.detectOutputDirectory = exports.detectApiDirectory = exports.detectApiExtensions = exports.sortFiles = void 0;
|
217630
|
-
const minimatch_1 = __importDefault(
|
217631
|
-
const semver_1 =
|
217632
|
-
const path_1 =
|
217633
|
-
const frameworks_1 = __importDefault(
|
217634
|
-
const _1 =
|
217685
|
+
const minimatch_1 = __importDefault(__nested_webpack_require_930081__(9566));
|
217686
|
+
const semver_1 = __nested_webpack_require_930081__(2879);
|
217687
|
+
const path_1 = __nested_webpack_require_930081__(5622);
|
217688
|
+
const frameworks_1 = __importDefault(__nested_webpack_require_930081__(8438));
|
217689
|
+
const _1 = __nested_webpack_require_930081__(2855);
|
217635
217690
|
const slugToFramework = new Map(frameworks_1.default.map(f => [f.slug, f]));
|
217636
217691
|
// We need to sort the file paths by alphabet to make
|
217637
217692
|
// sure the routes stay in the same order e.g. for deduping
|
@@ -218690,7 +218745,7 @@ function getSuggestion(topLevelProp, additionalProperty) {
|
|
218690
218745
|
/***/ }),
|
218691
218746
|
|
218692
218747
|
/***/ 2397:
|
218693
|
-
/***/ (function(__unused_webpack_module, exports,
|
218748
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_969465__) {
|
218694
218749
|
|
218695
218750
|
"use strict";
|
218696
218751
|
|
@@ -218698,8 +218753,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218698
218753
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
218699
218754
|
};
|
218700
218755
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218701
|
-
const assert_1 = __importDefault(
|
218702
|
-
const into_stream_1 = __importDefault(
|
218756
|
+
const assert_1 = __importDefault(__nested_webpack_require_969465__(2357));
|
218757
|
+
const into_stream_1 = __importDefault(__nested_webpack_require_969465__(6130));
|
218703
218758
|
class FileBlob {
|
218704
218759
|
constructor({ mode = 0o100644, contentType, data }) {
|
218705
218760
|
assert_1.default(typeof mode === 'number');
|
@@ -218731,7 +218786,7 @@ exports.default = FileBlob;
|
|
218731
218786
|
/***/ }),
|
218732
218787
|
|
218733
218788
|
/***/ 9331:
|
218734
|
-
/***/ (function(__unused_webpack_module, exports,
|
218789
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_970917__) {
|
218735
218790
|
|
218736
218791
|
"use strict";
|
218737
218792
|
|
@@ -218739,11 +218794,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218739
218794
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
218740
218795
|
};
|
218741
218796
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218742
|
-
const assert_1 = __importDefault(
|
218743
|
-
const fs_extra_1 = __importDefault(
|
218744
|
-
const multistream_1 = __importDefault(
|
218745
|
-
const path_1 = __importDefault(
|
218746
|
-
const async_sema_1 = __importDefault(
|
218797
|
+
const assert_1 = __importDefault(__nested_webpack_require_970917__(2357));
|
218798
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_970917__(5392));
|
218799
|
+
const multistream_1 = __importDefault(__nested_webpack_require_970917__(8179));
|
218800
|
+
const path_1 = __importDefault(__nested_webpack_require_970917__(5622));
|
218801
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_970917__(5758));
|
218747
218802
|
const semaToPreventEMFILE = new async_sema_1.default(20);
|
218748
218803
|
class FileFsRef {
|
218749
218804
|
constructor({ mode = 0o100644, contentType, fsPath }) {
|
@@ -218809,7 +218864,7 @@ exports.default = FileFsRef;
|
|
218809
218864
|
/***/ }),
|
218810
218865
|
|
218811
218866
|
/***/ 5187:
|
218812
|
-
/***/ (function(__unused_webpack_module, exports,
|
218867
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_973721__) {
|
218813
218868
|
|
218814
218869
|
"use strict";
|
218815
218870
|
|
@@ -218817,11 +218872,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218817
218872
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
218818
218873
|
};
|
218819
218874
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218820
|
-
const assert_1 = __importDefault(
|
218821
|
-
const node_fetch_1 = __importDefault(
|
218822
|
-
const multistream_1 = __importDefault(
|
218823
|
-
const async_retry_1 = __importDefault(
|
218824
|
-
const async_sema_1 = __importDefault(
|
218875
|
+
const assert_1 = __importDefault(__nested_webpack_require_973721__(2357));
|
218876
|
+
const node_fetch_1 = __importDefault(__nested_webpack_require_973721__(2197));
|
218877
|
+
const multistream_1 = __importDefault(__nested_webpack_require_973721__(8179));
|
218878
|
+
const async_retry_1 = __importDefault(__nested_webpack_require_973721__(3691));
|
218879
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_973721__(5758));
|
218825
218880
|
const semaToDownloadFromS3 = new async_sema_1.default(5);
|
218826
218881
|
class BailableError extends Error {
|
218827
218882
|
constructor(...args) {
|
@@ -218902,7 +218957,7 @@ exports.default = FileRef;
|
|
218902
218957
|
/***/ }),
|
218903
218958
|
|
218904
218959
|
/***/ 1611:
|
218905
|
-
/***/ (function(__unused_webpack_module, exports,
|
218960
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_977122__) {
|
218906
218961
|
|
218907
218962
|
"use strict";
|
218908
218963
|
|
@@ -218911,10 +218966,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218911
218966
|
};
|
218912
218967
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218913
218968
|
exports.isSymbolicLink = void 0;
|
218914
|
-
const path_1 = __importDefault(
|
218915
|
-
const debug_1 = __importDefault(
|
218916
|
-
const file_fs_ref_1 = __importDefault(
|
218917
|
-
const fs_extra_1 =
|
218969
|
+
const path_1 = __importDefault(__nested_webpack_require_977122__(5622));
|
218970
|
+
const debug_1 = __importDefault(__nested_webpack_require_977122__(1868));
|
218971
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_977122__(9331));
|
218972
|
+
const fs_extra_1 = __nested_webpack_require_977122__(5392);
|
218918
218973
|
const S_IFMT = 61440; /* 0170000 type of file */
|
218919
218974
|
const S_IFLNK = 40960; /* 0120000 symbolic link */
|
218920
218975
|
function isSymbolicLink(mode) {
|
@@ -218976,14 +219031,14 @@ exports.default = download;
|
|
218976
219031
|
/***/ }),
|
218977
219032
|
|
218978
219033
|
/***/ 3838:
|
218979
|
-
/***/ ((__unused_webpack_module, exports,
|
219034
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_979947__) => {
|
218980
219035
|
|
218981
219036
|
"use strict";
|
218982
219037
|
|
218983
219038
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218984
|
-
const path_1 =
|
218985
|
-
const os_1 =
|
218986
|
-
const fs_extra_1 =
|
219039
|
+
const path_1 = __nested_webpack_require_979947__(5622);
|
219040
|
+
const os_1 = __nested_webpack_require_979947__(2087);
|
219041
|
+
const fs_extra_1 = __nested_webpack_require_979947__(5392);
|
218987
219042
|
async function getWritableDirectory() {
|
218988
219043
|
const name = Math.floor(Math.random() * 0x7fffffff).toString(16);
|
218989
219044
|
const directory = path_1.join(os_1.tmpdir(), name);
|
@@ -218996,7 +219051,7 @@ exports.default = getWritableDirectory;
|
|
218996
219051
|
/***/ }),
|
218997
219052
|
|
218998
219053
|
/***/ 4240:
|
218999
|
-
/***/ (function(__unused_webpack_module, exports,
|
219054
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_980527__) {
|
219000
219055
|
|
219001
219056
|
"use strict";
|
219002
219057
|
|
@@ -219004,13 +219059,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219004
219059
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
219005
219060
|
};
|
219006
219061
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219007
|
-
const path_1 = __importDefault(
|
219008
|
-
const assert_1 = __importDefault(
|
219009
|
-
const glob_1 = __importDefault(
|
219010
|
-
const util_1 =
|
219011
|
-
const fs_extra_1 =
|
219012
|
-
const normalize_path_1 =
|
219013
|
-
const file_fs_ref_1 = __importDefault(
|
219062
|
+
const path_1 = __importDefault(__nested_webpack_require_980527__(5622));
|
219063
|
+
const assert_1 = __importDefault(__nested_webpack_require_980527__(2357));
|
219064
|
+
const glob_1 = __importDefault(__nested_webpack_require_980527__(1104));
|
219065
|
+
const util_1 = __nested_webpack_require_980527__(1669);
|
219066
|
+
const fs_extra_1 = __nested_webpack_require_980527__(5392);
|
219067
|
+
const normalize_path_1 = __nested_webpack_require_980527__(6261);
|
219068
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_980527__(9331));
|
219014
219069
|
const vanillaGlob = util_1.promisify(glob_1.default);
|
219015
219070
|
async function glob(pattern, opts, mountpoint) {
|
219016
219071
|
let options;
|
@@ -219056,7 +219111,7 @@ exports.default = glob;
|
|
219056
219111
|
/***/ }),
|
219057
219112
|
|
219058
219113
|
/***/ 7903:
|
219059
|
-
/***/ (function(__unused_webpack_module, exports,
|
219114
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_982723__) {
|
219060
219115
|
|
219061
219116
|
"use strict";
|
219062
219117
|
|
@@ -219065,9 +219120,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219065
219120
|
};
|
219066
219121
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219067
219122
|
exports.getSupportedNodeVersion = exports.getDiscontinuedNodeVersions = exports.getLatestNodeVersion = void 0;
|
219068
|
-
const semver_1 =
|
219069
|
-
const errors_1 =
|
219070
|
-
const debug_1 = __importDefault(
|
219123
|
+
const semver_1 = __nested_webpack_require_982723__(2879);
|
219124
|
+
const errors_1 = __nested_webpack_require_982723__(3983);
|
219125
|
+
const debug_1 = __importDefault(__nested_webpack_require_982723__(1868));
|
219071
219126
|
const allOptions = [
|
219072
219127
|
{ major: 14, range: '14.x', runtime: 'nodejs14.x' },
|
219073
219128
|
{ major: 12, range: '12.x', runtime: 'nodejs12.x' },
|
@@ -219161,7 +219216,7 @@ exports.normalizePath = normalizePath;
|
|
219161
219216
|
/***/ }),
|
219162
219217
|
|
219163
219218
|
/***/ 7792:
|
219164
|
-
/***/ (function(__unused_webpack_module, exports,
|
219219
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_986591__) {
|
219165
219220
|
|
219166
219221
|
"use strict";
|
219167
219222
|
|
@@ -219170,9 +219225,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219170
219225
|
};
|
219171
219226
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219172
219227
|
exports.readConfigFile = void 0;
|
219173
|
-
const js_yaml_1 = __importDefault(
|
219174
|
-
const toml_1 = __importDefault(
|
219175
|
-
const fs_extra_1 =
|
219228
|
+
const js_yaml_1 = __importDefault(__nested_webpack_require_986591__(6540));
|
219229
|
+
const toml_1 = __importDefault(__nested_webpack_require_986591__(9434));
|
219230
|
+
const fs_extra_1 = __nested_webpack_require_986591__(5392);
|
219176
219231
|
async function readFileOrNull(file) {
|
219177
219232
|
try {
|
219178
219233
|
const data = await fs_extra_1.readFile(file);
|
@@ -219227,7 +219282,7 @@ exports.default = rename;
|
|
219227
219282
|
/***/ }),
|
219228
219283
|
|
219229
219284
|
/***/ 1442:
|
219230
|
-
/***/ (function(__unused_webpack_module, exports,
|
219285
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_988384__) {
|
219231
219286
|
|
219232
219287
|
"use strict";
|
219233
219288
|
|
@@ -219236,14 +219291,14 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219236
219291
|
};
|
219237
219292
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219238
219293
|
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;
|
219239
|
-
const assert_1 = __importDefault(
|
219240
|
-
const fs_extra_1 = __importDefault(
|
219241
|
-
const path_1 = __importDefault(
|
219242
|
-
const debug_1 = __importDefault(
|
219243
|
-
const cross_spawn_1 = __importDefault(
|
219244
|
-
const util_1 =
|
219245
|
-
const errors_1 =
|
219246
|
-
const node_version_1 =
|
219294
|
+
const assert_1 = __importDefault(__nested_webpack_require_988384__(2357));
|
219295
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_988384__(5392));
|
219296
|
+
const path_1 = __importDefault(__nested_webpack_require_988384__(5622));
|
219297
|
+
const debug_1 = __importDefault(__nested_webpack_require_988384__(1868));
|
219298
|
+
const cross_spawn_1 = __importDefault(__nested_webpack_require_988384__(7618));
|
219299
|
+
const util_1 = __nested_webpack_require_988384__(1669);
|
219300
|
+
const errors_1 = __nested_webpack_require_988384__(3983);
|
219301
|
+
const node_version_1 = __nested_webpack_require_988384__(7903);
|
219247
219302
|
function spawnAsync(command, args, opts = {}) {
|
219248
219303
|
return new Promise((resolve, reject) => {
|
219249
219304
|
const stderrLogs = [];
|
@@ -219554,7 +219609,7 @@ exports.installDependencies = util_1.deprecate(runNpmInstall, 'installDependenci
|
|
219554
219609
|
/***/ }),
|
219555
219610
|
|
219556
219611
|
/***/ 2560:
|
219557
|
-
/***/ (function(__unused_webpack_module, exports,
|
219612
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1002374__) {
|
219558
219613
|
|
219559
219614
|
"use strict";
|
219560
219615
|
|
@@ -219562,7 +219617,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219562
219617
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
219563
219618
|
};
|
219564
219619
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219565
|
-
const end_of_stream_1 = __importDefault(
|
219620
|
+
const end_of_stream_1 = __importDefault(__nested_webpack_require_1002374__(687));
|
219566
219621
|
function streamToBuffer(stream) {
|
219567
219622
|
return new Promise((resolve, reject) => {
|
219568
219623
|
const buffers = [];
|
@@ -219591,7 +219646,7 @@ exports.default = streamToBuffer;
|
|
219591
219646
|
/***/ }),
|
219592
219647
|
|
219593
219648
|
/***/ 1148:
|
219594
|
-
/***/ (function(__unused_webpack_module, exports,
|
219649
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1003442__) {
|
219595
219650
|
|
219596
219651
|
"use strict";
|
219597
219652
|
|
@@ -219599,9 +219654,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219599
219654
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
219600
219655
|
};
|
219601
219656
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219602
|
-
const path_1 = __importDefault(
|
219603
|
-
const fs_extra_1 = __importDefault(
|
219604
|
-
const ignore_1 = __importDefault(
|
219657
|
+
const path_1 = __importDefault(__nested_webpack_require_1003442__(5622));
|
219658
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_1003442__(5392));
|
219659
|
+
const ignore_1 = __importDefault(__nested_webpack_require_1003442__(3556));
|
219605
219660
|
function isCodedError(error) {
|
219606
219661
|
return (error !== null &&
|
219607
219662
|
error !== undefined &&
|
@@ -219658,7 +219713,7 @@ exports.default = default_1;
|
|
219658
219713
|
/***/ }),
|
219659
219714
|
|
219660
219715
|
/***/ 2855:
|
219661
|
-
/***/ (function(__unused_webpack_module, exports,
|
219716
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1005824__) {
|
219662
219717
|
|
219663
219718
|
"use strict";
|
219664
219719
|
|
@@ -219689,29 +219744,29 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219689
219744
|
};
|
219690
219745
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219691
219746
|
exports.getInputHash = exports.getPlatformEnv = exports.isStaticRuntime = exports.isOfficialRuntime = exports.updateRoutesManifest = exports.updateFunctionsManifest = exports.convertRuntimeToPlugin = exports.normalizePath = exports.readConfigFile = exports.DetectorFilesystem = exports.detectFramework = exports.detectApiExtensions = exports.detectApiDirectory = exports.detectOutputDirectory = exports.detectBuilders = exports.getIgnoreFilter = exports.scanParentDirs = exports.getLambdaOptionsFromFunction = exports.isSymbolicLink = exports.debug = exports.shouldServe = exports.streamToBuffer = exports.getSpawnOptions = exports.getDiscontinuedNodeVersions = exports.getLatestNodeVersion = exports.getNodeVersion = exports.runShellScript = exports.runPipInstall = exports.runBundleInstall = exports.runNpmInstall = exports.getNodeBinPath = exports.walkParentDirs = exports.spawnCommand = exports.execCommand = exports.runPackageJsonScript = exports.installDependencies = exports.getScriptName = exports.spawnAsync = exports.execAsync = exports.rename = exports.glob = exports.getWriteableDirectory = exports.download = exports.Prerender = exports.createLambda = exports.Lambda = exports.FileRef = exports.FileFsRef = exports.FileBlob = void 0;
|
219692
|
-
const crypto_1 =
|
219693
|
-
const file_blob_1 = __importDefault(
|
219747
|
+
const crypto_1 = __nested_webpack_require_1005824__(6417);
|
219748
|
+
const file_blob_1 = __importDefault(__nested_webpack_require_1005824__(2397));
|
219694
219749
|
exports.FileBlob = file_blob_1.default;
|
219695
|
-
const file_fs_ref_1 = __importDefault(
|
219750
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_1005824__(9331));
|
219696
219751
|
exports.FileFsRef = file_fs_ref_1.default;
|
219697
|
-
const file_ref_1 = __importDefault(
|
219752
|
+
const file_ref_1 = __importDefault(__nested_webpack_require_1005824__(5187));
|
219698
219753
|
exports.FileRef = file_ref_1.default;
|
219699
|
-
const lambda_1 =
|
219754
|
+
const lambda_1 = __nested_webpack_require_1005824__(6721);
|
219700
219755
|
Object.defineProperty(exports, "Lambda", ({ enumerable: true, get: function () { return lambda_1.Lambda; } }));
|
219701
219756
|
Object.defineProperty(exports, "createLambda", ({ enumerable: true, get: function () { return lambda_1.createLambda; } }));
|
219702
219757
|
Object.defineProperty(exports, "getLambdaOptionsFromFunction", ({ enumerable: true, get: function () { return lambda_1.getLambdaOptionsFromFunction; } }));
|
219703
|
-
const prerender_1 =
|
219758
|
+
const prerender_1 = __nested_webpack_require_1005824__(2850);
|
219704
219759
|
Object.defineProperty(exports, "Prerender", ({ enumerable: true, get: function () { return prerender_1.Prerender; } }));
|
219705
|
-
const download_1 = __importStar(
|
219760
|
+
const download_1 = __importStar(__nested_webpack_require_1005824__(1611));
|
219706
219761
|
exports.download = download_1.default;
|
219707
219762
|
Object.defineProperty(exports, "isSymbolicLink", ({ enumerable: true, get: function () { return download_1.isSymbolicLink; } }));
|
219708
|
-
const get_writable_directory_1 = __importDefault(
|
219763
|
+
const get_writable_directory_1 = __importDefault(__nested_webpack_require_1005824__(3838));
|
219709
219764
|
exports.getWriteableDirectory = get_writable_directory_1.default;
|
219710
|
-
const glob_1 = __importDefault(
|
219765
|
+
const glob_1 = __importDefault(__nested_webpack_require_1005824__(4240));
|
219711
219766
|
exports.glob = glob_1.default;
|
219712
|
-
const rename_1 = __importDefault(
|
219767
|
+
const rename_1 = __importDefault(__nested_webpack_require_1005824__(6718));
|
219713
219768
|
exports.rename = rename_1.default;
|
219714
|
-
const run_user_scripts_1 =
|
219769
|
+
const run_user_scripts_1 = __nested_webpack_require_1005824__(1442);
|
219715
219770
|
Object.defineProperty(exports, "execAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.execAsync; } }));
|
219716
219771
|
Object.defineProperty(exports, "spawnAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.spawnAsync; } }));
|
219717
219772
|
Object.defineProperty(exports, "execCommand", ({ enumerable: true, get: function () { return run_user_scripts_1.execCommand; } }));
|
@@ -219728,38 +219783,38 @@ Object.defineProperty(exports, "getNodeVersion", ({ enumerable: true, get: funct
|
|
219728
219783
|
Object.defineProperty(exports, "getSpawnOptions", ({ enumerable: true, get: function () { return run_user_scripts_1.getSpawnOptions; } }));
|
219729
219784
|
Object.defineProperty(exports, "getNodeBinPath", ({ enumerable: true, get: function () { return run_user_scripts_1.getNodeBinPath; } }));
|
219730
219785
|
Object.defineProperty(exports, "scanParentDirs", ({ enumerable: true, get: function () { return run_user_scripts_1.scanParentDirs; } }));
|
219731
|
-
const node_version_1 =
|
219786
|
+
const node_version_1 = __nested_webpack_require_1005824__(7903);
|
219732
219787
|
Object.defineProperty(exports, "getLatestNodeVersion", ({ enumerable: true, get: function () { return node_version_1.getLatestNodeVersion; } }));
|
219733
219788
|
Object.defineProperty(exports, "getDiscontinuedNodeVersions", ({ enumerable: true, get: function () { return node_version_1.getDiscontinuedNodeVersions; } }));
|
219734
|
-
const errors_1 =
|
219735
|
-
const stream_to_buffer_1 = __importDefault(
|
219789
|
+
const errors_1 = __nested_webpack_require_1005824__(3983);
|
219790
|
+
const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1005824__(2560));
|
219736
219791
|
exports.streamToBuffer = stream_to_buffer_1.default;
|
219737
|
-
const should_serve_1 = __importDefault(
|
219792
|
+
const should_serve_1 = __importDefault(__nested_webpack_require_1005824__(2564));
|
219738
219793
|
exports.shouldServe = should_serve_1.default;
|
219739
|
-
const debug_1 = __importDefault(
|
219794
|
+
const debug_1 = __importDefault(__nested_webpack_require_1005824__(1868));
|
219740
219795
|
exports.debug = debug_1.default;
|
219741
|
-
const get_ignore_filter_1 = __importDefault(
|
219796
|
+
const get_ignore_filter_1 = __importDefault(__nested_webpack_require_1005824__(1148));
|
219742
219797
|
exports.getIgnoreFilter = get_ignore_filter_1.default;
|
219743
|
-
var detect_builders_1 =
|
219798
|
+
var detect_builders_1 = __nested_webpack_require_1005824__(4246);
|
219744
219799
|
Object.defineProperty(exports, "detectBuilders", ({ enumerable: true, get: function () { return detect_builders_1.detectBuilders; } }));
|
219745
219800
|
Object.defineProperty(exports, "detectOutputDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectOutputDirectory; } }));
|
219746
219801
|
Object.defineProperty(exports, "detectApiDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectApiDirectory; } }));
|
219747
219802
|
Object.defineProperty(exports, "detectApiExtensions", ({ enumerable: true, get: function () { return detect_builders_1.detectApiExtensions; } }));
|
219748
|
-
var detect_framework_1 =
|
219803
|
+
var detect_framework_1 = __nested_webpack_require_1005824__(5224);
|
219749
219804
|
Object.defineProperty(exports, "detectFramework", ({ enumerable: true, get: function () { return detect_framework_1.detectFramework; } }));
|
219750
|
-
var filesystem_1 =
|
219805
|
+
var filesystem_1 = __nested_webpack_require_1005824__(461);
|
219751
219806
|
Object.defineProperty(exports, "DetectorFilesystem", ({ enumerable: true, get: function () { return filesystem_1.DetectorFilesystem; } }));
|
219752
|
-
var read_config_file_1 =
|
219807
|
+
var read_config_file_1 = __nested_webpack_require_1005824__(7792);
|
219753
219808
|
Object.defineProperty(exports, "readConfigFile", ({ enumerable: true, get: function () { return read_config_file_1.readConfigFile; } }));
|
219754
|
-
var normalize_path_1 =
|
219809
|
+
var normalize_path_1 = __nested_webpack_require_1005824__(6261);
|
219755
219810
|
Object.defineProperty(exports, "normalizePath", ({ enumerable: true, get: function () { return normalize_path_1.normalizePath; } }));
|
219756
|
-
var convert_runtime_to_plugin_1 =
|
219811
|
+
var convert_runtime_to_plugin_1 = __nested_webpack_require_1005824__(7276);
|
219757
219812
|
Object.defineProperty(exports, "convertRuntimeToPlugin", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.convertRuntimeToPlugin; } }));
|
219758
219813
|
Object.defineProperty(exports, "updateFunctionsManifest", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.updateFunctionsManifest; } }));
|
219759
219814
|
Object.defineProperty(exports, "updateRoutesManifest", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.updateRoutesManifest; } }));
|
219760
|
-
__exportStar(
|
219761
|
-
__exportStar(
|
219762
|
-
__exportStar(
|
219815
|
+
__exportStar(__nested_webpack_require_1005824__(2416), exports);
|
219816
|
+
__exportStar(__nested_webpack_require_1005824__(5748), exports);
|
219817
|
+
__exportStar(__nested_webpack_require_1005824__(3983), exports);
|
219763
219818
|
/**
|
219764
219819
|
* Helper function to support both `@vercel` and legacy `@now` official Runtimes.
|
219765
219820
|
*/
|
@@ -219812,7 +219867,7 @@ exports.getInputHash = getInputHash;
|
|
219812
219867
|
/***/ }),
|
219813
219868
|
|
219814
219869
|
/***/ 6721:
|
219815
|
-
/***/ (function(__unused_webpack_module, exports,
|
219870
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1016802__) {
|
219816
219871
|
|
219817
219872
|
"use strict";
|
219818
219873
|
|
@@ -219821,13 +219876,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219821
219876
|
};
|
219822
219877
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219823
219878
|
exports.getLambdaOptionsFromFunction = exports.createZip = exports.createLambda = exports.Lambda = exports.FILES_SYMBOL = void 0;
|
219824
|
-
const assert_1 = __importDefault(
|
219825
|
-
const async_sema_1 = __importDefault(
|
219826
|
-
const yazl_1 =
|
219827
|
-
const minimatch_1 = __importDefault(
|
219828
|
-
const fs_extra_1 =
|
219829
|
-
const download_1 =
|
219830
|
-
const stream_to_buffer_1 = __importDefault(
|
219879
|
+
const assert_1 = __importDefault(__nested_webpack_require_1016802__(2357));
|
219880
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_1016802__(5758));
|
219881
|
+
const yazl_1 = __nested_webpack_require_1016802__(1223);
|
219882
|
+
const minimatch_1 = __importDefault(__nested_webpack_require_1016802__(9566));
|
219883
|
+
const fs_extra_1 = __nested_webpack_require_1016802__(5392);
|
219884
|
+
const download_1 = __nested_webpack_require_1016802__(1611);
|
219885
|
+
const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1016802__(2560));
|
219831
219886
|
exports.FILES_SYMBOL = Symbol('files');
|
219832
219887
|
class Lambda {
|
219833
219888
|
constructor({ zipBuffer, handler, runtime, maxDuration, memory, environment, allowQuery, regions, }) {
|
@@ -220056,12 +220111,12 @@ exports.buildsSchema = {
|
|
220056
220111
|
/***/ }),
|
220057
220112
|
|
220058
220113
|
/***/ 2564:
|
220059
|
-
/***/ ((__unused_webpack_module, exports,
|
220114
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_1025312__) => {
|
220060
220115
|
|
220061
220116
|
"use strict";
|
220062
220117
|
|
220063
220118
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
220064
|
-
const path_1 =
|
220119
|
+
const path_1 = __nested_webpack_require_1025312__(5622);
|
220065
220120
|
function shouldServe({ entrypoint, files, requestPath, }) {
|
220066
220121
|
requestPath = requestPath.replace(/\/$/, ''); // sanitize trailing '/'
|
220067
220122
|
entrypoint = entrypoint.replace(/\\/, '/'); // windows compatibility
|
@@ -220298,7 +220353,7 @@ module.exports = __webpack_require__(78761);
|
|
220298
220353
|
/******/ var __webpack_module_cache__ = {};
|
220299
220354
|
/******/
|
220300
220355
|
/******/ // The require function
|
220301
|
-
/******/ function
|
220356
|
+
/******/ function __nested_webpack_require_1125047__(moduleId) {
|
220302
220357
|
/******/ // Check if module is in cache
|
220303
220358
|
/******/ if(__webpack_module_cache__[moduleId]) {
|
220304
220359
|
/******/ return __webpack_module_cache__[moduleId].exports;
|
@@ -220313,7 +220368,7 @@ module.exports = __webpack_require__(78761);
|
|
220313
220368
|
/******/ // Execute the module function
|
220314
220369
|
/******/ var threw = true;
|
220315
220370
|
/******/ try {
|
220316
|
-
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports,
|
220371
|
+
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __nested_webpack_require_1125047__);
|
220317
220372
|
/******/ threw = false;
|
220318
220373
|
/******/ } finally {
|
220319
220374
|
/******/ if(threw) delete __webpack_module_cache__[moduleId];
|
@@ -220326,11 +220381,11 @@ module.exports = __webpack_require__(78761);
|
|
220326
220381
|
/************************************************************************/
|
220327
220382
|
/******/ /* webpack/runtime/compat */
|
220328
220383
|
/******/
|
220329
|
-
/******/
|
220384
|
+
/******/ __nested_webpack_require_1125047__.ab = __dirname + "/";/************************************************************************/
|
220330
220385
|
/******/ // module exports must be returned from runtime so entry inlining is disabled
|
220331
220386
|
/******/ // startup
|
220332
220387
|
/******/ // Load entry module and return exports
|
220333
|
-
/******/ return
|
220388
|
+
/******/ return __nested_webpack_require_1125047__(2855);
|
220334
220389
|
/******/ })()
|
220335
220390
|
;
|
220336
220391
|
|
@@ -271091,7 +271146,7 @@ module.exports = JSON.parse("[\"ac\",\"com.ac\",\"edu.ac\",\"gov.ac\",\"net.ac\"
|
|
271091
271146
|
/***/ ((module) => {
|
271092
271147
|
|
271093
271148
|
"use strict";
|
271094
|
-
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"23.1.3-canary.
|
271149
|
+
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"23.1.3-canary.52\",\"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.31\",\"@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.6\",\"update-notifier\":\"4.1.0\",\"vercel-plugin-middleware\":\"0.0.0-canary.7\",\"vercel-plugin-node\":\"1.12.2-canary.23\"},\"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\":\"6f4a1b527ba01973490e1fb2e4c48ccb2841cd86\"}");
|
271095
271150
|
|
271096
271151
|
/***/ }),
|
271097
271152
|
|
@@ -271107,7 +271162,7 @@ module.exports = JSON.parse("{\"VISA\":\"Visa\",\"MASTERCARD\":\"MasterCard\",\"
|
|
271107
271162
|
/***/ ((module) => {
|
271108
271163
|
|
271109
271164
|
"use strict";
|
271110
|
-
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.2.3-canary.
|
271165
|
+
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.2.3-canary.32\",\"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.31\",\"@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\":\"6f4a1b527ba01973490e1fb2e4c48ccb2841cd86\"}");
|
271111
271166
|
|
271112
271167
|
/***/ }),
|
271113
271168
|
|
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.52",
|
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.31",
|
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.6",
|
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.23"
|
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": "6f4a1b527ba01973490e1fb2e4c48ccb2841cd86"
|
188
188
|
}
|