vercel 23.1.3-canary.54 → 23.1.3-canary.55
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 +203 -116
- package/package.json +5 -5
package/dist/index.js
CHANGED
@@ -217473,6 +217473,8 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
|
|
217473
217473
|
// need to be able to easily inspect the output.
|
217474
217474
|
`api-routes-${pluginName}`);
|
217475
217475
|
await fs_extra_1.default.ensureDir(traceDir);
|
217476
|
+
let newPathsRuntime = new Set();
|
217477
|
+
let linkersRuntime = [];
|
217476
217478
|
for (const entrypoint of Object.keys(entrypoints)) {
|
217477
217479
|
const { output } = await buildRuntime({
|
217478
217480
|
files: sourceFilesPreBuild,
|
@@ -217529,35 +217531,93 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
|
|
217529
217531
|
const entry = path_1.join(workPath, '.output', 'server', 'pages', entrypoint);
|
217530
217532
|
await fs_extra_1.default.ensureDir(path_1.dirname(entry));
|
217531
217533
|
await linkOrCopy(handlerFileOrigin, entry);
|
217532
|
-
const
|
217533
|
-
|
217534
|
-
|
217534
|
+
const newFilesEntrypoint = [];
|
217535
|
+
const newDirectoriesEntrypoint = [];
|
217536
|
+
const preBuildFiles = Object.values(sourceFilesPreBuild).map(file => {
|
217537
|
+
return file.fsPath;
|
217538
|
+
});
|
217539
|
+
// Generate a list of directories and files that weren't present
|
217540
|
+
// before the entrypoint was processed by the Legacy Runtime, so
|
217541
|
+
// that we can perform a cleanup later. We need to divide into files
|
217542
|
+
// and directories because only cleaning up files might leave empty
|
217543
|
+
// directories, and listing directories separately also speeds up the
|
217544
|
+
// build because we can just delete them, which wipes all of their nested
|
217545
|
+
// paths, instead of iterating through all files that should be deleted.
|
217535
217546
|
for (const file in sourceFilesAfterBuild) {
|
217536
217547
|
if (!sourceFilesPreBuild[file]) {
|
217537
217548
|
const path = sourceFilesAfterBuild[file].fsPath;
|
217538
|
-
|
217549
|
+
const dirPath = path_1.dirname(path);
|
217550
|
+
// If none of the files that were present before the entrypoint
|
217551
|
+
// was processed are contained within the directory we're looking
|
217552
|
+
// at right now, then we know it's a newly added directory
|
217553
|
+
// and it can therefore be removed later on.
|
217554
|
+
const isNewDir = !preBuildFiles.some(filePath => {
|
217555
|
+
return path_1.dirname(filePath).startsWith(dirPath);
|
217556
|
+
});
|
217557
|
+
// Check out the list of tracked directories that were
|
217558
|
+
// newly added and see if one of them contains the path
|
217559
|
+
// we're looking at.
|
217560
|
+
const hasParentDir = newDirectoriesEntrypoint.some(dir => {
|
217561
|
+
return path.startsWith(dir);
|
217562
|
+
});
|
217563
|
+
// If we have already tracked a directory that was newly
|
217564
|
+
// added that sits above the file or directory that we're
|
217565
|
+
// looking at, we don't need to add more entries to the list
|
217566
|
+
// because when the parent will get removed in the future,
|
217567
|
+
// all of its children (and therefore the path we're looking at)
|
217568
|
+
// will automatically get removed anyways.
|
217569
|
+
if (hasParentDir) {
|
217570
|
+
continue;
|
217571
|
+
}
|
217572
|
+
if (isNewDir) {
|
217573
|
+
newDirectoriesEntrypoint.push(dirPath);
|
217574
|
+
}
|
217575
|
+
else {
|
217576
|
+
newFilesEntrypoint.push(path);
|
217577
|
+
}
|
217539
217578
|
}
|
217540
217579
|
}
|
217541
|
-
await Promise.all(toRemove);
|
217542
217580
|
const tracedFiles = [];
|
217543
|
-
Object.entries(lambdaFiles).
|
217581
|
+
const linkers = Object.entries(lambdaFiles).map(async ([relPath, file]) => {
|
217544
217582
|
const newPath = path_1.join(traceDir, relPath);
|
217545
217583
|
// The handler was already moved into position above.
|
217546
217584
|
if (relPath === handlerFilePath) {
|
217547
217585
|
return;
|
217548
217586
|
}
|
217549
217587
|
tracedFiles.push({ absolutePath: newPath, relativePath: relPath });
|
217550
|
-
|
217551
|
-
|
217588
|
+
const { fsPath, type } = file;
|
217589
|
+
if (fsPath) {
|
217590
|
+
await fs_extra_1.default.ensureDir(path_1.dirname(newPath));
|
217591
|
+
const isNewFile = newFilesEntrypoint.includes(fsPath);
|
217592
|
+
const isInsideNewDirectory = newDirectoriesEntrypoint.some(dirPath => {
|
217593
|
+
return fsPath.startsWith(dirPath);
|
217594
|
+
});
|
217595
|
+
// With this, we're making sure that files in the `workPath` that existed
|
217596
|
+
// before the Legacy Runtime was invoked (source files) are linked from
|
217597
|
+
// `.output` instead of copying there (the latter only happens if linking fails),
|
217598
|
+
// which is the fastest solution. However, files that are created fresh
|
217599
|
+
// by the Legacy Runtimes are always copied, because their link destinations
|
217600
|
+
// are likely to be overwritten every time an entrypoint is processed by
|
217601
|
+
// the Legacy Runtime. This is likely to overwrite the destination on subsequent
|
217602
|
+
// runs, but that's also how `workPath` used to work originally, without
|
217603
|
+
// the File System API (meaning that there was one `workPath` for all entrypoints).
|
217604
|
+
if (isNewFile || isInsideNewDirectory) {
|
217605
|
+
_1.debug(`Copying from ${fsPath} to ${newPath}`);
|
217606
|
+
await fs_extra_1.default.copy(fsPath, newPath);
|
217607
|
+
}
|
217608
|
+
else {
|
217609
|
+
await linkOrCopy(fsPath, newPath);
|
217610
|
+
}
|
217552
217611
|
}
|
217553
|
-
else if (
|
217612
|
+
else if (type === 'FileBlob') {
|
217554
217613
|
const { data, mode } = file;
|
217555
217614
|
await fs_extra_1.default.writeFile(newPath, data, { mode });
|
217556
217615
|
}
|
217557
217616
|
else {
|
217558
|
-
throw new Error(`Unknown file type: ${
|
217617
|
+
throw new Error(`Unknown file type: ${type}`);
|
217559
217618
|
}
|
217560
217619
|
});
|
217620
|
+
linkersRuntime = linkersRuntime.concat(linkers);
|
217561
217621
|
const nft = path_1.join(workPath, '.output', 'server', 'pages', `${entrypoint}.nft.json`);
|
217562
217622
|
const json = JSON.stringify({
|
217563
217623
|
version: 1,
|
@@ -217568,7 +217628,34 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
|
|
217568
217628
|
});
|
217569
217629
|
await fs_extra_1.default.ensureDir(path_1.dirname(nft));
|
217570
217630
|
await fs_extra_1.default.writeFile(nft, json);
|
217631
|
+
// Extend the list of directories and files that were created by the
|
217632
|
+
// Legacy Runtime with the list of directories and files that were
|
217633
|
+
// created for the entrypoint that was just processed above.
|
217634
|
+
newPathsRuntime = new Set([
|
217635
|
+
...newPathsRuntime,
|
217636
|
+
...newFilesEntrypoint,
|
217637
|
+
...newDirectoriesEntrypoint,
|
217638
|
+
]);
|
217571
217639
|
}
|
217640
|
+
// Instead of of waiting for all of the linking to be done for every
|
217641
|
+
// entrypoint before processing the next one, we immediately handle all
|
217642
|
+
// of them one after the other, while then waiting for the linking
|
217643
|
+
// to finish right here, before we clean up newly created files below.
|
217644
|
+
await Promise.all(linkersRuntime);
|
217645
|
+
// A list of all the files that were created by the Legacy Runtime,
|
217646
|
+
// which we'd like to remove from the File System.
|
217647
|
+
const toRemove = Array.from(newPathsRuntime).map(path => {
|
217648
|
+
_1.debug(`Removing ${path} as part of cleanup`);
|
217649
|
+
return fs_extra_1.default.remove(path);
|
217650
|
+
});
|
217651
|
+
// Once all the entrypoints have been processed, we'd like to
|
217652
|
+
// remove all the files from `workPath` that originally weren't present
|
217653
|
+
// before the Legacy Runtime began running, because the `workPath`
|
217654
|
+
// is nowadays the directory in which the user keeps their source code, since
|
217655
|
+
// we're no longer running separate parallel builds for every Legacy Runtime.
|
217656
|
+
await Promise.all(toRemove);
|
217657
|
+
// Add any Serverless Functions that were exposed by the Legacy Runtime
|
217658
|
+
// to the `functions-manifest.json` file provided in `.output`.
|
217572
217659
|
await updateFunctionsManifest({ workPath, pages });
|
217573
217660
|
};
|
217574
217661
|
}
|
@@ -217656,12 +217743,12 @@ exports.updateRoutesManifest = updateRoutesManifest;
|
|
217656
217743
|
/***/ }),
|
217657
217744
|
|
217658
217745
|
/***/ 1868:
|
217659
|
-
/***/ ((__unused_webpack_module, exports,
|
217746
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_935237__) => {
|
217660
217747
|
|
217661
217748
|
"use strict";
|
217662
217749
|
|
217663
217750
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
217664
|
-
const _1 =
|
217751
|
+
const _1 = __nested_webpack_require_935237__(2855);
|
217665
217752
|
function debug(message, ...additional) {
|
217666
217753
|
if (_1.getPlatformEnv('BUILDER_DEBUG')) {
|
217667
217754
|
console.log(message, ...additional);
|
@@ -217673,7 +217760,7 @@ exports.default = debug;
|
|
217673
217760
|
/***/ }),
|
217674
217761
|
|
217675
217762
|
/***/ 4246:
|
217676
|
-
/***/ (function(__unused_webpack_module, exports,
|
217763
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_935622__) {
|
217677
217764
|
|
217678
217765
|
"use strict";
|
217679
217766
|
|
@@ -217682,11 +217769,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
217682
217769
|
};
|
217683
217770
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
217684
217771
|
exports.detectBuilders = exports.detectOutputDirectory = exports.detectApiDirectory = exports.detectApiExtensions = exports.sortFiles = void 0;
|
217685
|
-
const minimatch_1 = __importDefault(
|
217686
|
-
const semver_1 =
|
217687
|
-
const path_1 =
|
217688
|
-
const frameworks_1 = __importDefault(
|
217689
|
-
const _1 =
|
217772
|
+
const minimatch_1 = __importDefault(__nested_webpack_require_935622__(9566));
|
217773
|
+
const semver_1 = __nested_webpack_require_935622__(2879);
|
217774
|
+
const path_1 = __nested_webpack_require_935622__(5622);
|
217775
|
+
const frameworks_1 = __importDefault(__nested_webpack_require_935622__(8438));
|
217776
|
+
const _1 = __nested_webpack_require_935622__(2855);
|
217690
217777
|
const slugToFramework = new Map(frameworks_1.default.map(f => [f.slug, f]));
|
217691
217778
|
// We need to sort the file paths by alphabet to make
|
217692
217779
|
// sure the routes stay in the same order e.g. for deduping
|
@@ -218745,7 +218832,7 @@ function getSuggestion(topLevelProp, additionalProperty) {
|
|
218745
218832
|
/***/ }),
|
218746
218833
|
|
218747
218834
|
/***/ 2397:
|
218748
|
-
/***/ (function(__unused_webpack_module, exports,
|
218835
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_975006__) {
|
218749
218836
|
|
218750
218837
|
"use strict";
|
218751
218838
|
|
@@ -218753,8 +218840,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218753
218840
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
218754
218841
|
};
|
218755
218842
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218756
|
-
const assert_1 = __importDefault(
|
218757
|
-
const into_stream_1 = __importDefault(
|
218843
|
+
const assert_1 = __importDefault(__nested_webpack_require_975006__(2357));
|
218844
|
+
const into_stream_1 = __importDefault(__nested_webpack_require_975006__(6130));
|
218758
218845
|
class FileBlob {
|
218759
218846
|
constructor({ mode = 0o100644, contentType, data }) {
|
218760
218847
|
assert_1.default(typeof mode === 'number');
|
@@ -218786,7 +218873,7 @@ exports.default = FileBlob;
|
|
218786
218873
|
/***/ }),
|
218787
218874
|
|
218788
218875
|
/***/ 9331:
|
218789
|
-
/***/ (function(__unused_webpack_module, exports,
|
218876
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_976458__) {
|
218790
218877
|
|
218791
218878
|
"use strict";
|
218792
218879
|
|
@@ -218794,11 +218881,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218794
218881
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
218795
218882
|
};
|
218796
218883
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218797
|
-
const assert_1 = __importDefault(
|
218798
|
-
const fs_extra_1 = __importDefault(
|
218799
|
-
const multistream_1 = __importDefault(
|
218800
|
-
const path_1 = __importDefault(
|
218801
|
-
const async_sema_1 = __importDefault(
|
218884
|
+
const assert_1 = __importDefault(__nested_webpack_require_976458__(2357));
|
218885
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_976458__(5392));
|
218886
|
+
const multistream_1 = __importDefault(__nested_webpack_require_976458__(8179));
|
218887
|
+
const path_1 = __importDefault(__nested_webpack_require_976458__(5622));
|
218888
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_976458__(5758));
|
218802
218889
|
const semaToPreventEMFILE = new async_sema_1.default(20);
|
218803
218890
|
class FileFsRef {
|
218804
218891
|
constructor({ mode = 0o100644, contentType, fsPath }) {
|
@@ -218864,7 +218951,7 @@ exports.default = FileFsRef;
|
|
218864
218951
|
/***/ }),
|
218865
218952
|
|
218866
218953
|
/***/ 5187:
|
218867
|
-
/***/ (function(__unused_webpack_module, exports,
|
218954
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_979262__) {
|
218868
218955
|
|
218869
218956
|
"use strict";
|
218870
218957
|
|
@@ -218872,11 +218959,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218872
218959
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
218873
218960
|
};
|
218874
218961
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218875
|
-
const assert_1 = __importDefault(
|
218876
|
-
const node_fetch_1 = __importDefault(
|
218877
|
-
const multistream_1 = __importDefault(
|
218878
|
-
const async_retry_1 = __importDefault(
|
218879
|
-
const async_sema_1 = __importDefault(
|
218962
|
+
const assert_1 = __importDefault(__nested_webpack_require_979262__(2357));
|
218963
|
+
const node_fetch_1 = __importDefault(__nested_webpack_require_979262__(2197));
|
218964
|
+
const multistream_1 = __importDefault(__nested_webpack_require_979262__(8179));
|
218965
|
+
const async_retry_1 = __importDefault(__nested_webpack_require_979262__(3691));
|
218966
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_979262__(5758));
|
218880
218967
|
const semaToDownloadFromS3 = new async_sema_1.default(5);
|
218881
218968
|
class BailableError extends Error {
|
218882
218969
|
constructor(...args) {
|
@@ -218957,7 +219044,7 @@ exports.default = FileRef;
|
|
218957
219044
|
/***/ }),
|
218958
219045
|
|
218959
219046
|
/***/ 1611:
|
218960
|
-
/***/ (function(__unused_webpack_module, exports,
|
219047
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_982663__) {
|
218961
219048
|
|
218962
219049
|
"use strict";
|
218963
219050
|
|
@@ -218966,10 +219053,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218966
219053
|
};
|
218967
219054
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218968
219055
|
exports.isSymbolicLink = void 0;
|
218969
|
-
const path_1 = __importDefault(
|
218970
|
-
const debug_1 = __importDefault(
|
218971
|
-
const file_fs_ref_1 = __importDefault(
|
218972
|
-
const fs_extra_1 =
|
219056
|
+
const path_1 = __importDefault(__nested_webpack_require_982663__(5622));
|
219057
|
+
const debug_1 = __importDefault(__nested_webpack_require_982663__(1868));
|
219058
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_982663__(9331));
|
219059
|
+
const fs_extra_1 = __nested_webpack_require_982663__(5392);
|
218973
219060
|
const S_IFMT = 61440; /* 0170000 type of file */
|
218974
219061
|
const S_IFLNK = 40960; /* 0120000 symbolic link */
|
218975
219062
|
function isSymbolicLink(mode) {
|
@@ -219031,14 +219118,14 @@ exports.default = download;
|
|
219031
219118
|
/***/ }),
|
219032
219119
|
|
219033
219120
|
/***/ 3838:
|
219034
|
-
/***/ ((__unused_webpack_module, exports,
|
219121
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_985488__) => {
|
219035
219122
|
|
219036
219123
|
"use strict";
|
219037
219124
|
|
219038
219125
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219039
|
-
const path_1 =
|
219040
|
-
const os_1 =
|
219041
|
-
const fs_extra_1 =
|
219126
|
+
const path_1 = __nested_webpack_require_985488__(5622);
|
219127
|
+
const os_1 = __nested_webpack_require_985488__(2087);
|
219128
|
+
const fs_extra_1 = __nested_webpack_require_985488__(5392);
|
219042
219129
|
async function getWritableDirectory() {
|
219043
219130
|
const name = Math.floor(Math.random() * 0x7fffffff).toString(16);
|
219044
219131
|
const directory = path_1.join(os_1.tmpdir(), name);
|
@@ -219051,7 +219138,7 @@ exports.default = getWritableDirectory;
|
|
219051
219138
|
/***/ }),
|
219052
219139
|
|
219053
219140
|
/***/ 4240:
|
219054
|
-
/***/ (function(__unused_webpack_module, exports,
|
219141
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_986068__) {
|
219055
219142
|
|
219056
219143
|
"use strict";
|
219057
219144
|
|
@@ -219059,13 +219146,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219059
219146
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
219060
219147
|
};
|
219061
219148
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219062
|
-
const path_1 = __importDefault(
|
219063
|
-
const assert_1 = __importDefault(
|
219064
|
-
const glob_1 = __importDefault(
|
219065
|
-
const util_1 =
|
219066
|
-
const fs_extra_1 =
|
219067
|
-
const normalize_path_1 =
|
219068
|
-
const file_fs_ref_1 = __importDefault(
|
219149
|
+
const path_1 = __importDefault(__nested_webpack_require_986068__(5622));
|
219150
|
+
const assert_1 = __importDefault(__nested_webpack_require_986068__(2357));
|
219151
|
+
const glob_1 = __importDefault(__nested_webpack_require_986068__(1104));
|
219152
|
+
const util_1 = __nested_webpack_require_986068__(1669);
|
219153
|
+
const fs_extra_1 = __nested_webpack_require_986068__(5392);
|
219154
|
+
const normalize_path_1 = __nested_webpack_require_986068__(6261);
|
219155
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_986068__(9331));
|
219069
219156
|
const vanillaGlob = util_1.promisify(glob_1.default);
|
219070
219157
|
async function glob(pattern, opts, mountpoint) {
|
219071
219158
|
let options;
|
@@ -219111,7 +219198,7 @@ exports.default = glob;
|
|
219111
219198
|
/***/ }),
|
219112
219199
|
|
219113
219200
|
/***/ 7903:
|
219114
|
-
/***/ (function(__unused_webpack_module, exports,
|
219201
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_988264__) {
|
219115
219202
|
|
219116
219203
|
"use strict";
|
219117
219204
|
|
@@ -219120,9 +219207,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219120
219207
|
};
|
219121
219208
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219122
219209
|
exports.getSupportedNodeVersion = exports.getDiscontinuedNodeVersions = exports.getLatestNodeVersion = void 0;
|
219123
|
-
const semver_1 =
|
219124
|
-
const errors_1 =
|
219125
|
-
const debug_1 = __importDefault(
|
219210
|
+
const semver_1 = __nested_webpack_require_988264__(2879);
|
219211
|
+
const errors_1 = __nested_webpack_require_988264__(3983);
|
219212
|
+
const debug_1 = __importDefault(__nested_webpack_require_988264__(1868));
|
219126
219213
|
const allOptions = [
|
219127
219214
|
{ major: 14, range: '14.x', runtime: 'nodejs14.x' },
|
219128
219215
|
{ major: 12, range: '12.x', runtime: 'nodejs12.x' },
|
@@ -219216,7 +219303,7 @@ exports.normalizePath = normalizePath;
|
|
219216
219303
|
/***/ }),
|
219217
219304
|
|
219218
219305
|
/***/ 7792:
|
219219
|
-
/***/ (function(__unused_webpack_module, exports,
|
219306
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_992132__) {
|
219220
219307
|
|
219221
219308
|
"use strict";
|
219222
219309
|
|
@@ -219225,9 +219312,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219225
219312
|
};
|
219226
219313
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219227
219314
|
exports.readConfigFile = void 0;
|
219228
|
-
const js_yaml_1 = __importDefault(
|
219229
|
-
const toml_1 = __importDefault(
|
219230
|
-
const fs_extra_1 =
|
219315
|
+
const js_yaml_1 = __importDefault(__nested_webpack_require_992132__(6540));
|
219316
|
+
const toml_1 = __importDefault(__nested_webpack_require_992132__(9434));
|
219317
|
+
const fs_extra_1 = __nested_webpack_require_992132__(5392);
|
219231
219318
|
async function readFileOrNull(file) {
|
219232
219319
|
try {
|
219233
219320
|
const data = await fs_extra_1.readFile(file);
|
@@ -219282,7 +219369,7 @@ exports.default = rename;
|
|
219282
219369
|
/***/ }),
|
219283
219370
|
|
219284
219371
|
/***/ 1442:
|
219285
|
-
/***/ (function(__unused_webpack_module, exports,
|
219372
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_993925__) {
|
219286
219373
|
|
219287
219374
|
"use strict";
|
219288
219375
|
|
@@ -219291,14 +219378,14 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219291
219378
|
};
|
219292
219379
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219293
219380
|
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;
|
219294
|
-
const assert_1 = __importDefault(
|
219295
|
-
const fs_extra_1 = __importDefault(
|
219296
|
-
const path_1 = __importDefault(
|
219297
|
-
const debug_1 = __importDefault(
|
219298
|
-
const cross_spawn_1 = __importDefault(
|
219299
|
-
const util_1 =
|
219300
|
-
const errors_1 =
|
219301
|
-
const node_version_1 =
|
219381
|
+
const assert_1 = __importDefault(__nested_webpack_require_993925__(2357));
|
219382
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_993925__(5392));
|
219383
|
+
const path_1 = __importDefault(__nested_webpack_require_993925__(5622));
|
219384
|
+
const debug_1 = __importDefault(__nested_webpack_require_993925__(1868));
|
219385
|
+
const cross_spawn_1 = __importDefault(__nested_webpack_require_993925__(7618));
|
219386
|
+
const util_1 = __nested_webpack_require_993925__(1669);
|
219387
|
+
const errors_1 = __nested_webpack_require_993925__(3983);
|
219388
|
+
const node_version_1 = __nested_webpack_require_993925__(7903);
|
219302
219389
|
function spawnAsync(command, args, opts = {}) {
|
219303
219390
|
return new Promise((resolve, reject) => {
|
219304
219391
|
const stderrLogs = [];
|
@@ -219609,7 +219696,7 @@ exports.installDependencies = util_1.deprecate(runNpmInstall, 'installDependenci
|
|
219609
219696
|
/***/ }),
|
219610
219697
|
|
219611
219698
|
/***/ 2560:
|
219612
|
-
/***/ (function(__unused_webpack_module, exports,
|
219699
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1007915__) {
|
219613
219700
|
|
219614
219701
|
"use strict";
|
219615
219702
|
|
@@ -219617,7 +219704,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219617
219704
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
219618
219705
|
};
|
219619
219706
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219620
|
-
const end_of_stream_1 = __importDefault(
|
219707
|
+
const end_of_stream_1 = __importDefault(__nested_webpack_require_1007915__(687));
|
219621
219708
|
function streamToBuffer(stream) {
|
219622
219709
|
return new Promise((resolve, reject) => {
|
219623
219710
|
const buffers = [];
|
@@ -219646,7 +219733,7 @@ exports.default = streamToBuffer;
|
|
219646
219733
|
/***/ }),
|
219647
219734
|
|
219648
219735
|
/***/ 1148:
|
219649
|
-
/***/ (function(__unused_webpack_module, exports,
|
219736
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1008983__) {
|
219650
219737
|
|
219651
219738
|
"use strict";
|
219652
219739
|
|
@@ -219654,9 +219741,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219654
219741
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
219655
219742
|
};
|
219656
219743
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219657
|
-
const path_1 = __importDefault(
|
219658
|
-
const fs_extra_1 = __importDefault(
|
219659
|
-
const ignore_1 = __importDefault(
|
219744
|
+
const path_1 = __importDefault(__nested_webpack_require_1008983__(5622));
|
219745
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_1008983__(5392));
|
219746
|
+
const ignore_1 = __importDefault(__nested_webpack_require_1008983__(3556));
|
219660
219747
|
function isCodedError(error) {
|
219661
219748
|
return (error !== null &&
|
219662
219749
|
error !== undefined &&
|
@@ -219713,7 +219800,7 @@ exports.default = default_1;
|
|
219713
219800
|
/***/ }),
|
219714
219801
|
|
219715
219802
|
/***/ 2855:
|
219716
|
-
/***/ (function(__unused_webpack_module, exports,
|
219803
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1011365__) {
|
219717
219804
|
|
219718
219805
|
"use strict";
|
219719
219806
|
|
@@ -219744,29 +219831,29 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219744
219831
|
};
|
219745
219832
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219746
219833
|
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;
|
219747
|
-
const crypto_1 =
|
219748
|
-
const file_blob_1 = __importDefault(
|
219834
|
+
const crypto_1 = __nested_webpack_require_1011365__(6417);
|
219835
|
+
const file_blob_1 = __importDefault(__nested_webpack_require_1011365__(2397));
|
219749
219836
|
exports.FileBlob = file_blob_1.default;
|
219750
|
-
const file_fs_ref_1 = __importDefault(
|
219837
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_1011365__(9331));
|
219751
219838
|
exports.FileFsRef = file_fs_ref_1.default;
|
219752
|
-
const file_ref_1 = __importDefault(
|
219839
|
+
const file_ref_1 = __importDefault(__nested_webpack_require_1011365__(5187));
|
219753
219840
|
exports.FileRef = file_ref_1.default;
|
219754
|
-
const lambda_1 =
|
219841
|
+
const lambda_1 = __nested_webpack_require_1011365__(6721);
|
219755
219842
|
Object.defineProperty(exports, "Lambda", ({ enumerable: true, get: function () { return lambda_1.Lambda; } }));
|
219756
219843
|
Object.defineProperty(exports, "createLambda", ({ enumerable: true, get: function () { return lambda_1.createLambda; } }));
|
219757
219844
|
Object.defineProperty(exports, "getLambdaOptionsFromFunction", ({ enumerable: true, get: function () { return lambda_1.getLambdaOptionsFromFunction; } }));
|
219758
|
-
const prerender_1 =
|
219845
|
+
const prerender_1 = __nested_webpack_require_1011365__(2850);
|
219759
219846
|
Object.defineProperty(exports, "Prerender", ({ enumerable: true, get: function () { return prerender_1.Prerender; } }));
|
219760
|
-
const download_1 = __importStar(
|
219847
|
+
const download_1 = __importStar(__nested_webpack_require_1011365__(1611));
|
219761
219848
|
exports.download = download_1.default;
|
219762
219849
|
Object.defineProperty(exports, "isSymbolicLink", ({ enumerable: true, get: function () { return download_1.isSymbolicLink; } }));
|
219763
|
-
const get_writable_directory_1 = __importDefault(
|
219850
|
+
const get_writable_directory_1 = __importDefault(__nested_webpack_require_1011365__(3838));
|
219764
219851
|
exports.getWriteableDirectory = get_writable_directory_1.default;
|
219765
|
-
const glob_1 = __importDefault(
|
219852
|
+
const glob_1 = __importDefault(__nested_webpack_require_1011365__(4240));
|
219766
219853
|
exports.glob = glob_1.default;
|
219767
|
-
const rename_1 = __importDefault(
|
219854
|
+
const rename_1 = __importDefault(__nested_webpack_require_1011365__(6718));
|
219768
219855
|
exports.rename = rename_1.default;
|
219769
|
-
const run_user_scripts_1 =
|
219856
|
+
const run_user_scripts_1 = __nested_webpack_require_1011365__(1442);
|
219770
219857
|
Object.defineProperty(exports, "execAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.execAsync; } }));
|
219771
219858
|
Object.defineProperty(exports, "spawnAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.spawnAsync; } }));
|
219772
219859
|
Object.defineProperty(exports, "execCommand", ({ enumerable: true, get: function () { return run_user_scripts_1.execCommand; } }));
|
@@ -219783,38 +219870,38 @@ Object.defineProperty(exports, "getNodeVersion", ({ enumerable: true, get: funct
|
|
219783
219870
|
Object.defineProperty(exports, "getSpawnOptions", ({ enumerable: true, get: function () { return run_user_scripts_1.getSpawnOptions; } }));
|
219784
219871
|
Object.defineProperty(exports, "getNodeBinPath", ({ enumerable: true, get: function () { return run_user_scripts_1.getNodeBinPath; } }));
|
219785
219872
|
Object.defineProperty(exports, "scanParentDirs", ({ enumerable: true, get: function () { return run_user_scripts_1.scanParentDirs; } }));
|
219786
|
-
const node_version_1 =
|
219873
|
+
const node_version_1 = __nested_webpack_require_1011365__(7903);
|
219787
219874
|
Object.defineProperty(exports, "getLatestNodeVersion", ({ enumerable: true, get: function () { return node_version_1.getLatestNodeVersion; } }));
|
219788
219875
|
Object.defineProperty(exports, "getDiscontinuedNodeVersions", ({ enumerable: true, get: function () { return node_version_1.getDiscontinuedNodeVersions; } }));
|
219789
|
-
const errors_1 =
|
219790
|
-
const stream_to_buffer_1 = __importDefault(
|
219876
|
+
const errors_1 = __nested_webpack_require_1011365__(3983);
|
219877
|
+
const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1011365__(2560));
|
219791
219878
|
exports.streamToBuffer = stream_to_buffer_1.default;
|
219792
|
-
const should_serve_1 = __importDefault(
|
219879
|
+
const should_serve_1 = __importDefault(__nested_webpack_require_1011365__(2564));
|
219793
219880
|
exports.shouldServe = should_serve_1.default;
|
219794
|
-
const debug_1 = __importDefault(
|
219881
|
+
const debug_1 = __importDefault(__nested_webpack_require_1011365__(1868));
|
219795
219882
|
exports.debug = debug_1.default;
|
219796
|
-
const get_ignore_filter_1 = __importDefault(
|
219883
|
+
const get_ignore_filter_1 = __importDefault(__nested_webpack_require_1011365__(1148));
|
219797
219884
|
exports.getIgnoreFilter = get_ignore_filter_1.default;
|
219798
|
-
var detect_builders_1 =
|
219885
|
+
var detect_builders_1 = __nested_webpack_require_1011365__(4246);
|
219799
219886
|
Object.defineProperty(exports, "detectBuilders", ({ enumerable: true, get: function () { return detect_builders_1.detectBuilders; } }));
|
219800
219887
|
Object.defineProperty(exports, "detectOutputDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectOutputDirectory; } }));
|
219801
219888
|
Object.defineProperty(exports, "detectApiDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectApiDirectory; } }));
|
219802
219889
|
Object.defineProperty(exports, "detectApiExtensions", ({ enumerable: true, get: function () { return detect_builders_1.detectApiExtensions; } }));
|
219803
|
-
var detect_framework_1 =
|
219890
|
+
var detect_framework_1 = __nested_webpack_require_1011365__(5224);
|
219804
219891
|
Object.defineProperty(exports, "detectFramework", ({ enumerable: true, get: function () { return detect_framework_1.detectFramework; } }));
|
219805
|
-
var filesystem_1 =
|
219892
|
+
var filesystem_1 = __nested_webpack_require_1011365__(461);
|
219806
219893
|
Object.defineProperty(exports, "DetectorFilesystem", ({ enumerable: true, get: function () { return filesystem_1.DetectorFilesystem; } }));
|
219807
|
-
var read_config_file_1 =
|
219894
|
+
var read_config_file_1 = __nested_webpack_require_1011365__(7792);
|
219808
219895
|
Object.defineProperty(exports, "readConfigFile", ({ enumerable: true, get: function () { return read_config_file_1.readConfigFile; } }));
|
219809
|
-
var normalize_path_1 =
|
219896
|
+
var normalize_path_1 = __nested_webpack_require_1011365__(6261);
|
219810
219897
|
Object.defineProperty(exports, "normalizePath", ({ enumerable: true, get: function () { return normalize_path_1.normalizePath; } }));
|
219811
|
-
var convert_runtime_to_plugin_1 =
|
219898
|
+
var convert_runtime_to_plugin_1 = __nested_webpack_require_1011365__(7276);
|
219812
219899
|
Object.defineProperty(exports, "convertRuntimeToPlugin", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.convertRuntimeToPlugin; } }));
|
219813
219900
|
Object.defineProperty(exports, "updateFunctionsManifest", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.updateFunctionsManifest; } }));
|
219814
219901
|
Object.defineProperty(exports, "updateRoutesManifest", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.updateRoutesManifest; } }));
|
219815
|
-
__exportStar(
|
219816
|
-
__exportStar(
|
219817
|
-
__exportStar(
|
219902
|
+
__exportStar(__nested_webpack_require_1011365__(2416), exports);
|
219903
|
+
__exportStar(__nested_webpack_require_1011365__(5748), exports);
|
219904
|
+
__exportStar(__nested_webpack_require_1011365__(3983), exports);
|
219818
219905
|
/**
|
219819
219906
|
* Helper function to support both `@vercel` and legacy `@now` official Runtimes.
|
219820
219907
|
*/
|
@@ -219867,7 +219954,7 @@ exports.getInputHash = getInputHash;
|
|
219867
219954
|
/***/ }),
|
219868
219955
|
|
219869
219956
|
/***/ 6721:
|
219870
|
-
/***/ (function(__unused_webpack_module, exports,
|
219957
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1022343__) {
|
219871
219958
|
|
219872
219959
|
"use strict";
|
219873
219960
|
|
@@ -219876,13 +219963,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219876
219963
|
};
|
219877
219964
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219878
219965
|
exports.getLambdaOptionsFromFunction = exports.createZip = exports.createLambda = exports.Lambda = exports.FILES_SYMBOL = void 0;
|
219879
|
-
const assert_1 = __importDefault(
|
219880
|
-
const async_sema_1 = __importDefault(
|
219881
|
-
const yazl_1 =
|
219882
|
-
const minimatch_1 = __importDefault(
|
219883
|
-
const fs_extra_1 =
|
219884
|
-
const download_1 =
|
219885
|
-
const stream_to_buffer_1 = __importDefault(
|
219966
|
+
const assert_1 = __importDefault(__nested_webpack_require_1022343__(2357));
|
219967
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_1022343__(5758));
|
219968
|
+
const yazl_1 = __nested_webpack_require_1022343__(1223);
|
219969
|
+
const minimatch_1 = __importDefault(__nested_webpack_require_1022343__(9566));
|
219970
|
+
const fs_extra_1 = __nested_webpack_require_1022343__(5392);
|
219971
|
+
const download_1 = __nested_webpack_require_1022343__(1611);
|
219972
|
+
const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1022343__(2560));
|
219886
219973
|
exports.FILES_SYMBOL = Symbol('files');
|
219887
219974
|
class Lambda {
|
219888
219975
|
constructor({ zipBuffer, handler, runtime, maxDuration, memory, environment, allowQuery, regions, }) {
|
@@ -220111,12 +220198,12 @@ exports.buildsSchema = {
|
|
220111
220198
|
/***/ }),
|
220112
220199
|
|
220113
220200
|
/***/ 2564:
|
220114
|
-
/***/ ((__unused_webpack_module, exports,
|
220201
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_1030853__) => {
|
220115
220202
|
|
220116
220203
|
"use strict";
|
220117
220204
|
|
220118
220205
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
220119
|
-
const path_1 =
|
220206
|
+
const path_1 = __nested_webpack_require_1030853__(5622);
|
220120
220207
|
function shouldServe({ entrypoint, files, requestPath, }) {
|
220121
220208
|
requestPath = requestPath.replace(/\/$/, ''); // sanitize trailing '/'
|
220122
220209
|
entrypoint = entrypoint.replace(/\\/, '/'); // windows compatibility
|
@@ -220353,7 +220440,7 @@ module.exports = __webpack_require__(78761);
|
|
220353
220440
|
/******/ var __webpack_module_cache__ = {};
|
220354
220441
|
/******/
|
220355
220442
|
/******/ // The require function
|
220356
|
-
/******/ function
|
220443
|
+
/******/ function __nested_webpack_require_1130588__(moduleId) {
|
220357
220444
|
/******/ // Check if module is in cache
|
220358
220445
|
/******/ if(__webpack_module_cache__[moduleId]) {
|
220359
220446
|
/******/ return __webpack_module_cache__[moduleId].exports;
|
@@ -220368,7 +220455,7 @@ module.exports = __webpack_require__(78761);
|
|
220368
220455
|
/******/ // Execute the module function
|
220369
220456
|
/******/ var threw = true;
|
220370
220457
|
/******/ try {
|
220371
|
-
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports,
|
220458
|
+
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __nested_webpack_require_1130588__);
|
220372
220459
|
/******/ threw = false;
|
220373
220460
|
/******/ } finally {
|
220374
220461
|
/******/ if(threw) delete __webpack_module_cache__[moduleId];
|
@@ -220381,11 +220468,11 @@ module.exports = __webpack_require__(78761);
|
|
220381
220468
|
/************************************************************************/
|
220382
220469
|
/******/ /* webpack/runtime/compat */
|
220383
220470
|
/******/
|
220384
|
-
/******/
|
220471
|
+
/******/ __nested_webpack_require_1130588__.ab = __dirname + "/";/************************************************************************/
|
220385
220472
|
/******/ // module exports must be returned from runtime so entry inlining is disabled
|
220386
220473
|
/******/ // startup
|
220387
220474
|
/******/ // Load entry module and return exports
|
220388
|
-
/******/ return
|
220475
|
+
/******/ return __nested_webpack_require_1130588__(2855);
|
220389
220476
|
/******/ })()
|
220390
220477
|
;
|
220391
220478
|
|
@@ -271217,7 +271304,7 @@ module.exports = JSON.parse("[\"ac\",\"com.ac\",\"edu.ac\",\"gov.ac\",\"net.ac\"
|
|
271217
271304
|
/***/ ((module) => {
|
271218
271305
|
|
271219
271306
|
"use strict";
|
271220
|
-
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"23.1.3-canary.
|
271307
|
+
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"23.1.3-canary.55\",\"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.33\",\"@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.9\",\"vercel-plugin-node\":\"1.12.2-canary.25\"},\"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\":\"5efd3b98deb33029180ac40b0e30df1155c1ea5d\"}");
|
271221
271308
|
|
271222
271309
|
/***/ }),
|
271223
271310
|
|
@@ -271233,7 +271320,7 @@ module.exports = JSON.parse("{\"VISA\":\"Visa\",\"MASTERCARD\":\"MasterCard\",\"
|
|
271233
271320
|
/***/ ((module) => {
|
271234
271321
|
|
271235
271322
|
"use strict";
|
271236
|
-
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.2.3-canary.
|
271323
|
+
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.2.3-canary.34\",\"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.33\",\"@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\":\"5efd3b98deb33029180ac40b0e30df1155c1ea5d\"}");
|
271237
271324
|
|
271238
271325
|
/***/ }),
|
271239
271326
|
|
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.55",
|
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.33",
|
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
|
-
"vercel-plugin-middleware": "0.0.0-canary.
|
53
|
-
"vercel-plugin-node": "1.12.2-canary.
|
52
|
+
"vercel-plugin-middleware": "0.0.0-canary.9",
|
53
|
+
"vercel-plugin-node": "1.12.2-canary.25"
|
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": "5efd3b98deb33029180ac40b0e30df1155c1ea5d"
|
188
188
|
}
|