vercel 23.1.3-canary.55 → 23.1.3-canary.56
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 +122 -115
- package/package.json +5 -5
package/dist/index.js
CHANGED
@@ -217502,14 +217502,6 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
|
|
217502
217502
|
const handler = output.handler;
|
217503
217503
|
const handlerMethod = handler.split('.').reverse()[0];
|
217504
217504
|
const handlerFileName = handler.replace(`.${handlerMethod}`, '');
|
217505
|
-
pages[entrypoint] = {
|
217506
|
-
handler: handler,
|
217507
|
-
runtime: output.runtime,
|
217508
|
-
memory: output.memory,
|
217509
|
-
maxDuration: output.maxDuration,
|
217510
|
-
environment: output.environment,
|
217511
|
-
allowQuery: output.allowQuery,
|
217512
|
-
};
|
217513
217505
|
// @ts-ignore This symbol is a private API
|
217514
217506
|
const lambdaFiles = output[lambda_1.FILES_SYMBOL];
|
217515
217507
|
// When deploying, the `files` that are passed to the Legacy Runtimes already
|
@@ -217529,8 +217521,12 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
|
|
217529
217521
|
throw new Error(`Could not find a handler file. Please ensure that the list of \`files\` defined for the returned \`Lambda\` contains a file with the name ${handlerFileName} (+ any extension).`);
|
217530
217522
|
}
|
217531
217523
|
const entry = path_1.join(workPath, '.output', 'server', 'pages', entrypoint);
|
217524
|
+
// We never want to link here, only copy, because the launcher
|
217525
|
+
// file often has the same name for every entrypoint, which means that
|
217526
|
+
// every build for every entrypoint overwrites the launcher of the previous
|
217527
|
+
// one, so linking would end with a broken reference.
|
217532
217528
|
await fs_extra_1.default.ensureDir(path_1.dirname(entry));
|
217533
|
-
await
|
217529
|
+
await fs_extra_1.default.copy(handlerFileOrigin, entry);
|
217534
217530
|
const newFilesEntrypoint = [];
|
217535
217531
|
const newDirectoriesEntrypoint = [];
|
217536
217532
|
const preBuildFiles = Object.values(sourceFilesPreBuild).map(file => {
|
@@ -217636,6 +217632,17 @@ function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
|
|
217636
217632
|
...newFilesEntrypoint,
|
217637
217633
|
...newDirectoriesEntrypoint,
|
217638
217634
|
]);
|
217635
|
+
const apiRouteHandler = `${path_1.parse(entry).name}.${handlerMethod}`;
|
217636
|
+
// Add an entry that will later on be added to the `functions-manifest.json`
|
217637
|
+
// file that is placed inside of the `.output` directory.
|
217638
|
+
pages[entrypoint] = {
|
217639
|
+
handler: apiRouteHandler,
|
217640
|
+
runtime: output.runtime,
|
217641
|
+
memory: output.memory,
|
217642
|
+
maxDuration: output.maxDuration,
|
217643
|
+
environment: output.environment,
|
217644
|
+
allowQuery: output.allowQuery,
|
217645
|
+
};
|
217639
217646
|
}
|
217640
217647
|
// Instead of of waiting for all of the linking to be done for every
|
217641
217648
|
// entrypoint before processing the next one, we immediately handle all
|
@@ -217743,12 +217750,12 @@ exports.updateRoutesManifest = updateRoutesManifest;
|
|
217743
217750
|
/***/ }),
|
217744
217751
|
|
217745
217752
|
/***/ 1868:
|
217746
|
-
/***/ ((__unused_webpack_module, exports,
|
217753
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_935813__) => {
|
217747
217754
|
|
217748
217755
|
"use strict";
|
217749
217756
|
|
217750
217757
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
217751
|
-
const _1 =
|
217758
|
+
const _1 = __nested_webpack_require_935813__(2855);
|
217752
217759
|
function debug(message, ...additional) {
|
217753
217760
|
if (_1.getPlatformEnv('BUILDER_DEBUG')) {
|
217754
217761
|
console.log(message, ...additional);
|
@@ -217760,7 +217767,7 @@ exports.default = debug;
|
|
217760
217767
|
/***/ }),
|
217761
217768
|
|
217762
217769
|
/***/ 4246:
|
217763
|
-
/***/ (function(__unused_webpack_module, exports,
|
217770
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_936198__) {
|
217764
217771
|
|
217765
217772
|
"use strict";
|
217766
217773
|
|
@@ -217769,11 +217776,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
217769
217776
|
};
|
217770
217777
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
217771
217778
|
exports.detectBuilders = exports.detectOutputDirectory = exports.detectApiDirectory = exports.detectApiExtensions = exports.sortFiles = void 0;
|
217772
|
-
const minimatch_1 = __importDefault(
|
217773
|
-
const semver_1 =
|
217774
|
-
const path_1 =
|
217775
|
-
const frameworks_1 = __importDefault(
|
217776
|
-
const _1 =
|
217779
|
+
const minimatch_1 = __importDefault(__nested_webpack_require_936198__(9566));
|
217780
|
+
const semver_1 = __nested_webpack_require_936198__(2879);
|
217781
|
+
const path_1 = __nested_webpack_require_936198__(5622);
|
217782
|
+
const frameworks_1 = __importDefault(__nested_webpack_require_936198__(8438));
|
217783
|
+
const _1 = __nested_webpack_require_936198__(2855);
|
217777
217784
|
const slugToFramework = new Map(frameworks_1.default.map(f => [f.slug, f]));
|
217778
217785
|
// We need to sort the file paths by alphabet to make
|
217779
217786
|
// sure the routes stay in the same order e.g. for deduping
|
@@ -218832,7 +218839,7 @@ function getSuggestion(topLevelProp, additionalProperty) {
|
|
218832
218839
|
/***/ }),
|
218833
218840
|
|
218834
218841
|
/***/ 2397:
|
218835
|
-
/***/ (function(__unused_webpack_module, exports,
|
218842
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_975582__) {
|
218836
218843
|
|
218837
218844
|
"use strict";
|
218838
218845
|
|
@@ -218840,8 +218847,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218840
218847
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
218841
218848
|
};
|
218842
218849
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218843
|
-
const assert_1 = __importDefault(
|
218844
|
-
const into_stream_1 = __importDefault(
|
218850
|
+
const assert_1 = __importDefault(__nested_webpack_require_975582__(2357));
|
218851
|
+
const into_stream_1 = __importDefault(__nested_webpack_require_975582__(6130));
|
218845
218852
|
class FileBlob {
|
218846
218853
|
constructor({ mode = 0o100644, contentType, data }) {
|
218847
218854
|
assert_1.default(typeof mode === 'number');
|
@@ -218873,7 +218880,7 @@ exports.default = FileBlob;
|
|
218873
218880
|
/***/ }),
|
218874
218881
|
|
218875
218882
|
/***/ 9331:
|
218876
|
-
/***/ (function(__unused_webpack_module, exports,
|
218883
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_977034__) {
|
218877
218884
|
|
218878
218885
|
"use strict";
|
218879
218886
|
|
@@ -218881,11 +218888,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218881
218888
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
218882
218889
|
};
|
218883
218890
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218884
|
-
const assert_1 = __importDefault(
|
218885
|
-
const fs_extra_1 = __importDefault(
|
218886
|
-
const multistream_1 = __importDefault(
|
218887
|
-
const path_1 = __importDefault(
|
218888
|
-
const async_sema_1 = __importDefault(
|
218891
|
+
const assert_1 = __importDefault(__nested_webpack_require_977034__(2357));
|
218892
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_977034__(5392));
|
218893
|
+
const multistream_1 = __importDefault(__nested_webpack_require_977034__(8179));
|
218894
|
+
const path_1 = __importDefault(__nested_webpack_require_977034__(5622));
|
218895
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_977034__(5758));
|
218889
218896
|
const semaToPreventEMFILE = new async_sema_1.default(20);
|
218890
218897
|
class FileFsRef {
|
218891
218898
|
constructor({ mode = 0o100644, contentType, fsPath }) {
|
@@ -218951,7 +218958,7 @@ exports.default = FileFsRef;
|
|
218951
218958
|
/***/ }),
|
218952
218959
|
|
218953
218960
|
/***/ 5187:
|
218954
|
-
/***/ (function(__unused_webpack_module, exports,
|
218961
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_979838__) {
|
218955
218962
|
|
218956
218963
|
"use strict";
|
218957
218964
|
|
@@ -218959,11 +218966,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218959
218966
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
218960
218967
|
};
|
218961
218968
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218962
|
-
const assert_1 = __importDefault(
|
218963
|
-
const node_fetch_1 = __importDefault(
|
218964
|
-
const multistream_1 = __importDefault(
|
218965
|
-
const async_retry_1 = __importDefault(
|
218966
|
-
const async_sema_1 = __importDefault(
|
218969
|
+
const assert_1 = __importDefault(__nested_webpack_require_979838__(2357));
|
218970
|
+
const node_fetch_1 = __importDefault(__nested_webpack_require_979838__(2197));
|
218971
|
+
const multistream_1 = __importDefault(__nested_webpack_require_979838__(8179));
|
218972
|
+
const async_retry_1 = __importDefault(__nested_webpack_require_979838__(3691));
|
218973
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_979838__(5758));
|
218967
218974
|
const semaToDownloadFromS3 = new async_sema_1.default(5);
|
218968
218975
|
class BailableError extends Error {
|
218969
218976
|
constructor(...args) {
|
@@ -219044,7 +219051,7 @@ exports.default = FileRef;
|
|
219044
219051
|
/***/ }),
|
219045
219052
|
|
219046
219053
|
/***/ 1611:
|
219047
|
-
/***/ (function(__unused_webpack_module, exports,
|
219054
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_983239__) {
|
219048
219055
|
|
219049
219056
|
"use strict";
|
219050
219057
|
|
@@ -219053,10 +219060,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219053
219060
|
};
|
219054
219061
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219055
219062
|
exports.isSymbolicLink = void 0;
|
219056
|
-
const path_1 = __importDefault(
|
219057
|
-
const debug_1 = __importDefault(
|
219058
|
-
const file_fs_ref_1 = __importDefault(
|
219059
|
-
const fs_extra_1 =
|
219063
|
+
const path_1 = __importDefault(__nested_webpack_require_983239__(5622));
|
219064
|
+
const debug_1 = __importDefault(__nested_webpack_require_983239__(1868));
|
219065
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_983239__(9331));
|
219066
|
+
const fs_extra_1 = __nested_webpack_require_983239__(5392);
|
219060
219067
|
const S_IFMT = 61440; /* 0170000 type of file */
|
219061
219068
|
const S_IFLNK = 40960; /* 0120000 symbolic link */
|
219062
219069
|
function isSymbolicLink(mode) {
|
@@ -219118,14 +219125,14 @@ exports.default = download;
|
|
219118
219125
|
/***/ }),
|
219119
219126
|
|
219120
219127
|
/***/ 3838:
|
219121
|
-
/***/ ((__unused_webpack_module, exports,
|
219128
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_986064__) => {
|
219122
219129
|
|
219123
219130
|
"use strict";
|
219124
219131
|
|
219125
219132
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219126
|
-
const path_1 =
|
219127
|
-
const os_1 =
|
219128
|
-
const fs_extra_1 =
|
219133
|
+
const path_1 = __nested_webpack_require_986064__(5622);
|
219134
|
+
const os_1 = __nested_webpack_require_986064__(2087);
|
219135
|
+
const fs_extra_1 = __nested_webpack_require_986064__(5392);
|
219129
219136
|
async function getWritableDirectory() {
|
219130
219137
|
const name = Math.floor(Math.random() * 0x7fffffff).toString(16);
|
219131
219138
|
const directory = path_1.join(os_1.tmpdir(), name);
|
@@ -219138,7 +219145,7 @@ exports.default = getWritableDirectory;
|
|
219138
219145
|
/***/ }),
|
219139
219146
|
|
219140
219147
|
/***/ 4240:
|
219141
|
-
/***/ (function(__unused_webpack_module, exports,
|
219148
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_986644__) {
|
219142
219149
|
|
219143
219150
|
"use strict";
|
219144
219151
|
|
@@ -219146,13 +219153,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219146
219153
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
219147
219154
|
};
|
219148
219155
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219149
|
-
const path_1 = __importDefault(
|
219150
|
-
const assert_1 = __importDefault(
|
219151
|
-
const glob_1 = __importDefault(
|
219152
|
-
const util_1 =
|
219153
|
-
const fs_extra_1 =
|
219154
|
-
const normalize_path_1 =
|
219155
|
-
const file_fs_ref_1 = __importDefault(
|
219156
|
+
const path_1 = __importDefault(__nested_webpack_require_986644__(5622));
|
219157
|
+
const assert_1 = __importDefault(__nested_webpack_require_986644__(2357));
|
219158
|
+
const glob_1 = __importDefault(__nested_webpack_require_986644__(1104));
|
219159
|
+
const util_1 = __nested_webpack_require_986644__(1669);
|
219160
|
+
const fs_extra_1 = __nested_webpack_require_986644__(5392);
|
219161
|
+
const normalize_path_1 = __nested_webpack_require_986644__(6261);
|
219162
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_986644__(9331));
|
219156
219163
|
const vanillaGlob = util_1.promisify(glob_1.default);
|
219157
219164
|
async function glob(pattern, opts, mountpoint) {
|
219158
219165
|
let options;
|
@@ -219198,7 +219205,7 @@ exports.default = glob;
|
|
219198
219205
|
/***/ }),
|
219199
219206
|
|
219200
219207
|
/***/ 7903:
|
219201
|
-
/***/ (function(__unused_webpack_module, exports,
|
219208
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_988840__) {
|
219202
219209
|
|
219203
219210
|
"use strict";
|
219204
219211
|
|
@@ -219207,9 +219214,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219207
219214
|
};
|
219208
219215
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219209
219216
|
exports.getSupportedNodeVersion = exports.getDiscontinuedNodeVersions = exports.getLatestNodeVersion = void 0;
|
219210
|
-
const semver_1 =
|
219211
|
-
const errors_1 =
|
219212
|
-
const debug_1 = __importDefault(
|
219217
|
+
const semver_1 = __nested_webpack_require_988840__(2879);
|
219218
|
+
const errors_1 = __nested_webpack_require_988840__(3983);
|
219219
|
+
const debug_1 = __importDefault(__nested_webpack_require_988840__(1868));
|
219213
219220
|
const allOptions = [
|
219214
219221
|
{ major: 14, range: '14.x', runtime: 'nodejs14.x' },
|
219215
219222
|
{ major: 12, range: '12.x', runtime: 'nodejs12.x' },
|
@@ -219303,7 +219310,7 @@ exports.normalizePath = normalizePath;
|
|
219303
219310
|
/***/ }),
|
219304
219311
|
|
219305
219312
|
/***/ 7792:
|
219306
|
-
/***/ (function(__unused_webpack_module, exports,
|
219313
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_992708__) {
|
219307
219314
|
|
219308
219315
|
"use strict";
|
219309
219316
|
|
@@ -219312,9 +219319,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219312
219319
|
};
|
219313
219320
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219314
219321
|
exports.readConfigFile = void 0;
|
219315
|
-
const js_yaml_1 = __importDefault(
|
219316
|
-
const toml_1 = __importDefault(
|
219317
|
-
const fs_extra_1 =
|
219322
|
+
const js_yaml_1 = __importDefault(__nested_webpack_require_992708__(6540));
|
219323
|
+
const toml_1 = __importDefault(__nested_webpack_require_992708__(9434));
|
219324
|
+
const fs_extra_1 = __nested_webpack_require_992708__(5392);
|
219318
219325
|
async function readFileOrNull(file) {
|
219319
219326
|
try {
|
219320
219327
|
const data = await fs_extra_1.readFile(file);
|
@@ -219369,7 +219376,7 @@ exports.default = rename;
|
|
219369
219376
|
/***/ }),
|
219370
219377
|
|
219371
219378
|
/***/ 1442:
|
219372
|
-
/***/ (function(__unused_webpack_module, exports,
|
219379
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_994501__) {
|
219373
219380
|
|
219374
219381
|
"use strict";
|
219375
219382
|
|
@@ -219378,14 +219385,14 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219378
219385
|
};
|
219379
219386
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219380
219387
|
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;
|
219381
|
-
const assert_1 = __importDefault(
|
219382
|
-
const fs_extra_1 = __importDefault(
|
219383
|
-
const path_1 = __importDefault(
|
219384
|
-
const debug_1 = __importDefault(
|
219385
|
-
const cross_spawn_1 = __importDefault(
|
219386
|
-
const util_1 =
|
219387
|
-
const errors_1 =
|
219388
|
-
const node_version_1 =
|
219388
|
+
const assert_1 = __importDefault(__nested_webpack_require_994501__(2357));
|
219389
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_994501__(5392));
|
219390
|
+
const path_1 = __importDefault(__nested_webpack_require_994501__(5622));
|
219391
|
+
const debug_1 = __importDefault(__nested_webpack_require_994501__(1868));
|
219392
|
+
const cross_spawn_1 = __importDefault(__nested_webpack_require_994501__(7618));
|
219393
|
+
const util_1 = __nested_webpack_require_994501__(1669);
|
219394
|
+
const errors_1 = __nested_webpack_require_994501__(3983);
|
219395
|
+
const node_version_1 = __nested_webpack_require_994501__(7903);
|
219389
219396
|
function spawnAsync(command, args, opts = {}) {
|
219390
219397
|
return new Promise((resolve, reject) => {
|
219391
219398
|
const stderrLogs = [];
|
@@ -219696,7 +219703,7 @@ exports.installDependencies = util_1.deprecate(runNpmInstall, 'installDependenci
|
|
219696
219703
|
/***/ }),
|
219697
219704
|
|
219698
219705
|
/***/ 2560:
|
219699
|
-
/***/ (function(__unused_webpack_module, exports,
|
219706
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1008491__) {
|
219700
219707
|
|
219701
219708
|
"use strict";
|
219702
219709
|
|
@@ -219704,7 +219711,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219704
219711
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
219705
219712
|
};
|
219706
219713
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219707
|
-
const end_of_stream_1 = __importDefault(
|
219714
|
+
const end_of_stream_1 = __importDefault(__nested_webpack_require_1008491__(687));
|
219708
219715
|
function streamToBuffer(stream) {
|
219709
219716
|
return new Promise((resolve, reject) => {
|
219710
219717
|
const buffers = [];
|
@@ -219733,7 +219740,7 @@ exports.default = streamToBuffer;
|
|
219733
219740
|
/***/ }),
|
219734
219741
|
|
219735
219742
|
/***/ 1148:
|
219736
|
-
/***/ (function(__unused_webpack_module, exports,
|
219743
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1009559__) {
|
219737
219744
|
|
219738
219745
|
"use strict";
|
219739
219746
|
|
@@ -219741,9 +219748,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219741
219748
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
219742
219749
|
};
|
219743
219750
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219744
|
-
const path_1 = __importDefault(
|
219745
|
-
const fs_extra_1 = __importDefault(
|
219746
|
-
const ignore_1 = __importDefault(
|
219751
|
+
const path_1 = __importDefault(__nested_webpack_require_1009559__(5622));
|
219752
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_1009559__(5392));
|
219753
|
+
const ignore_1 = __importDefault(__nested_webpack_require_1009559__(3556));
|
219747
219754
|
function isCodedError(error) {
|
219748
219755
|
return (error !== null &&
|
219749
219756
|
error !== undefined &&
|
@@ -219800,7 +219807,7 @@ exports.default = default_1;
|
|
219800
219807
|
/***/ }),
|
219801
219808
|
|
219802
219809
|
/***/ 2855:
|
219803
|
-
/***/ (function(__unused_webpack_module, exports,
|
219810
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1011941__) {
|
219804
219811
|
|
219805
219812
|
"use strict";
|
219806
219813
|
|
@@ -219831,29 +219838,29 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219831
219838
|
};
|
219832
219839
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219833
219840
|
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;
|
219834
|
-
const crypto_1 =
|
219835
|
-
const file_blob_1 = __importDefault(
|
219841
|
+
const crypto_1 = __nested_webpack_require_1011941__(6417);
|
219842
|
+
const file_blob_1 = __importDefault(__nested_webpack_require_1011941__(2397));
|
219836
219843
|
exports.FileBlob = file_blob_1.default;
|
219837
|
-
const file_fs_ref_1 = __importDefault(
|
219844
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_1011941__(9331));
|
219838
219845
|
exports.FileFsRef = file_fs_ref_1.default;
|
219839
|
-
const file_ref_1 = __importDefault(
|
219846
|
+
const file_ref_1 = __importDefault(__nested_webpack_require_1011941__(5187));
|
219840
219847
|
exports.FileRef = file_ref_1.default;
|
219841
|
-
const lambda_1 =
|
219848
|
+
const lambda_1 = __nested_webpack_require_1011941__(6721);
|
219842
219849
|
Object.defineProperty(exports, "Lambda", ({ enumerable: true, get: function () { return lambda_1.Lambda; } }));
|
219843
219850
|
Object.defineProperty(exports, "createLambda", ({ enumerable: true, get: function () { return lambda_1.createLambda; } }));
|
219844
219851
|
Object.defineProperty(exports, "getLambdaOptionsFromFunction", ({ enumerable: true, get: function () { return lambda_1.getLambdaOptionsFromFunction; } }));
|
219845
|
-
const prerender_1 =
|
219852
|
+
const prerender_1 = __nested_webpack_require_1011941__(2850);
|
219846
219853
|
Object.defineProperty(exports, "Prerender", ({ enumerable: true, get: function () { return prerender_1.Prerender; } }));
|
219847
|
-
const download_1 = __importStar(
|
219854
|
+
const download_1 = __importStar(__nested_webpack_require_1011941__(1611));
|
219848
219855
|
exports.download = download_1.default;
|
219849
219856
|
Object.defineProperty(exports, "isSymbolicLink", ({ enumerable: true, get: function () { return download_1.isSymbolicLink; } }));
|
219850
|
-
const get_writable_directory_1 = __importDefault(
|
219857
|
+
const get_writable_directory_1 = __importDefault(__nested_webpack_require_1011941__(3838));
|
219851
219858
|
exports.getWriteableDirectory = get_writable_directory_1.default;
|
219852
|
-
const glob_1 = __importDefault(
|
219859
|
+
const glob_1 = __importDefault(__nested_webpack_require_1011941__(4240));
|
219853
219860
|
exports.glob = glob_1.default;
|
219854
|
-
const rename_1 = __importDefault(
|
219861
|
+
const rename_1 = __importDefault(__nested_webpack_require_1011941__(6718));
|
219855
219862
|
exports.rename = rename_1.default;
|
219856
|
-
const run_user_scripts_1 =
|
219863
|
+
const run_user_scripts_1 = __nested_webpack_require_1011941__(1442);
|
219857
219864
|
Object.defineProperty(exports, "execAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.execAsync; } }));
|
219858
219865
|
Object.defineProperty(exports, "spawnAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.spawnAsync; } }));
|
219859
219866
|
Object.defineProperty(exports, "execCommand", ({ enumerable: true, get: function () { return run_user_scripts_1.execCommand; } }));
|
@@ -219870,38 +219877,38 @@ Object.defineProperty(exports, "getNodeVersion", ({ enumerable: true, get: funct
|
|
219870
219877
|
Object.defineProperty(exports, "getSpawnOptions", ({ enumerable: true, get: function () { return run_user_scripts_1.getSpawnOptions; } }));
|
219871
219878
|
Object.defineProperty(exports, "getNodeBinPath", ({ enumerable: true, get: function () { return run_user_scripts_1.getNodeBinPath; } }));
|
219872
219879
|
Object.defineProperty(exports, "scanParentDirs", ({ enumerable: true, get: function () { return run_user_scripts_1.scanParentDirs; } }));
|
219873
|
-
const node_version_1 =
|
219880
|
+
const node_version_1 = __nested_webpack_require_1011941__(7903);
|
219874
219881
|
Object.defineProperty(exports, "getLatestNodeVersion", ({ enumerable: true, get: function () { return node_version_1.getLatestNodeVersion; } }));
|
219875
219882
|
Object.defineProperty(exports, "getDiscontinuedNodeVersions", ({ enumerable: true, get: function () { return node_version_1.getDiscontinuedNodeVersions; } }));
|
219876
|
-
const errors_1 =
|
219877
|
-
const stream_to_buffer_1 = __importDefault(
|
219883
|
+
const errors_1 = __nested_webpack_require_1011941__(3983);
|
219884
|
+
const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1011941__(2560));
|
219878
219885
|
exports.streamToBuffer = stream_to_buffer_1.default;
|
219879
|
-
const should_serve_1 = __importDefault(
|
219886
|
+
const should_serve_1 = __importDefault(__nested_webpack_require_1011941__(2564));
|
219880
219887
|
exports.shouldServe = should_serve_1.default;
|
219881
|
-
const debug_1 = __importDefault(
|
219888
|
+
const debug_1 = __importDefault(__nested_webpack_require_1011941__(1868));
|
219882
219889
|
exports.debug = debug_1.default;
|
219883
|
-
const get_ignore_filter_1 = __importDefault(
|
219890
|
+
const get_ignore_filter_1 = __importDefault(__nested_webpack_require_1011941__(1148));
|
219884
219891
|
exports.getIgnoreFilter = get_ignore_filter_1.default;
|
219885
|
-
var detect_builders_1 =
|
219892
|
+
var detect_builders_1 = __nested_webpack_require_1011941__(4246);
|
219886
219893
|
Object.defineProperty(exports, "detectBuilders", ({ enumerable: true, get: function () { return detect_builders_1.detectBuilders; } }));
|
219887
219894
|
Object.defineProperty(exports, "detectOutputDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectOutputDirectory; } }));
|
219888
219895
|
Object.defineProperty(exports, "detectApiDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectApiDirectory; } }));
|
219889
219896
|
Object.defineProperty(exports, "detectApiExtensions", ({ enumerable: true, get: function () { return detect_builders_1.detectApiExtensions; } }));
|
219890
|
-
var detect_framework_1 =
|
219897
|
+
var detect_framework_1 = __nested_webpack_require_1011941__(5224);
|
219891
219898
|
Object.defineProperty(exports, "detectFramework", ({ enumerable: true, get: function () { return detect_framework_1.detectFramework; } }));
|
219892
|
-
var filesystem_1 =
|
219899
|
+
var filesystem_1 = __nested_webpack_require_1011941__(461);
|
219893
219900
|
Object.defineProperty(exports, "DetectorFilesystem", ({ enumerable: true, get: function () { return filesystem_1.DetectorFilesystem; } }));
|
219894
|
-
var read_config_file_1 =
|
219901
|
+
var read_config_file_1 = __nested_webpack_require_1011941__(7792);
|
219895
219902
|
Object.defineProperty(exports, "readConfigFile", ({ enumerable: true, get: function () { return read_config_file_1.readConfigFile; } }));
|
219896
|
-
var normalize_path_1 =
|
219903
|
+
var normalize_path_1 = __nested_webpack_require_1011941__(6261);
|
219897
219904
|
Object.defineProperty(exports, "normalizePath", ({ enumerable: true, get: function () { return normalize_path_1.normalizePath; } }));
|
219898
|
-
var convert_runtime_to_plugin_1 =
|
219905
|
+
var convert_runtime_to_plugin_1 = __nested_webpack_require_1011941__(7276);
|
219899
219906
|
Object.defineProperty(exports, "convertRuntimeToPlugin", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.convertRuntimeToPlugin; } }));
|
219900
219907
|
Object.defineProperty(exports, "updateFunctionsManifest", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.updateFunctionsManifest; } }));
|
219901
219908
|
Object.defineProperty(exports, "updateRoutesManifest", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.updateRoutesManifest; } }));
|
219902
|
-
__exportStar(
|
219903
|
-
__exportStar(
|
219904
|
-
__exportStar(
|
219909
|
+
__exportStar(__nested_webpack_require_1011941__(2416), exports);
|
219910
|
+
__exportStar(__nested_webpack_require_1011941__(5748), exports);
|
219911
|
+
__exportStar(__nested_webpack_require_1011941__(3983), exports);
|
219905
219912
|
/**
|
219906
219913
|
* Helper function to support both `@vercel` and legacy `@now` official Runtimes.
|
219907
219914
|
*/
|
@@ -219954,7 +219961,7 @@ exports.getInputHash = getInputHash;
|
|
219954
219961
|
/***/ }),
|
219955
219962
|
|
219956
219963
|
/***/ 6721:
|
219957
|
-
/***/ (function(__unused_webpack_module, exports,
|
219964
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1022919__) {
|
219958
219965
|
|
219959
219966
|
"use strict";
|
219960
219967
|
|
@@ -219963,13 +219970,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219963
219970
|
};
|
219964
219971
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219965
219972
|
exports.getLambdaOptionsFromFunction = exports.createZip = exports.createLambda = exports.Lambda = exports.FILES_SYMBOL = void 0;
|
219966
|
-
const assert_1 = __importDefault(
|
219967
|
-
const async_sema_1 = __importDefault(
|
219968
|
-
const yazl_1 =
|
219969
|
-
const minimatch_1 = __importDefault(
|
219970
|
-
const fs_extra_1 =
|
219971
|
-
const download_1 =
|
219972
|
-
const stream_to_buffer_1 = __importDefault(
|
219973
|
+
const assert_1 = __importDefault(__nested_webpack_require_1022919__(2357));
|
219974
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_1022919__(5758));
|
219975
|
+
const yazl_1 = __nested_webpack_require_1022919__(1223);
|
219976
|
+
const minimatch_1 = __importDefault(__nested_webpack_require_1022919__(9566));
|
219977
|
+
const fs_extra_1 = __nested_webpack_require_1022919__(5392);
|
219978
|
+
const download_1 = __nested_webpack_require_1022919__(1611);
|
219979
|
+
const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1022919__(2560));
|
219973
219980
|
exports.FILES_SYMBOL = Symbol('files');
|
219974
219981
|
class Lambda {
|
219975
219982
|
constructor({ zipBuffer, handler, runtime, maxDuration, memory, environment, allowQuery, regions, }) {
|
@@ -220198,12 +220205,12 @@ exports.buildsSchema = {
|
|
220198
220205
|
/***/ }),
|
220199
220206
|
|
220200
220207
|
/***/ 2564:
|
220201
|
-
/***/ ((__unused_webpack_module, exports,
|
220208
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_1031429__) => {
|
220202
220209
|
|
220203
220210
|
"use strict";
|
220204
220211
|
|
220205
220212
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
220206
|
-
const path_1 =
|
220213
|
+
const path_1 = __nested_webpack_require_1031429__(5622);
|
220207
220214
|
function shouldServe({ entrypoint, files, requestPath, }) {
|
220208
220215
|
requestPath = requestPath.replace(/\/$/, ''); // sanitize trailing '/'
|
220209
220216
|
entrypoint = entrypoint.replace(/\\/, '/'); // windows compatibility
|
@@ -220440,7 +220447,7 @@ module.exports = __webpack_require__(78761);
|
|
220440
220447
|
/******/ var __webpack_module_cache__ = {};
|
220441
220448
|
/******/
|
220442
220449
|
/******/ // The require function
|
220443
|
-
/******/ function
|
220450
|
+
/******/ function __nested_webpack_require_1131164__(moduleId) {
|
220444
220451
|
/******/ // Check if module is in cache
|
220445
220452
|
/******/ if(__webpack_module_cache__[moduleId]) {
|
220446
220453
|
/******/ return __webpack_module_cache__[moduleId].exports;
|
@@ -220455,7 +220462,7 @@ module.exports = __webpack_require__(78761);
|
|
220455
220462
|
/******/ // Execute the module function
|
220456
220463
|
/******/ var threw = true;
|
220457
220464
|
/******/ try {
|
220458
|
-
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports,
|
220465
|
+
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __nested_webpack_require_1131164__);
|
220459
220466
|
/******/ threw = false;
|
220460
220467
|
/******/ } finally {
|
220461
220468
|
/******/ if(threw) delete __webpack_module_cache__[moduleId];
|
@@ -220468,11 +220475,11 @@ module.exports = __webpack_require__(78761);
|
|
220468
220475
|
/************************************************************************/
|
220469
220476
|
/******/ /* webpack/runtime/compat */
|
220470
220477
|
/******/
|
220471
|
-
/******/
|
220478
|
+
/******/ __nested_webpack_require_1131164__.ab = __dirname + "/";/************************************************************************/
|
220472
220479
|
/******/ // module exports must be returned from runtime so entry inlining is disabled
|
220473
220480
|
/******/ // startup
|
220474
220481
|
/******/ // Load entry module and return exports
|
220475
|
-
/******/ return
|
220482
|
+
/******/ return __nested_webpack_require_1131164__(2855);
|
220476
220483
|
/******/ })()
|
220477
220484
|
;
|
220478
220485
|
|
@@ -271304,7 +271311,7 @@ module.exports = JSON.parse("[\"ac\",\"com.ac\",\"edu.ac\",\"gov.ac\",\"net.ac\"
|
|
271304
271311
|
/***/ ((module) => {
|
271305
271312
|
|
271306
271313
|
"use strict";
|
271307
|
-
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"23.1.3-canary.
|
271314
|
+
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"23.1.3-canary.56\",\"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.34\",\"@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.10\",\"vercel-plugin-node\":\"1.12.2-canary.26\"},\"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\":\"34f4222ca2d3cc5134469daa355a7f67c2054c9b\"}");
|
271308
271315
|
|
271309
271316
|
/***/ }),
|
271310
271317
|
|
@@ -271320,7 +271327,7 @@ module.exports = JSON.parse("{\"VISA\":\"Visa\",\"MASTERCARD\":\"MasterCard\",\"
|
|
271320
271327
|
/***/ ((module) => {
|
271321
271328
|
|
271322
271329
|
"use strict";
|
271323
|
-
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.2.3-canary.
|
271330
|
+
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.2.3-canary.35\",\"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.34\",\"@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\":\"34f4222ca2d3cc5134469daa355a7f67c2054c9b\"}");
|
271324
271331
|
|
271325
271332
|
/***/ }),
|
271326
271333
|
|
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.56",
|
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.34",
|
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.10",
|
53
|
+
"vercel-plugin-node": "1.12.2-canary.26"
|
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": "34f4222ca2d3cc5134469daa355a7f67c2054c9b"
|
188
188
|
}
|