vercel 23.1.3-canary.62 → 23.1.3-canary.63
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 +158 -109
- package/package.json +5 -5
package/dist/index.js
CHANGED
@@ -217401,7 +217401,8 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
|
|
217401
217401
|
}
|
217402
217402
|
const pages = {};
|
217403
217403
|
const pluginName = packageName.replace('vercel-plugin-', '');
|
217404
|
-
const
|
217404
|
+
const outputPath = path_1.join(workPath, '.output');
|
217405
|
+
const traceDir = path_1.join(outputPath, `inputs`,
|
217405
217406
|
// Legacy Runtimes can only provide API Routes, so that's
|
217406
217407
|
// why we can use this prefix for all of them. Here, we have to
|
217407
217408
|
// make sure to not use a cryptic hash name, because people
|
@@ -217409,8 +217410,7 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
|
|
217409
217410
|
`api-routes-${pluginName}`);
|
217410
217411
|
await fs_extra_1.default.ensureDir(traceDir);
|
217411
217412
|
let newPathsRuntime = new Set();
|
217412
|
-
const
|
217413
|
-
const entryRoot = path_1.join(workPath, entryDir);
|
217413
|
+
const entryRoot = path_1.join(outputPath, 'server', 'pages');
|
217414
217414
|
for (const entrypoint of Object.keys(entrypoints)) {
|
217415
217415
|
const { output } = await buildRuntime({
|
217416
217416
|
files: sourceFilesPreBuild,
|
@@ -217444,6 +217444,7 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
|
|
217444
217444
|
}
|
217445
217445
|
let handlerFileBase = output.handler;
|
217446
217446
|
let handlerFile = lambdaFiles[handlerFileBase];
|
217447
|
+
let handlerHasImport = false;
|
217447
217448
|
const { handler } = output;
|
217448
217449
|
const handlerMethod = handler.split('.').pop();
|
217449
217450
|
const handlerFileName = handler.replace(`.${handlerMethod}`, '');
|
@@ -217455,6 +217456,7 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
|
|
217455
217456
|
if (!handlerFile) {
|
217456
217457
|
handlerFileBase = handlerFileName + ext;
|
217457
217458
|
handlerFile = lambdaFiles[handlerFileBase];
|
217459
|
+
handlerHasImport = true;
|
217458
217460
|
}
|
217459
217461
|
if (!handlerFile || !handlerFile.fsPath) {
|
217460
217462
|
throw new Error(`Could not find a handler file. Please ensure that \`files\` for the returned \`Lambda\` contains an \`FileFsRef\` named "${handlerFileBase}" with a valid \`fsPath\`.`);
|
@@ -217469,6 +217471,53 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
|
|
217469
217471
|
// one, so linking would end with a broken reference.
|
217470
217472
|
await fs_extra_1.default.ensureDir(path_1.dirname(entry));
|
217471
217473
|
await fs_extra_1.default.copy(handlerFile.fsPath, entry);
|
217474
|
+
// For compiled languages, the launcher file will be binary and therefore
|
217475
|
+
// won't try to import a user-provided request handler (instead, it will
|
217476
|
+
// contain it). But for interpreted languages, the launcher might try to
|
217477
|
+
// load a user-provided request handler from the source file instead of bundling
|
217478
|
+
// it, so we have to adjust the import statement inside the launcher to point
|
217479
|
+
// to the respective source file. Previously, Legacy Runtimes simply expected
|
217480
|
+
// the user-provided request-handler to be copied right next to the launcher,
|
217481
|
+
// but with the new File System API, files won't be moved around unnecessarily.
|
217482
|
+
if (handlerHasImport) {
|
217483
|
+
const { fsPath } = handlerFile;
|
217484
|
+
const encoding = 'utf-8';
|
217485
|
+
// This is the true directory of the user-provided request handler in the
|
217486
|
+
// source files, so that's what we will use as an import path in the launcher.
|
217487
|
+
const locationPrefix = path_1.relative(entry, outputPath);
|
217488
|
+
let handlerContent = await fs_extra_1.default.readFile(fsPath, encoding);
|
217489
|
+
const importPaths = [
|
217490
|
+
// This is the full entrypoint path, like `./api/test.py`
|
217491
|
+
`./${entrypoint}`,
|
217492
|
+
// This is the entrypoint path without extension, like `api/test`
|
217493
|
+
entrypoint.slice(0, -ext.length),
|
217494
|
+
];
|
217495
|
+
// Generate a list of regular expressions that we can use for
|
217496
|
+
// finding matches, but only allow matches if the import path is
|
217497
|
+
// wrapped inside single (') or double quotes (").
|
217498
|
+
const patterns = importPaths.map(path => {
|
217499
|
+
// eslint-disable-next-line no-useless-escape
|
217500
|
+
return new RegExp(`('|")(${path.replace(/\./g, '\\.')})('|")`, 'g');
|
217501
|
+
});
|
217502
|
+
let replacedMatch = null;
|
217503
|
+
for (const pattern of patterns) {
|
217504
|
+
const newContent = handlerContent.replace(pattern, (_, p1, p2, p3) => {
|
217505
|
+
return `${p1}${path_1.join(locationPrefix, p2)}${p3}`;
|
217506
|
+
});
|
217507
|
+
if (newContent !== handlerContent) {
|
217508
|
+
_1.debug(`Replaced "${pattern}" inside "${entry}" to ensure correct import of user-provided request handler`);
|
217509
|
+
handlerContent = newContent;
|
217510
|
+
replacedMatch = true;
|
217511
|
+
}
|
217512
|
+
}
|
217513
|
+
if (!replacedMatch) {
|
217514
|
+
new Error(`No replacable matches for "${importPaths[0]}" or "${importPaths[1]}" found in "${fsPath}"`);
|
217515
|
+
}
|
217516
|
+
await fs_extra_1.default.writeFile(entry, handlerContent, encoding);
|
217517
|
+
}
|
217518
|
+
else {
|
217519
|
+
await fs_extra_1.default.copy(handlerFile.fsPath, entry);
|
217520
|
+
}
|
217472
217521
|
const newFilesEntrypoint = [];
|
217473
217522
|
const newDirectoriesEntrypoint = [];
|
217474
217523
|
const preBuildFiles = Object.values(sourceFilesPreBuild).map(file => {
|
@@ -217648,12 +217697,12 @@ exports.updateRoutesManifest = updateRoutesManifest;
|
|
217648
217697
|
/***/ }),
|
217649
217698
|
|
217650
217699
|
/***/ 1868:
|
217651
|
-
/***/ ((__unused_webpack_module, exports,
|
217700
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_933756__) => {
|
217652
217701
|
|
217653
217702
|
"use strict";
|
217654
217703
|
|
217655
217704
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
217656
|
-
const _1 =
|
217705
|
+
const _1 = __nested_webpack_require_933756__(2855);
|
217657
217706
|
function debug(message, ...additional) {
|
217658
217707
|
if (_1.getPlatformEnv('BUILDER_DEBUG')) {
|
217659
217708
|
console.log(message, ...additional);
|
@@ -217665,7 +217714,7 @@ exports.default = debug;
|
|
217665
217714
|
/***/ }),
|
217666
217715
|
|
217667
217716
|
/***/ 4246:
|
217668
|
-
/***/ (function(__unused_webpack_module, exports,
|
217717
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_934141__) {
|
217669
217718
|
|
217670
217719
|
"use strict";
|
217671
217720
|
|
@@ -217674,11 +217723,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
217674
217723
|
};
|
217675
217724
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
217676
217725
|
exports.detectBuilders = exports.detectOutputDirectory = exports.detectApiDirectory = exports.detectApiExtensions = exports.sortFiles = void 0;
|
217677
|
-
const minimatch_1 = __importDefault(
|
217678
|
-
const semver_1 =
|
217679
|
-
const path_1 =
|
217680
|
-
const frameworks_1 = __importDefault(
|
217681
|
-
const _1 =
|
217726
|
+
const minimatch_1 = __importDefault(__nested_webpack_require_934141__(9566));
|
217727
|
+
const semver_1 = __nested_webpack_require_934141__(2879);
|
217728
|
+
const path_1 = __nested_webpack_require_934141__(5622);
|
217729
|
+
const frameworks_1 = __importDefault(__nested_webpack_require_934141__(8438));
|
217730
|
+
const _1 = __nested_webpack_require_934141__(2855);
|
217682
217731
|
const slugToFramework = new Map(frameworks_1.default.map(f => [f.slug, f]));
|
217683
217732
|
// We need to sort the file paths by alphabet to make
|
217684
217733
|
// sure the routes stay in the same order e.g. for deduping
|
@@ -218737,7 +218786,7 @@ function getSuggestion(topLevelProp, additionalProperty) {
|
|
218737
218786
|
/***/ }),
|
218738
218787
|
|
218739
218788
|
/***/ 2397:
|
218740
|
-
/***/ (function(__unused_webpack_module, exports,
|
218789
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_973525__) {
|
218741
218790
|
|
218742
218791
|
"use strict";
|
218743
218792
|
|
@@ -218745,8 +218794,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218745
218794
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
218746
218795
|
};
|
218747
218796
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218748
|
-
const assert_1 = __importDefault(
|
218749
|
-
const into_stream_1 = __importDefault(
|
218797
|
+
const assert_1 = __importDefault(__nested_webpack_require_973525__(2357));
|
218798
|
+
const into_stream_1 = __importDefault(__nested_webpack_require_973525__(6130));
|
218750
218799
|
class FileBlob {
|
218751
218800
|
constructor({ mode = 0o100644, contentType, data }) {
|
218752
218801
|
assert_1.default(typeof mode === 'number');
|
@@ -218778,7 +218827,7 @@ exports.default = FileBlob;
|
|
218778
218827
|
/***/ }),
|
218779
218828
|
|
218780
218829
|
/***/ 9331:
|
218781
|
-
/***/ (function(__unused_webpack_module, exports,
|
218830
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_974977__) {
|
218782
218831
|
|
218783
218832
|
"use strict";
|
218784
218833
|
|
@@ -218786,11 +218835,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218786
218835
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
218787
218836
|
};
|
218788
218837
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218789
|
-
const assert_1 = __importDefault(
|
218790
|
-
const fs_extra_1 = __importDefault(
|
218791
|
-
const multistream_1 = __importDefault(
|
218792
|
-
const path_1 = __importDefault(
|
218793
|
-
const async_sema_1 = __importDefault(
|
218838
|
+
const assert_1 = __importDefault(__nested_webpack_require_974977__(2357));
|
218839
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_974977__(5392));
|
218840
|
+
const multistream_1 = __importDefault(__nested_webpack_require_974977__(8179));
|
218841
|
+
const path_1 = __importDefault(__nested_webpack_require_974977__(5622));
|
218842
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_974977__(5758));
|
218794
218843
|
const semaToPreventEMFILE = new async_sema_1.default(20);
|
218795
218844
|
class FileFsRef {
|
218796
218845
|
constructor({ mode = 0o100644, contentType, fsPath }) {
|
@@ -218856,7 +218905,7 @@ exports.default = FileFsRef;
|
|
218856
218905
|
/***/ }),
|
218857
218906
|
|
218858
218907
|
/***/ 5187:
|
218859
|
-
/***/ (function(__unused_webpack_module, exports,
|
218908
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_977781__) {
|
218860
218909
|
|
218861
218910
|
"use strict";
|
218862
218911
|
|
@@ -218864,11 +218913,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218864
218913
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
218865
218914
|
};
|
218866
218915
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218867
|
-
const assert_1 = __importDefault(
|
218868
|
-
const node_fetch_1 = __importDefault(
|
218869
|
-
const multistream_1 = __importDefault(
|
218870
|
-
const async_retry_1 = __importDefault(
|
218871
|
-
const async_sema_1 = __importDefault(
|
218916
|
+
const assert_1 = __importDefault(__nested_webpack_require_977781__(2357));
|
218917
|
+
const node_fetch_1 = __importDefault(__nested_webpack_require_977781__(2197));
|
218918
|
+
const multistream_1 = __importDefault(__nested_webpack_require_977781__(8179));
|
218919
|
+
const async_retry_1 = __importDefault(__nested_webpack_require_977781__(3691));
|
218920
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_977781__(5758));
|
218872
218921
|
const semaToDownloadFromS3 = new async_sema_1.default(5);
|
218873
218922
|
class BailableError extends Error {
|
218874
218923
|
constructor(...args) {
|
@@ -218949,7 +218998,7 @@ exports.default = FileRef;
|
|
218949
218998
|
/***/ }),
|
218950
218999
|
|
218951
219000
|
/***/ 1611:
|
218952
|
-
/***/ (function(__unused_webpack_module, exports,
|
219001
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_981182__) {
|
218953
219002
|
|
218954
219003
|
"use strict";
|
218955
219004
|
|
@@ -218958,10 +219007,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218958
219007
|
};
|
218959
219008
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218960
219009
|
exports.isSymbolicLink = void 0;
|
218961
|
-
const path_1 = __importDefault(
|
218962
|
-
const debug_1 = __importDefault(
|
218963
|
-
const file_fs_ref_1 = __importDefault(
|
218964
|
-
const fs_extra_1 =
|
219010
|
+
const path_1 = __importDefault(__nested_webpack_require_981182__(5622));
|
219011
|
+
const debug_1 = __importDefault(__nested_webpack_require_981182__(1868));
|
219012
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_981182__(9331));
|
219013
|
+
const fs_extra_1 = __nested_webpack_require_981182__(5392);
|
218965
219014
|
const S_IFMT = 61440; /* 0170000 type of file */
|
218966
219015
|
const S_IFLNK = 40960; /* 0120000 symbolic link */
|
218967
219016
|
function isSymbolicLink(mode) {
|
@@ -219023,14 +219072,14 @@ exports.default = download;
|
|
219023
219072
|
/***/ }),
|
219024
219073
|
|
219025
219074
|
/***/ 3838:
|
219026
|
-
/***/ ((__unused_webpack_module, exports,
|
219075
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_984007__) => {
|
219027
219076
|
|
219028
219077
|
"use strict";
|
219029
219078
|
|
219030
219079
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219031
|
-
const path_1 =
|
219032
|
-
const os_1 =
|
219033
|
-
const fs_extra_1 =
|
219080
|
+
const path_1 = __nested_webpack_require_984007__(5622);
|
219081
|
+
const os_1 = __nested_webpack_require_984007__(2087);
|
219082
|
+
const fs_extra_1 = __nested_webpack_require_984007__(5392);
|
219034
219083
|
async function getWritableDirectory() {
|
219035
219084
|
const name = Math.floor(Math.random() * 0x7fffffff).toString(16);
|
219036
219085
|
const directory = path_1.join(os_1.tmpdir(), name);
|
@@ -219043,7 +219092,7 @@ exports.default = getWritableDirectory;
|
|
219043
219092
|
/***/ }),
|
219044
219093
|
|
219045
219094
|
/***/ 4240:
|
219046
|
-
/***/ (function(__unused_webpack_module, exports,
|
219095
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_984587__) {
|
219047
219096
|
|
219048
219097
|
"use strict";
|
219049
219098
|
|
@@ -219051,13 +219100,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219051
219100
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
219052
219101
|
};
|
219053
219102
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219054
|
-
const path_1 = __importDefault(
|
219055
|
-
const assert_1 = __importDefault(
|
219056
|
-
const glob_1 = __importDefault(
|
219057
|
-
const util_1 =
|
219058
|
-
const fs_extra_1 =
|
219059
|
-
const normalize_path_1 =
|
219060
|
-
const file_fs_ref_1 = __importDefault(
|
219103
|
+
const path_1 = __importDefault(__nested_webpack_require_984587__(5622));
|
219104
|
+
const assert_1 = __importDefault(__nested_webpack_require_984587__(2357));
|
219105
|
+
const glob_1 = __importDefault(__nested_webpack_require_984587__(1104));
|
219106
|
+
const util_1 = __nested_webpack_require_984587__(1669);
|
219107
|
+
const fs_extra_1 = __nested_webpack_require_984587__(5392);
|
219108
|
+
const normalize_path_1 = __nested_webpack_require_984587__(6261);
|
219109
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_984587__(9331));
|
219061
219110
|
const vanillaGlob = util_1.promisify(glob_1.default);
|
219062
219111
|
async function glob(pattern, opts, mountpoint) {
|
219063
219112
|
let options;
|
@@ -219103,7 +219152,7 @@ exports.default = glob;
|
|
219103
219152
|
/***/ }),
|
219104
219153
|
|
219105
219154
|
/***/ 7903:
|
219106
|
-
/***/ (function(__unused_webpack_module, exports,
|
219155
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_986783__) {
|
219107
219156
|
|
219108
219157
|
"use strict";
|
219109
219158
|
|
@@ -219112,9 +219161,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219112
219161
|
};
|
219113
219162
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219114
219163
|
exports.getSupportedNodeVersion = exports.getDiscontinuedNodeVersions = exports.getLatestNodeVersion = void 0;
|
219115
|
-
const semver_1 =
|
219116
|
-
const errors_1 =
|
219117
|
-
const debug_1 = __importDefault(
|
219164
|
+
const semver_1 = __nested_webpack_require_986783__(2879);
|
219165
|
+
const errors_1 = __nested_webpack_require_986783__(3983);
|
219166
|
+
const debug_1 = __importDefault(__nested_webpack_require_986783__(1868));
|
219118
219167
|
const allOptions = [
|
219119
219168
|
{ major: 14, range: '14.x', runtime: 'nodejs14.x' },
|
219120
219169
|
{ major: 12, range: '12.x', runtime: 'nodejs12.x' },
|
@@ -219208,7 +219257,7 @@ exports.normalizePath = normalizePath;
|
|
219208
219257
|
/***/ }),
|
219209
219258
|
|
219210
219259
|
/***/ 7792:
|
219211
|
-
/***/ (function(__unused_webpack_module, exports,
|
219260
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_990651__) {
|
219212
219261
|
|
219213
219262
|
"use strict";
|
219214
219263
|
|
@@ -219217,9 +219266,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219217
219266
|
};
|
219218
219267
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219219
219268
|
exports.readConfigFile = void 0;
|
219220
|
-
const js_yaml_1 = __importDefault(
|
219221
|
-
const toml_1 = __importDefault(
|
219222
|
-
const fs_extra_1 =
|
219269
|
+
const js_yaml_1 = __importDefault(__nested_webpack_require_990651__(6540));
|
219270
|
+
const toml_1 = __importDefault(__nested_webpack_require_990651__(9434));
|
219271
|
+
const fs_extra_1 = __nested_webpack_require_990651__(5392);
|
219223
219272
|
async function readFileOrNull(file) {
|
219224
219273
|
try {
|
219225
219274
|
const data = await fs_extra_1.readFile(file);
|
@@ -219274,7 +219323,7 @@ exports.default = rename;
|
|
219274
219323
|
/***/ }),
|
219275
219324
|
|
219276
219325
|
/***/ 1442:
|
219277
|
-
/***/ (function(__unused_webpack_module, exports,
|
219326
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_992444__) {
|
219278
219327
|
|
219279
219328
|
"use strict";
|
219280
219329
|
|
@@ -219283,14 +219332,14 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219283
219332
|
};
|
219284
219333
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219285
219334
|
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;
|
219286
|
-
const assert_1 = __importDefault(
|
219287
|
-
const fs_extra_1 = __importDefault(
|
219288
|
-
const path_1 = __importDefault(
|
219289
|
-
const debug_1 = __importDefault(
|
219290
|
-
const cross_spawn_1 = __importDefault(
|
219291
|
-
const util_1 =
|
219292
|
-
const errors_1 =
|
219293
|
-
const node_version_1 =
|
219335
|
+
const assert_1 = __importDefault(__nested_webpack_require_992444__(2357));
|
219336
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_992444__(5392));
|
219337
|
+
const path_1 = __importDefault(__nested_webpack_require_992444__(5622));
|
219338
|
+
const debug_1 = __importDefault(__nested_webpack_require_992444__(1868));
|
219339
|
+
const cross_spawn_1 = __importDefault(__nested_webpack_require_992444__(7618));
|
219340
|
+
const util_1 = __nested_webpack_require_992444__(1669);
|
219341
|
+
const errors_1 = __nested_webpack_require_992444__(3983);
|
219342
|
+
const node_version_1 = __nested_webpack_require_992444__(7903);
|
219294
219343
|
function spawnAsync(command, args, opts = {}) {
|
219295
219344
|
return new Promise((resolve, reject) => {
|
219296
219345
|
const stderrLogs = [];
|
@@ -219601,7 +219650,7 @@ exports.installDependencies = util_1.deprecate(runNpmInstall, 'installDependenci
|
|
219601
219650
|
/***/ }),
|
219602
219651
|
|
219603
219652
|
/***/ 2560:
|
219604
|
-
/***/ (function(__unused_webpack_module, exports,
|
219653
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1006434__) {
|
219605
219654
|
|
219606
219655
|
"use strict";
|
219607
219656
|
|
@@ -219609,7 +219658,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219609
219658
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
219610
219659
|
};
|
219611
219660
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219612
|
-
const end_of_stream_1 = __importDefault(
|
219661
|
+
const end_of_stream_1 = __importDefault(__nested_webpack_require_1006434__(687));
|
219613
219662
|
function streamToBuffer(stream) {
|
219614
219663
|
return new Promise((resolve, reject) => {
|
219615
219664
|
const buffers = [];
|
@@ -219638,7 +219687,7 @@ exports.default = streamToBuffer;
|
|
219638
219687
|
/***/ }),
|
219639
219688
|
|
219640
219689
|
/***/ 1148:
|
219641
|
-
/***/ (function(__unused_webpack_module, exports,
|
219690
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1007502__) {
|
219642
219691
|
|
219643
219692
|
"use strict";
|
219644
219693
|
|
@@ -219646,9 +219695,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219646
219695
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
219647
219696
|
};
|
219648
219697
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219649
|
-
const path_1 = __importDefault(
|
219650
|
-
const fs_extra_1 = __importDefault(
|
219651
|
-
const ignore_1 = __importDefault(
|
219698
|
+
const path_1 = __importDefault(__nested_webpack_require_1007502__(5622));
|
219699
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_1007502__(5392));
|
219700
|
+
const ignore_1 = __importDefault(__nested_webpack_require_1007502__(3556));
|
219652
219701
|
function isCodedError(error) {
|
219653
219702
|
return (error !== null &&
|
219654
219703
|
error !== undefined &&
|
@@ -219705,7 +219754,7 @@ exports.default = default_1;
|
|
219705
219754
|
/***/ }),
|
219706
219755
|
|
219707
219756
|
/***/ 2855:
|
219708
|
-
/***/ (function(__unused_webpack_module, exports,
|
219757
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1009884__) {
|
219709
219758
|
|
219710
219759
|
"use strict";
|
219711
219760
|
|
@@ -219736,29 +219785,29 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219736
219785
|
};
|
219737
219786
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219738
219787
|
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;
|
219739
|
-
const crypto_1 =
|
219740
|
-
const file_blob_1 = __importDefault(
|
219788
|
+
const crypto_1 = __nested_webpack_require_1009884__(6417);
|
219789
|
+
const file_blob_1 = __importDefault(__nested_webpack_require_1009884__(2397));
|
219741
219790
|
exports.FileBlob = file_blob_1.default;
|
219742
|
-
const file_fs_ref_1 = __importDefault(
|
219791
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_1009884__(9331));
|
219743
219792
|
exports.FileFsRef = file_fs_ref_1.default;
|
219744
|
-
const file_ref_1 = __importDefault(
|
219793
|
+
const file_ref_1 = __importDefault(__nested_webpack_require_1009884__(5187));
|
219745
219794
|
exports.FileRef = file_ref_1.default;
|
219746
|
-
const lambda_1 =
|
219795
|
+
const lambda_1 = __nested_webpack_require_1009884__(6721);
|
219747
219796
|
Object.defineProperty(exports, "Lambda", ({ enumerable: true, get: function () { return lambda_1.Lambda; } }));
|
219748
219797
|
Object.defineProperty(exports, "createLambda", ({ enumerable: true, get: function () { return lambda_1.createLambda; } }));
|
219749
219798
|
Object.defineProperty(exports, "getLambdaOptionsFromFunction", ({ enumerable: true, get: function () { return lambda_1.getLambdaOptionsFromFunction; } }));
|
219750
|
-
const prerender_1 =
|
219799
|
+
const prerender_1 = __nested_webpack_require_1009884__(2850);
|
219751
219800
|
Object.defineProperty(exports, "Prerender", ({ enumerable: true, get: function () { return prerender_1.Prerender; } }));
|
219752
|
-
const download_1 = __importStar(
|
219801
|
+
const download_1 = __importStar(__nested_webpack_require_1009884__(1611));
|
219753
219802
|
exports.download = download_1.default;
|
219754
219803
|
Object.defineProperty(exports, "isSymbolicLink", ({ enumerable: true, get: function () { return download_1.isSymbolicLink; } }));
|
219755
|
-
const get_writable_directory_1 = __importDefault(
|
219804
|
+
const get_writable_directory_1 = __importDefault(__nested_webpack_require_1009884__(3838));
|
219756
219805
|
exports.getWriteableDirectory = get_writable_directory_1.default;
|
219757
|
-
const glob_1 = __importDefault(
|
219806
|
+
const glob_1 = __importDefault(__nested_webpack_require_1009884__(4240));
|
219758
219807
|
exports.glob = glob_1.default;
|
219759
|
-
const rename_1 = __importDefault(
|
219808
|
+
const rename_1 = __importDefault(__nested_webpack_require_1009884__(6718));
|
219760
219809
|
exports.rename = rename_1.default;
|
219761
|
-
const run_user_scripts_1 =
|
219810
|
+
const run_user_scripts_1 = __nested_webpack_require_1009884__(1442);
|
219762
219811
|
Object.defineProperty(exports, "execAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.execAsync; } }));
|
219763
219812
|
Object.defineProperty(exports, "spawnAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.spawnAsync; } }));
|
219764
219813
|
Object.defineProperty(exports, "execCommand", ({ enumerable: true, get: function () { return run_user_scripts_1.execCommand; } }));
|
@@ -219775,38 +219824,38 @@ Object.defineProperty(exports, "getNodeVersion", ({ enumerable: true, get: funct
|
|
219775
219824
|
Object.defineProperty(exports, "getSpawnOptions", ({ enumerable: true, get: function () { return run_user_scripts_1.getSpawnOptions; } }));
|
219776
219825
|
Object.defineProperty(exports, "getNodeBinPath", ({ enumerable: true, get: function () { return run_user_scripts_1.getNodeBinPath; } }));
|
219777
219826
|
Object.defineProperty(exports, "scanParentDirs", ({ enumerable: true, get: function () { return run_user_scripts_1.scanParentDirs; } }));
|
219778
|
-
const node_version_1 =
|
219827
|
+
const node_version_1 = __nested_webpack_require_1009884__(7903);
|
219779
219828
|
Object.defineProperty(exports, "getLatestNodeVersion", ({ enumerable: true, get: function () { return node_version_1.getLatestNodeVersion; } }));
|
219780
219829
|
Object.defineProperty(exports, "getDiscontinuedNodeVersions", ({ enumerable: true, get: function () { return node_version_1.getDiscontinuedNodeVersions; } }));
|
219781
|
-
const errors_1 =
|
219782
|
-
const stream_to_buffer_1 = __importDefault(
|
219830
|
+
const errors_1 = __nested_webpack_require_1009884__(3983);
|
219831
|
+
const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1009884__(2560));
|
219783
219832
|
exports.streamToBuffer = stream_to_buffer_1.default;
|
219784
|
-
const should_serve_1 = __importDefault(
|
219833
|
+
const should_serve_1 = __importDefault(__nested_webpack_require_1009884__(2564));
|
219785
219834
|
exports.shouldServe = should_serve_1.default;
|
219786
|
-
const debug_1 = __importDefault(
|
219835
|
+
const debug_1 = __importDefault(__nested_webpack_require_1009884__(1868));
|
219787
219836
|
exports.debug = debug_1.default;
|
219788
|
-
const get_ignore_filter_1 = __importDefault(
|
219837
|
+
const get_ignore_filter_1 = __importDefault(__nested_webpack_require_1009884__(1148));
|
219789
219838
|
exports.getIgnoreFilter = get_ignore_filter_1.default;
|
219790
|
-
var detect_builders_1 =
|
219839
|
+
var detect_builders_1 = __nested_webpack_require_1009884__(4246);
|
219791
219840
|
Object.defineProperty(exports, "detectBuilders", ({ enumerable: true, get: function () { return detect_builders_1.detectBuilders; } }));
|
219792
219841
|
Object.defineProperty(exports, "detectOutputDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectOutputDirectory; } }));
|
219793
219842
|
Object.defineProperty(exports, "detectApiDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectApiDirectory; } }));
|
219794
219843
|
Object.defineProperty(exports, "detectApiExtensions", ({ enumerable: true, get: function () { return detect_builders_1.detectApiExtensions; } }));
|
219795
|
-
var detect_framework_1 =
|
219844
|
+
var detect_framework_1 = __nested_webpack_require_1009884__(5224);
|
219796
219845
|
Object.defineProperty(exports, "detectFramework", ({ enumerable: true, get: function () { return detect_framework_1.detectFramework; } }));
|
219797
|
-
var filesystem_1 =
|
219846
|
+
var filesystem_1 = __nested_webpack_require_1009884__(461);
|
219798
219847
|
Object.defineProperty(exports, "DetectorFilesystem", ({ enumerable: true, get: function () { return filesystem_1.DetectorFilesystem; } }));
|
219799
|
-
var read_config_file_1 =
|
219848
|
+
var read_config_file_1 = __nested_webpack_require_1009884__(7792);
|
219800
219849
|
Object.defineProperty(exports, "readConfigFile", ({ enumerable: true, get: function () { return read_config_file_1.readConfigFile; } }));
|
219801
|
-
var normalize_path_1 =
|
219850
|
+
var normalize_path_1 = __nested_webpack_require_1009884__(6261);
|
219802
219851
|
Object.defineProperty(exports, "normalizePath", ({ enumerable: true, get: function () { return normalize_path_1.normalizePath; } }));
|
219803
|
-
var convert_runtime_to_plugin_1 =
|
219852
|
+
var convert_runtime_to_plugin_1 = __nested_webpack_require_1009884__(7276);
|
219804
219853
|
Object.defineProperty(exports, "convertRuntimeToPlugin", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.convertRuntimeToPlugin; } }));
|
219805
219854
|
Object.defineProperty(exports, "updateFunctionsManifest", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.updateFunctionsManifest; } }));
|
219806
219855
|
Object.defineProperty(exports, "updateRoutesManifest", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.updateRoutesManifest; } }));
|
219807
|
-
__exportStar(
|
219808
|
-
__exportStar(
|
219809
|
-
__exportStar(
|
219856
|
+
__exportStar(__nested_webpack_require_1009884__(2416), exports);
|
219857
|
+
__exportStar(__nested_webpack_require_1009884__(5748), exports);
|
219858
|
+
__exportStar(__nested_webpack_require_1009884__(3983), exports);
|
219810
219859
|
/**
|
219811
219860
|
* Helper function to support both `@vercel` and legacy `@now` official Runtimes.
|
219812
219861
|
*/
|
@@ -219859,7 +219908,7 @@ exports.getInputHash = getInputHash;
|
|
219859
219908
|
/***/ }),
|
219860
219909
|
|
219861
219910
|
/***/ 6721:
|
219862
|
-
/***/ (function(__unused_webpack_module, exports,
|
219911
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1020862__) {
|
219863
219912
|
|
219864
219913
|
"use strict";
|
219865
219914
|
|
@@ -219868,13 +219917,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219868
219917
|
};
|
219869
219918
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219870
219919
|
exports.getLambdaOptionsFromFunction = exports.createZip = exports.createLambda = exports.Lambda = exports.FILES_SYMBOL = void 0;
|
219871
|
-
const assert_1 = __importDefault(
|
219872
|
-
const async_sema_1 = __importDefault(
|
219873
|
-
const yazl_1 =
|
219874
|
-
const minimatch_1 = __importDefault(
|
219875
|
-
const fs_extra_1 =
|
219876
|
-
const download_1 =
|
219877
|
-
const stream_to_buffer_1 = __importDefault(
|
219920
|
+
const assert_1 = __importDefault(__nested_webpack_require_1020862__(2357));
|
219921
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_1020862__(5758));
|
219922
|
+
const yazl_1 = __nested_webpack_require_1020862__(1223);
|
219923
|
+
const minimatch_1 = __importDefault(__nested_webpack_require_1020862__(9566));
|
219924
|
+
const fs_extra_1 = __nested_webpack_require_1020862__(5392);
|
219925
|
+
const download_1 = __nested_webpack_require_1020862__(1611);
|
219926
|
+
const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1020862__(2560));
|
219878
219927
|
exports.FILES_SYMBOL = Symbol('files');
|
219879
219928
|
class Lambda {
|
219880
219929
|
constructor({ zipBuffer, handler, runtime, maxDuration, memory, environment, allowQuery, regions, }) {
|
@@ -220103,12 +220152,12 @@ exports.buildsSchema = {
|
|
220103
220152
|
/***/ }),
|
220104
220153
|
|
220105
220154
|
/***/ 2564:
|
220106
|
-
/***/ ((__unused_webpack_module, exports,
|
220155
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_1029372__) => {
|
220107
220156
|
|
220108
220157
|
"use strict";
|
220109
220158
|
|
220110
220159
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
220111
|
-
const path_1 =
|
220160
|
+
const path_1 = __nested_webpack_require_1029372__(5622);
|
220112
220161
|
function shouldServe({ entrypoint, files, requestPath, }) {
|
220113
220162
|
requestPath = requestPath.replace(/\/$/, ''); // sanitize trailing '/'
|
220114
220163
|
entrypoint = entrypoint.replace(/\\/, '/'); // windows compatibility
|
@@ -220345,7 +220394,7 @@ module.exports = __webpack_require__(78761);
|
|
220345
220394
|
/******/ var __webpack_module_cache__ = {};
|
220346
220395
|
/******/
|
220347
220396
|
/******/ // The require function
|
220348
|
-
/******/ function
|
220397
|
+
/******/ function __nested_webpack_require_1129107__(moduleId) {
|
220349
220398
|
/******/ // Check if module is in cache
|
220350
220399
|
/******/ if(__webpack_module_cache__[moduleId]) {
|
220351
220400
|
/******/ return __webpack_module_cache__[moduleId].exports;
|
@@ -220360,7 +220409,7 @@ module.exports = __webpack_require__(78761);
|
|
220360
220409
|
/******/ // Execute the module function
|
220361
220410
|
/******/ var threw = true;
|
220362
220411
|
/******/ try {
|
220363
|
-
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports,
|
220412
|
+
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __nested_webpack_require_1129107__);
|
220364
220413
|
/******/ threw = false;
|
220365
220414
|
/******/ } finally {
|
220366
220415
|
/******/ if(threw) delete __webpack_module_cache__[moduleId];
|
@@ -220373,11 +220422,11 @@ module.exports = __webpack_require__(78761);
|
|
220373
220422
|
/************************************************************************/
|
220374
220423
|
/******/ /* webpack/runtime/compat */
|
220375
220424
|
/******/
|
220376
|
-
/******/
|
220425
|
+
/******/ __nested_webpack_require_1129107__.ab = __dirname + "/";/************************************************************************/
|
220377
220426
|
/******/ // module exports must be returned from runtime so entry inlining is disabled
|
220378
220427
|
/******/ // startup
|
220379
220428
|
/******/ // Load entry module and return exports
|
220380
|
-
/******/ return
|
220429
|
+
/******/ return __nested_webpack_require_1129107__(2855);
|
220381
220430
|
/******/ })()
|
220382
220431
|
;
|
220383
220432
|
|
@@ -271064,7 +271113,7 @@ module.exports = JSON.parse("[\"ac\",\"com.ac\",\"edu.ac\",\"gov.ac\",\"net.ac\"
|
|
271064
271113
|
/***/ ((module) => {
|
271065
271114
|
|
271066
271115
|
"use strict";
|
271067
|
-
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"23.1.3-canary.
|
271116
|
+
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"23.1.3-canary.63\",\"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.40\",\"@vercel/go\":\"1.2.4-canary.4\",\"@vercel/node\":\"1.12.2-canary.7\",\"@vercel/python\":\"2.1.2-canary.1\",\"@vercel/ruby\":\"1.2.10-canary.0\",\"update-notifier\":\"4.1.0\",\"vercel-plugin-middleware\":\"0.0.0-canary.16\",\"vercel-plugin-node\":\"1.12.2-canary.32\"},\"devDependencies\":{\"@next/env\":\"11.1.2\",\"@sentry/node\":\"5.5.0\",\"@sindresorhus/slugify\":\"0.11.0\",\"@tootallnate/once\":\"1.1.2\",\"@types/ansi-escapes\":\"3.0.0\",\"@types/ansi-regex\":\"4.0.0\",\"@types/async-retry\":\"1.2.1\",\"@types/bytes\":\"3.0.0\",\"@types/chance\":\"1.1.3\",\"@types/debug\":\"0.0.31\",\"@types/dotenv\":\"6.1.1\",\"@types/escape-html\":\"0.0.20\",\"@types/express\":\"4.17.13\",\"@types/fs-extra\":\"9.0.13\",\"@types/glob\":\"7.1.1\",\"@types/http-proxy\":\"1.16.2\",\"@types/inquirer\":\"7.3.1\",\"@types/jest\":\"27.0.1\",\"@types/load-json-file\":\"2.0.7\",\"@types/mime-types\":\"2.1.0\",\"@types/minimatch\":\"3.0.3\",\"@types/mri\":\"1.1.0\",\"@types/ms\":\"0.7.30\",\"@types/node\":\"11.11.0\",\"@types/node-fetch\":\"2.5.10\",\"@types/npm-package-arg\":\"6.1.0\",\"@types/pluralize\":\"0.0.29\",\"@types/progress\":\"2.0.3\",\"@types/psl\":\"1.1.0\",\"@types/semver\":\"6.0.1\",\"@types/tar-fs\":\"1.16.1\",\"@types/text-table\":\"0.2.0\",\"@types/title\":\"3.4.1\",\"@types/universal-analytics\":\"0.4.2\",\"@types/update-notifier\":\"5.1.0\",\"@types/which\":\"1.3.2\",\"@types/write-json-file\":\"2.2.1\",\"@vercel/frameworks\":\"0.5.1-canary.17\",\"@vercel/ncc\":\"0.24.0\",\"@vercel/nft\":\"0.17.0\",\"@zeit/fun\":\"0.11.2\",\"@zeit/source-map-support\":\"0.6.2\",\"ajv\":\"6.12.2\",\"alpha-sort\":\"2.0.1\",\"ansi-escapes\":\"3.0.0\",\"ansi-regex\":\"3.0.0\",\"arg\":\"5.0.0\",\"async-listen\":\"1.2.0\",\"async-retry\":\"1.1.3\",\"async-sema\":\"2.1.4\",\"ava\":\"2.2.0\",\"bytes\":\"3.0.0\",\"chalk\":\"4.1.0\",\"chance\":\"1.1.7\",\"chokidar\":\"3.3.1\",\"clipboardy\":\"2.1.0\",\"codecov\":\"3.8.2\",\"cpy\":\"7.2.0\",\"credit-card\":\"3.0.1\",\"date-fns\":\"1.29.0\",\"debug\":\"3.1.0\",\"dot\":\"1.1.3\",\"dotenv\":\"4.0.0\",\"email-prompt\":\"0.3.2\",\"email-validator\":\"1.1.1\",\"epipebomb\":\"1.0.0\",\"escape-html\":\"1.0.3\",\"esm\":\"3.1.4\",\"execa\":\"3.2.0\",\"express\":\"4.17.1\",\"fast-deep-equal\":\"3.1.3\",\"fs-extra\":\"10.0.0\",\"get-port\":\"5.1.1\",\"glob\":\"7.1.2\",\"http-proxy\":\"1.18.1\",\"inquirer\":\"7.0.4\",\"is-docker\":\"2.2.1\",\"is-port-reachable\":\"3.0.0\",\"is-url\":\"1.2.2\",\"jaro-winkler\":\"0.2.8\",\"jsonlines\":\"0.1.1\",\"load-json-file\":\"3.0.0\",\"mime-types\":\"2.1.24\",\"minimatch\":\"3.0.4\",\"mri\":\"1.1.5\",\"ms\":\"2.1.2\",\"node-fetch\":\"2.6.1\",\"npm-package-arg\":\"6.1.0\",\"open\":\"8.2.0\",\"ora\":\"3.4.0\",\"pcre-to-regexp\":\"1.0.0\",\"pluralize\":\"7.0.0\",\"progress\":\"2.0.3\",\"promisepipe\":\"3.0.0\",\"psl\":\"1.1.31\",\"qr-image\":\"3.2.0\",\"raw-body\":\"2.4.1\",\"rimraf\":\"3.0.2\",\"semver\":\"5.5.0\",\"serve-handler\":\"6.1.1\",\"strip-ansi\":\"5.2.0\",\"stripe\":\"5.1.0\",\"tar-fs\":\"1.16.3\",\"test-listen\":\"1.1.0\",\"text-table\":\"0.2.0\",\"title\":\"3.4.1\",\"tmp-promise\":\"1.0.3\",\"tree-kill\":\"1.2.2\",\"ts-eager\":\"2.0.2\",\"ts-node\":\"8.3.0\",\"typescript\":\"4.3.4\",\"universal-analytics\":\"0.4.20\",\"utility-types\":\"2.1.0\",\"which\":\"2.0.2\",\"write-json-file\":\"2.2.0\",\"xdg-app-paths\":\"5.1.0\"},\"jest\":{\"preset\":\"ts-jest\",\"globals\":{\"ts-jest\":{\"diagnostics\":false,\"isolatedModules\":true}},\"verbose\":false,\"testEnvironment\":\"node\",\"testMatch\":[\"<rootDir>/test/**/*.test.ts\"]},\"gitHead\":\"d31ebbabe4d9533d0e98137d76eb319b01ac8b13\"}");
|
271068
271117
|
|
271069
271118
|
/***/ }),
|
271070
271119
|
|
@@ -271080,7 +271129,7 @@ module.exports = JSON.parse("{\"VISA\":\"Visa\",\"MASTERCARD\":\"MasterCard\",\"
|
|
271080
271129
|
/***/ ((module) => {
|
271081
271130
|
|
271082
271131
|
"use strict";
|
271083
|
-
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.2.3-canary.
|
271132
|
+
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.2.3-canary.41\",\"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.40\",\"@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\":\"d31ebbabe4d9533d0e98137d76eb319b01ac8b13\"}");
|
271084
271133
|
|
271085
271134
|
/***/ }),
|
271086
271135
|
|
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.63",
|
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.40",
|
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.10-canary.0",
|
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.16",
|
53
|
+
"vercel-plugin-node": "1.12.2-canary.32"
|
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": "d31ebbabe4d9533d0e98137d76eb319b01ac8b13"
|
188
188
|
}
|