vercel 28.4.6 → 28.4.8
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/README.md +2 -4
- package/dist/index.js +165 -101
- package/package.json +14 -14
package/README.md
CHANGED
@@ -10,11 +10,9 @@
|
|
10
10
|
|
11
11
|
## Usage
|
12
12
|
|
13
|
-
Vercel is
|
13
|
+
Vercel is the platform for frontend developers, providing the speed and reliability innovators need to create at the moment of inspiration.
|
14
14
|
|
15
|
-
We
|
16
|
-
|
17
|
-
We make it easy for frontend teams to **develop, preview, and ship** delightful user experiences, where performance is the default.
|
15
|
+
We enable teams to iterate quickly and develop, preview, and ship delightful user experiences. Vercel has zero-configuration support for 35+ frontend frameworks and integrates with your headless content, commerce, or database of choice.
|
18
16
|
|
19
17
|
To install the latest version of Vercel CLI, run this command:
|
20
18
|
|
package/dist/index.js
CHANGED
@@ -189601,7 +189601,8 @@ const fs_extra_1 = __importDefault(__nested_webpack_require_840528__(5392));
|
|
189601
189601
|
const multistream_1 = __importDefault(__nested_webpack_require_840528__(8179));
|
189602
189602
|
const path_1 = __importDefault(__nested_webpack_require_840528__(5622));
|
189603
189603
|
const async_sema_1 = __importDefault(__nested_webpack_require_840528__(5758));
|
189604
|
-
const
|
189604
|
+
const DEFAULT_SEMA = 20;
|
189605
|
+
const semaToPreventEMFILE = new async_sema_1.default(parseInt(process.env.VERCEL_INTERNAL_FILE_FS_REF_SEMA || String(DEFAULT_SEMA), 10) || DEFAULT_SEMA);
|
189605
189606
|
class FileFsRef {
|
189606
189607
|
constructor({ mode = 0o100644, contentType, fsPath }) {
|
189607
189608
|
assert_1.default(typeof mode === 'number');
|
@@ -189666,7 +189667,7 @@ exports.default = FileFsRef;
|
|
189666
189667
|
/***/ }),
|
189667
189668
|
|
189668
189669
|
/***/ 5187:
|
189669
|
-
/***/ (function(__unused_webpack_module, exports,
|
189670
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_843453__) {
|
189670
189671
|
|
189671
189672
|
"use strict";
|
189672
189673
|
|
@@ -189674,12 +189675,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
189674
189675
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
189675
189676
|
};
|
189676
189677
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
189677
|
-
const assert_1 = __importDefault(
|
189678
|
-
const node_fetch_1 = __importDefault(
|
189679
|
-
const multistream_1 = __importDefault(
|
189680
|
-
const async_retry_1 = __importDefault(
|
189681
|
-
const async_sema_1 = __importDefault(
|
189682
|
-
const
|
189678
|
+
const assert_1 = __importDefault(__nested_webpack_require_843453__(2357));
|
189679
|
+
const node_fetch_1 = __importDefault(__nested_webpack_require_843453__(2197));
|
189680
|
+
const multistream_1 = __importDefault(__nested_webpack_require_843453__(8179));
|
189681
|
+
const async_retry_1 = __importDefault(__nested_webpack_require_843453__(3691));
|
189682
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_843453__(5758));
|
189683
|
+
const DEFAULT_SEMA = 5;
|
189684
|
+
const semaToDownloadFromS3 = new async_sema_1.default(parseInt(process.env.VERCEL_INTERNAL_FILE_REF_SEMA || String(DEFAULT_SEMA), 10) || DEFAULT_SEMA);
|
189683
189685
|
class BailableError extends Error {
|
189684
189686
|
constructor(...args) {
|
189685
189687
|
super(...args);
|
@@ -189759,7 +189761,7 @@ exports.default = FileRef;
|
|
189759
189761
|
/***/ }),
|
189760
189762
|
|
189761
189763
|
/***/ 1611:
|
189762
|
-
/***/ (function(__unused_webpack_module, exports,
|
189764
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_846972__) {
|
189763
189765
|
|
189764
189766
|
"use strict";
|
189765
189767
|
|
@@ -189768,11 +189770,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
189768
189770
|
};
|
189769
189771
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
189770
189772
|
exports.downloadFile = exports.isSymbolicLink = void 0;
|
189771
|
-
const path_1 = __importDefault(
|
189772
|
-
const debug_1 = __importDefault(
|
189773
|
-
const file_fs_ref_1 = __importDefault(
|
189774
|
-
const fs_extra_1 =
|
189775
|
-
const stream_to_buffer_1 = __importDefault(
|
189773
|
+
const path_1 = __importDefault(__nested_webpack_require_846972__(5622));
|
189774
|
+
const debug_1 = __importDefault(__nested_webpack_require_846972__(1868));
|
189775
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_846972__(9331));
|
189776
|
+
const fs_extra_1 = __nested_webpack_require_846972__(5392);
|
189777
|
+
const stream_to_buffer_1 = __importDefault(__nested_webpack_require_846972__(2560));
|
189776
189778
|
const S_IFMT = 61440; /* 0170000 type of file */
|
189777
189779
|
const S_IFLNK = 40960; /* 0120000 symbolic link */
|
189778
189780
|
function isSymbolicLink(mode) {
|
@@ -189863,14 +189865,14 @@ exports.default = download;
|
|
189863
189865
|
/***/ }),
|
189864
189866
|
|
189865
189867
|
/***/ 3838:
|
189866
|
-
/***/ ((__unused_webpack_module, exports,
|
189868
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_851407__) => {
|
189867
189869
|
|
189868
189870
|
"use strict";
|
189869
189871
|
|
189870
189872
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
189871
|
-
const path_1 =
|
189872
|
-
const os_1 =
|
189873
|
-
const fs_extra_1 =
|
189873
|
+
const path_1 = __nested_webpack_require_851407__(5622);
|
189874
|
+
const os_1 = __nested_webpack_require_851407__(2087);
|
189875
|
+
const fs_extra_1 = __nested_webpack_require_851407__(5392);
|
189874
189876
|
async function getWritableDirectory() {
|
189875
189877
|
const name = Math.floor(Math.random() * 0x7fffffff).toString(16);
|
189876
189878
|
const directory = path_1.join(os_1.tmpdir(), name);
|
@@ -189883,7 +189885,7 @@ exports.default = getWritableDirectory;
|
|
189883
189885
|
/***/ }),
|
189884
189886
|
|
189885
189887
|
/***/ 4240:
|
189886
|
-
/***/ (function(__unused_webpack_module, exports,
|
189888
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_851987__) {
|
189887
189889
|
|
189888
189890
|
"use strict";
|
189889
189891
|
|
@@ -189891,13 +189893,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
189891
189893
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
189892
189894
|
};
|
189893
189895
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
189894
|
-
const path_1 = __importDefault(
|
189895
|
-
const assert_1 = __importDefault(
|
189896
|
-
const glob_1 = __importDefault(
|
189897
|
-
const util_1 =
|
189898
|
-
const fs_extra_1 =
|
189899
|
-
const normalize_path_1 =
|
189900
|
-
const file_fs_ref_1 = __importDefault(
|
189896
|
+
const path_1 = __importDefault(__nested_webpack_require_851987__(5622));
|
189897
|
+
const assert_1 = __importDefault(__nested_webpack_require_851987__(2357));
|
189898
|
+
const glob_1 = __importDefault(__nested_webpack_require_851987__(1104));
|
189899
|
+
const util_1 = __nested_webpack_require_851987__(1669);
|
189900
|
+
const fs_extra_1 = __nested_webpack_require_851987__(5392);
|
189901
|
+
const normalize_path_1 = __nested_webpack_require_851987__(6261);
|
189902
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_851987__(9331));
|
189901
189903
|
const vanillaGlob = util_1.promisify(glob_1.default);
|
189902
189904
|
async function glob(pattern, opts, mountpoint) {
|
189903
189905
|
let options;
|
@@ -189944,7 +189946,7 @@ exports.default = glob;
|
|
189944
189946
|
/***/ }),
|
189945
189947
|
|
189946
189948
|
/***/ 7903:
|
189947
|
-
/***/ (function(__unused_webpack_module, exports,
|
189949
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_854208__) {
|
189948
189950
|
|
189949
189951
|
"use strict";
|
189950
189952
|
|
@@ -189953,9 +189955,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
189953
189955
|
};
|
189954
189956
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
189955
189957
|
exports.getSupportedNodeVersion = exports.getDiscontinuedNodeVersions = exports.getLatestNodeVersion = void 0;
|
189956
|
-
const semver_1 =
|
189957
|
-
const errors_1 =
|
189958
|
-
const debug_1 = __importDefault(
|
189958
|
+
const semver_1 = __nested_webpack_require_854208__(2879);
|
189959
|
+
const errors_1 = __nested_webpack_require_854208__(3983);
|
189960
|
+
const debug_1 = __importDefault(__nested_webpack_require_854208__(1868));
|
189959
189961
|
const allOptions = [
|
189960
189962
|
{ major: 16, range: '16.x', runtime: 'nodejs16.x' },
|
189961
189963
|
{ major: 14, range: '14.x', runtime: 'nodejs14.x' },
|
@@ -190054,7 +190056,7 @@ exports.normalizePath = normalizePath;
|
|
190054
190056
|
/***/ }),
|
190055
190057
|
|
190056
190058
|
/***/ 7792:
|
190057
|
-
/***/ (function(__unused_webpack_module, exports,
|
190059
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_858062__) {
|
190058
190060
|
|
190059
190061
|
"use strict";
|
190060
190062
|
|
@@ -190063,9 +190065,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
190063
190065
|
};
|
190064
190066
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
190065
190067
|
exports.readConfigFile = void 0;
|
190066
|
-
const js_yaml_1 = __importDefault(
|
190067
|
-
const toml_1 = __importDefault(
|
190068
|
-
const fs_extra_1 =
|
190068
|
+
const js_yaml_1 = __importDefault(__nested_webpack_require_858062__(6540));
|
190069
|
+
const toml_1 = __importDefault(__nested_webpack_require_858062__(9434));
|
190070
|
+
const fs_extra_1 = __nested_webpack_require_858062__(5392);
|
190069
190071
|
async function readFileOrNull(file) {
|
190070
190072
|
try {
|
190071
190073
|
const data = await fs_extra_1.readFile(file);
|
@@ -190120,7 +190122,7 @@ exports.default = rename;
|
|
190120
190122
|
/***/ }),
|
190121
190123
|
|
190122
190124
|
/***/ 1442:
|
190123
|
-
/***/ (function(__unused_webpack_module, exports,
|
190125
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_859855__) {
|
190124
190126
|
|
190125
190127
|
"use strict";
|
190126
190128
|
|
@@ -190129,18 +190131,18 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
190129
190131
|
};
|
190130
190132
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
190131
190133
|
exports.installDependencies = exports.getScriptName = exports.runPipInstall = exports.runBundleInstall = exports.runPackageJsonScript = exports.runCustomInstallCommand = exports.getEnvForPackageManager = exports.runNpmInstall = exports.walkParentDirs = exports.scanParentDirs = exports.getNodeVersion = exports.getSpawnOptions = exports.runShellScript = exports.getNodeBinPath = exports.execCommand = exports.spawnCommand = exports.execAsync = exports.spawnAsync = void 0;
|
190132
|
-
const assert_1 = __importDefault(
|
190133
|
-
const fs_extra_1 = __importDefault(
|
190134
|
-
const path_1 = __importDefault(
|
190135
|
-
const async_sema_1 = __importDefault(
|
190136
|
-
const cross_spawn_1 = __importDefault(
|
190137
|
-
const semver_1 =
|
190138
|
-
const util_1 =
|
190139
|
-
const debug_1 = __importDefault(
|
190140
|
-
const errors_1 =
|
190141
|
-
const node_version_1 =
|
190142
|
-
const read_config_file_1 =
|
190143
|
-
const clone_env_1 =
|
190134
|
+
const assert_1 = __importDefault(__nested_webpack_require_859855__(2357));
|
190135
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_859855__(5392));
|
190136
|
+
const path_1 = __importDefault(__nested_webpack_require_859855__(5622));
|
190137
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_859855__(5758));
|
190138
|
+
const cross_spawn_1 = __importDefault(__nested_webpack_require_859855__(7618));
|
190139
|
+
const semver_1 = __nested_webpack_require_859855__(2879);
|
190140
|
+
const util_1 = __nested_webpack_require_859855__(1669);
|
190141
|
+
const debug_1 = __importDefault(__nested_webpack_require_859855__(1868));
|
190142
|
+
const errors_1 = __nested_webpack_require_859855__(3983);
|
190143
|
+
const node_version_1 = __nested_webpack_require_859855__(7903);
|
190144
|
+
const read_config_file_1 = __nested_webpack_require_859855__(7792);
|
190145
|
+
const clone_env_1 = __nested_webpack_require_859855__(6548);
|
190144
190146
|
// Only allow one `runNpmInstall()` invocation to run concurrently
|
190145
190147
|
const runNpmInstallSema = new async_sema_1.default(1);
|
190146
190148
|
function spawnAsync(command, args, opts = {}) {
|
@@ -190613,7 +190615,7 @@ exports.installDependencies = util_1.deprecate(runNpmInstall, 'installDependenci
|
|
190613
190615
|
/***/ }),
|
190614
190616
|
|
190615
190617
|
/***/ 2560:
|
190616
|
-
/***/ (function(__unused_webpack_module, exports,
|
190618
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_880276__) {
|
190617
190619
|
|
190618
190620
|
"use strict";
|
190619
190621
|
|
@@ -190621,7 +190623,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
190621
190623
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
190622
190624
|
};
|
190623
190625
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
190624
|
-
const end_of_stream_1 = __importDefault(
|
190626
|
+
const end_of_stream_1 = __importDefault(__nested_webpack_require_880276__(687));
|
190625
190627
|
function streamToBuffer(stream) {
|
190626
190628
|
return new Promise((resolve, reject) => {
|
190627
190629
|
const buffers = [];
|
@@ -190650,7 +190652,7 @@ exports.default = streamToBuffer;
|
|
190650
190652
|
/***/ }),
|
190651
190653
|
|
190652
190654
|
/***/ 1148:
|
190653
|
-
/***/ (function(__unused_webpack_module, exports,
|
190655
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_881344__) {
|
190654
190656
|
|
190655
190657
|
"use strict";
|
190656
190658
|
|
@@ -190658,9 +190660,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
190658
190660
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
190659
190661
|
};
|
190660
190662
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
190661
|
-
const path_1 = __importDefault(
|
190662
|
-
const fs_extra_1 = __importDefault(
|
190663
|
-
const ignore_1 = __importDefault(
|
190663
|
+
const path_1 = __importDefault(__nested_webpack_require_881344__(5622));
|
190664
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_881344__(5392));
|
190665
|
+
const ignore_1 = __importDefault(__nested_webpack_require_881344__(3556));
|
190664
190666
|
function isCodedError(error) {
|
190665
190667
|
return (error !== null &&
|
190666
190668
|
error !== undefined &&
|
@@ -190717,13 +190719,13 @@ exports.default = default_1;
|
|
190717
190719
|
/***/ }),
|
190718
190720
|
|
190719
190721
|
/***/ 4678:
|
190720
|
-
/***/ ((__unused_webpack_module, exports,
|
190722
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_883718__) => {
|
190721
190723
|
|
190722
190724
|
"use strict";
|
190723
190725
|
|
190724
190726
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
190725
190727
|
exports.getPlatformEnv = void 0;
|
190726
|
-
const errors_1 =
|
190728
|
+
const errors_1 = __nested_webpack_require_883718__(3983);
|
190727
190729
|
/**
|
190728
190730
|
* Helper function to support both `VERCEL_` and legacy `NOW_` env vars.
|
190729
190731
|
* Throws an error if *both* env vars are defined.
|
@@ -190787,7 +190789,7 @@ exports.getPrefixedEnvVars = getPrefixedEnvVars;
|
|
190787
190789
|
/***/ }),
|
190788
190790
|
|
190789
190791
|
/***/ 2855:
|
190790
|
-
/***/ (function(__unused_webpack_module, exports,
|
190792
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_885977__) {
|
190791
190793
|
|
190792
190794
|
"use strict";
|
190793
190795
|
|
@@ -190818,31 +190820,31 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
190818
190820
|
};
|
190819
190821
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
190820
190822
|
exports.normalizePath = exports.readConfigFile = exports.EdgeFunction = exports.cloneEnv = exports.getIgnoreFilter = exports.scanParentDirs = exports.getLambdaOptionsFromFunction = exports.isSymbolicLink = exports.debug = exports.streamToBuffer = exports.getPrefixedEnvVars = exports.getPlatformEnv = exports.getSpawnOptions = exports.getDiscontinuedNodeVersions = exports.getLatestNodeVersion = exports.getNodeVersion = exports.getEnvForPackageManager = exports.runCustomInstallCommand = 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.downloadFile = exports.download = exports.Prerender = exports.createLambda = exports.NodejsLambda = exports.Lambda = exports.FileRef = exports.FileFsRef = exports.FileBlob = void 0;
|
190821
|
-
const file_blob_1 = __importDefault(
|
190823
|
+
const file_blob_1 = __importDefault(__nested_webpack_require_885977__(2397));
|
190822
190824
|
exports.FileBlob = file_blob_1.default;
|
190823
|
-
const file_fs_ref_1 = __importDefault(
|
190825
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_885977__(9331));
|
190824
190826
|
exports.FileFsRef = file_fs_ref_1.default;
|
190825
|
-
const file_ref_1 = __importDefault(
|
190827
|
+
const file_ref_1 = __importDefault(__nested_webpack_require_885977__(5187));
|
190826
190828
|
exports.FileRef = file_ref_1.default;
|
190827
|
-
const lambda_1 =
|
190829
|
+
const lambda_1 = __nested_webpack_require_885977__(6721);
|
190828
190830
|
Object.defineProperty(exports, "Lambda", ({ enumerable: true, get: function () { return lambda_1.Lambda; } }));
|
190829
190831
|
Object.defineProperty(exports, "createLambda", ({ enumerable: true, get: function () { return lambda_1.createLambda; } }));
|
190830
190832
|
Object.defineProperty(exports, "getLambdaOptionsFromFunction", ({ enumerable: true, get: function () { return lambda_1.getLambdaOptionsFromFunction; } }));
|
190831
|
-
const nodejs_lambda_1 =
|
190833
|
+
const nodejs_lambda_1 = __nested_webpack_require_885977__(7049);
|
190832
190834
|
Object.defineProperty(exports, "NodejsLambda", ({ enumerable: true, get: function () { return nodejs_lambda_1.NodejsLambda; } }));
|
190833
|
-
const prerender_1 =
|
190835
|
+
const prerender_1 = __nested_webpack_require_885977__(2850);
|
190834
190836
|
Object.defineProperty(exports, "Prerender", ({ enumerable: true, get: function () { return prerender_1.Prerender; } }));
|
190835
|
-
const download_1 = __importStar(
|
190837
|
+
const download_1 = __importStar(__nested_webpack_require_885977__(1611));
|
190836
190838
|
exports.download = download_1.default;
|
190837
190839
|
Object.defineProperty(exports, "downloadFile", ({ enumerable: true, get: function () { return download_1.downloadFile; } }));
|
190838
190840
|
Object.defineProperty(exports, "isSymbolicLink", ({ enumerable: true, get: function () { return download_1.isSymbolicLink; } }));
|
190839
|
-
const get_writable_directory_1 = __importDefault(
|
190841
|
+
const get_writable_directory_1 = __importDefault(__nested_webpack_require_885977__(3838));
|
190840
190842
|
exports.getWriteableDirectory = get_writable_directory_1.default;
|
190841
|
-
const glob_1 = __importDefault(
|
190843
|
+
const glob_1 = __importDefault(__nested_webpack_require_885977__(4240));
|
190842
190844
|
exports.glob = glob_1.default;
|
190843
|
-
const rename_1 = __importDefault(
|
190845
|
+
const rename_1 = __importDefault(__nested_webpack_require_885977__(6718));
|
190844
190846
|
exports.rename = rename_1.default;
|
190845
|
-
const run_user_scripts_1 =
|
190847
|
+
const run_user_scripts_1 = __nested_webpack_require_885977__(1442);
|
190846
190848
|
Object.defineProperty(exports, "execAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.execAsync; } }));
|
190847
190849
|
Object.defineProperty(exports, "spawnAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.spawnAsync; } }));
|
190848
190850
|
Object.defineProperty(exports, "execCommand", ({ enumerable: true, get: function () { return run_user_scripts_1.execCommand; } }));
|
@@ -190861,37 +190863,37 @@ Object.defineProperty(exports, "getNodeVersion", ({ enumerable: true, get: funct
|
|
190861
190863
|
Object.defineProperty(exports, "getSpawnOptions", ({ enumerable: true, get: function () { return run_user_scripts_1.getSpawnOptions; } }));
|
190862
190864
|
Object.defineProperty(exports, "getNodeBinPath", ({ enumerable: true, get: function () { return run_user_scripts_1.getNodeBinPath; } }));
|
190863
190865
|
Object.defineProperty(exports, "scanParentDirs", ({ enumerable: true, get: function () { return run_user_scripts_1.scanParentDirs; } }));
|
190864
|
-
const node_version_1 =
|
190866
|
+
const node_version_1 = __nested_webpack_require_885977__(7903);
|
190865
190867
|
Object.defineProperty(exports, "getLatestNodeVersion", ({ enumerable: true, get: function () { return node_version_1.getLatestNodeVersion; } }));
|
190866
190868
|
Object.defineProperty(exports, "getDiscontinuedNodeVersions", ({ enumerable: true, get: function () { return node_version_1.getDiscontinuedNodeVersions; } }));
|
190867
|
-
const stream_to_buffer_1 = __importDefault(
|
190869
|
+
const stream_to_buffer_1 = __importDefault(__nested_webpack_require_885977__(2560));
|
190868
190870
|
exports.streamToBuffer = stream_to_buffer_1.default;
|
190869
|
-
const debug_1 = __importDefault(
|
190871
|
+
const debug_1 = __importDefault(__nested_webpack_require_885977__(1868));
|
190870
190872
|
exports.debug = debug_1.default;
|
190871
|
-
const get_ignore_filter_1 = __importDefault(
|
190873
|
+
const get_ignore_filter_1 = __importDefault(__nested_webpack_require_885977__(1148));
|
190872
190874
|
exports.getIgnoreFilter = get_ignore_filter_1.default;
|
190873
|
-
const get_platform_env_1 =
|
190875
|
+
const get_platform_env_1 = __nested_webpack_require_885977__(4678);
|
190874
190876
|
Object.defineProperty(exports, "getPlatformEnv", ({ enumerable: true, get: function () { return get_platform_env_1.getPlatformEnv; } }));
|
190875
|
-
const get_prefixed_env_vars_1 =
|
190877
|
+
const get_prefixed_env_vars_1 = __nested_webpack_require_885977__(6838);
|
190876
190878
|
Object.defineProperty(exports, "getPrefixedEnvVars", ({ enumerable: true, get: function () { return get_prefixed_env_vars_1.getPrefixedEnvVars; } }));
|
190877
|
-
const clone_env_1 =
|
190879
|
+
const clone_env_1 = __nested_webpack_require_885977__(6548);
|
190878
190880
|
Object.defineProperty(exports, "cloneEnv", ({ enumerable: true, get: function () { return clone_env_1.cloneEnv; } }));
|
190879
|
-
var edge_function_1 =
|
190881
|
+
var edge_function_1 = __nested_webpack_require_885977__(8038);
|
190880
190882
|
Object.defineProperty(exports, "EdgeFunction", ({ enumerable: true, get: function () { return edge_function_1.EdgeFunction; } }));
|
190881
|
-
var read_config_file_1 =
|
190883
|
+
var read_config_file_1 = __nested_webpack_require_885977__(7792);
|
190882
190884
|
Object.defineProperty(exports, "readConfigFile", ({ enumerable: true, get: function () { return read_config_file_1.readConfigFile; } }));
|
190883
|
-
var normalize_path_1 =
|
190885
|
+
var normalize_path_1 = __nested_webpack_require_885977__(6261);
|
190884
190886
|
Object.defineProperty(exports, "normalizePath", ({ enumerable: true, get: function () { return normalize_path_1.normalizePath; } }));
|
190885
|
-
__exportStar(
|
190886
|
-
__exportStar(
|
190887
|
-
__exportStar(
|
190888
|
-
__exportStar(
|
190887
|
+
__exportStar(__nested_webpack_require_885977__(2564), exports);
|
190888
|
+
__exportStar(__nested_webpack_require_885977__(2416), exports);
|
190889
|
+
__exportStar(__nested_webpack_require_885977__(5748), exports);
|
190890
|
+
__exportStar(__nested_webpack_require_885977__(3983), exports);
|
190889
190891
|
|
190890
190892
|
|
190891
190893
|
/***/ }),
|
190892
190894
|
|
190893
190895
|
/***/ 6721:
|
190894
|
-
/***/ (function(__unused_webpack_module, exports,
|
190896
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_894795__) {
|
190895
190897
|
|
190896
190898
|
"use strict";
|
190897
190899
|
|
@@ -190900,13 +190902,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
190900
190902
|
};
|
190901
190903
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
190902
190904
|
exports.getLambdaOptionsFromFunction = exports.createZip = exports.createLambda = exports.Lambda = void 0;
|
190903
|
-
const assert_1 = __importDefault(
|
190904
|
-
const async_sema_1 = __importDefault(
|
190905
|
-
const yazl_1 =
|
190906
|
-
const minimatch_1 = __importDefault(
|
190907
|
-
const fs_extra_1 =
|
190908
|
-
const download_1 =
|
190909
|
-
const stream_to_buffer_1 = __importDefault(
|
190905
|
+
const assert_1 = __importDefault(__nested_webpack_require_894795__(2357));
|
190906
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_894795__(5758));
|
190907
|
+
const yazl_1 = __nested_webpack_require_894795__(1223);
|
190908
|
+
const minimatch_1 = __importDefault(__nested_webpack_require_894795__(9566));
|
190909
|
+
const fs_extra_1 = __nested_webpack_require_894795__(5392);
|
190910
|
+
const download_1 = __nested_webpack_require_894795__(1611);
|
190911
|
+
const stream_to_buffer_1 = __importDefault(__nested_webpack_require_894795__(2560));
|
190910
190912
|
class Lambda {
|
190911
190913
|
constructor(opts) {
|
190912
190914
|
const { handler, runtime, maxDuration, memory, environment = {}, allowQuery, regions, supportsMultiPayloads, supportsWrapper, } = opts;
|
@@ -191032,13 +191034,13 @@ exports.getLambdaOptionsFromFunction = getLambdaOptionsFromFunction;
|
|
191032
191034
|
/***/ }),
|
191033
191035
|
|
191034
191036
|
/***/ 7049:
|
191035
|
-
/***/ ((__unused_webpack_module, exports,
|
191037
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_900478__) => {
|
191036
191038
|
|
191037
191039
|
"use strict";
|
191038
191040
|
|
191039
191041
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
191040
191042
|
exports.NodejsLambda = void 0;
|
191041
|
-
const lambda_1 =
|
191043
|
+
const lambda_1 = __nested_webpack_require_900478__(6721);
|
191042
191044
|
class NodejsLambda extends lambda_1.Lambda {
|
191043
191045
|
constructor({ shouldAddHelpers, shouldAddSourcemapSupport, awsLambdaHandler, ...opts }) {
|
191044
191046
|
super(opts);
|
@@ -191175,13 +191177,13 @@ exports.buildsSchema = {
|
|
191175
191177
|
/***/ }),
|
191176
191178
|
|
191177
191179
|
/***/ 2564:
|
191178
|
-
/***/ ((__unused_webpack_module, exports,
|
191180
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_904823__) => {
|
191179
191181
|
|
191180
191182
|
"use strict";
|
191181
191183
|
|
191182
191184
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
191183
191185
|
exports.shouldServe = void 0;
|
191184
|
-
const path_1 =
|
191186
|
+
const path_1 = __nested_webpack_require_904823__(5622);
|
191185
191187
|
const shouldServe = ({ entrypoint, files, requestPath, }) => {
|
191186
191188
|
requestPath = requestPath.replace(/\/$/, ''); // sanitize trailing '/'
|
191187
191189
|
entrypoint = entrypoint.replace(/\\/, '/'); // windows compatibility
|
@@ -191426,7 +191428,7 @@ module.exports = __webpack_require__(78761);
|
|
191426
191428
|
/******/ var __webpack_module_cache__ = {};
|
191427
191429
|
/******/
|
191428
191430
|
/******/ // The require function
|
191429
|
-
/******/ function
|
191431
|
+
/******/ function __nested_webpack_require_1282188__(moduleId) {
|
191430
191432
|
/******/ // Check if module is in cache
|
191431
191433
|
/******/ if(__webpack_module_cache__[moduleId]) {
|
191432
191434
|
/******/ return __webpack_module_cache__[moduleId].exports;
|
@@ -191441,7 +191443,7 @@ module.exports = __webpack_require__(78761);
|
|
191441
191443
|
/******/ // Execute the module function
|
191442
191444
|
/******/ var threw = true;
|
191443
191445
|
/******/ try {
|
191444
|
-
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports,
|
191446
|
+
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __nested_webpack_require_1282188__);
|
191445
191447
|
/******/ threw = false;
|
191446
191448
|
/******/ } finally {
|
191447
191449
|
/******/ if(threw) delete __webpack_module_cache__[moduleId];
|
@@ -191454,11 +191456,11 @@ module.exports = __webpack_require__(78761);
|
|
191454
191456
|
/************************************************************************/
|
191455
191457
|
/******/ /* webpack/runtime/compat */
|
191456
191458
|
/******/
|
191457
|
-
/******/
|
191459
|
+
/******/ __nested_webpack_require_1282188__.ab = __dirname + "/";/************************************************************************/
|
191458
191460
|
/******/ // module exports must be returned from runtime so entry inlining is disabled
|
191459
191461
|
/******/ // startup
|
191460
191462
|
/******/ // Load entry module and return exports
|
191461
|
-
/******/ return
|
191463
|
+
/******/ return __nested_webpack_require_1282188__(2855);
|
191462
191464
|
/******/ })()
|
191463
191465
|
;
|
191464
191466
|
|
@@ -216719,6 +216721,7 @@ exports.monorepoManagers = [
|
|
216719
216721
|
{
|
216720
216722
|
name: 'Turborepo',
|
216721
216723
|
slug: 'turbo',
|
216724
|
+
logo: 'https://api-frameworks.vercel.sh/monorepo-logos/turborepo.svg',
|
216722
216725
|
detectors: {
|
216723
216726
|
some: [
|
216724
216727
|
{
|
@@ -216730,10 +216733,26 @@ exports.monorepoManagers = [
|
|
216730
216733
|
},
|
216731
216734
|
],
|
216732
216735
|
},
|
216736
|
+
settings: {
|
216737
|
+
buildCommand: {
|
216738
|
+
placeholder: 'Turborepo default',
|
216739
|
+
value: null,
|
216740
|
+
},
|
216741
|
+
outputDirectory: {
|
216742
|
+
value: null,
|
216743
|
+
},
|
216744
|
+
installCommand: {
|
216745
|
+
value: null,
|
216746
|
+
},
|
216747
|
+
devCommand: {
|
216748
|
+
value: null,
|
216749
|
+
},
|
216750
|
+
},
|
216733
216751
|
},
|
216734
216752
|
{
|
216735
216753
|
name: 'Nx',
|
216736
216754
|
slug: 'nx',
|
216755
|
+
logo: 'https://api-frameworks.vercel.sh/monorepo-logos/nx.svg',
|
216737
216756
|
detectors: {
|
216738
216757
|
every: [
|
216739
216758
|
{
|
@@ -216741,10 +216760,26 @@ exports.monorepoManagers = [
|
|
216741
216760
|
},
|
216742
216761
|
],
|
216743
216762
|
},
|
216763
|
+
settings: {
|
216764
|
+
buildCommand: {
|
216765
|
+
placeholder: 'Nx default',
|
216766
|
+
value: null,
|
216767
|
+
},
|
216768
|
+
outputDirectory: {
|
216769
|
+
placeholder: 'Nx default',
|
216770
|
+
},
|
216771
|
+
installCommand: {
|
216772
|
+
value: null,
|
216773
|
+
},
|
216774
|
+
devCommand: {
|
216775
|
+
value: null,
|
216776
|
+
},
|
216777
|
+
},
|
216744
216778
|
},
|
216745
216779
|
{
|
216746
216780
|
name: 'Rush',
|
216747
216781
|
slug: 'rush',
|
216782
|
+
logo: 'https://api-frameworks.vercel.sh/monorepo-logos/rush.svg',
|
216748
216783
|
detectors: {
|
216749
216784
|
every: [
|
216750
216785
|
{
|
@@ -216752,6 +216787,21 @@ exports.monorepoManagers = [
|
|
216752
216787
|
},
|
216753
216788
|
],
|
216754
216789
|
},
|
216790
|
+
settings: {
|
216791
|
+
buildCommand: {
|
216792
|
+
placeholder: 'Rush default',
|
216793
|
+
value: null,
|
216794
|
+
},
|
216795
|
+
outputDirectory: {
|
216796
|
+
placeholder: 'Rush default',
|
216797
|
+
},
|
216798
|
+
installCommand: {
|
216799
|
+
placeholder: 'Rush default',
|
216800
|
+
},
|
216801
|
+
devCommand: {
|
216802
|
+
value: null,
|
216803
|
+
},
|
216804
|
+
},
|
216755
216805
|
},
|
216756
216806
|
];
|
216757
216807
|
exports.default = exports.monorepoManagers;
|
@@ -228906,6 +228956,20 @@ async function doBuild(client, project, buildsJson, cwd, outputDir) {
|
|
228906
228956
|
};
|
228907
228957
|
output.debug(`Building entrypoint "${build.src}" with "${builderPkg.name}"`);
|
228908
228958
|
const buildResult = await builder.build(buildOptions);
|
228959
|
+
if (buildResult &&
|
228960
|
+
'output' in buildResult &&
|
228961
|
+
'runtime' in buildResult.output &&
|
228962
|
+
'type' in buildResult.output &&
|
228963
|
+
buildResult.output.type === 'Lambda') {
|
228964
|
+
const lambdaRuntime = buildResult.output.runtime;
|
228965
|
+
if ((0, build_utils_1.getDiscontinuedNodeVersions)().some(o => o.runtime === lambdaRuntime)) {
|
228966
|
+
throw new build_utils_1.NowBuildError({
|
228967
|
+
code: 'NODEJS_DISCONTINUED_VERSION',
|
228968
|
+
message: `The Runtime "${build.use}" is using "${lambdaRuntime}", which is discontinued. Please upgrade your Runtime to a more recent version or consult the author for more details.`,
|
228969
|
+
link: 'https://github.com/vercel/vercel/blob/main/DEVELOPING_A_RUNTIME.md#lambdaruntime',
|
228970
|
+
});
|
228971
|
+
}
|
228972
|
+
}
|
228909
228973
|
// Store the build result to generate the final `config.json` after
|
228910
228974
|
// all builds have completed
|
228911
228975
|
buildResults.set(build, buildResult);
|
@@ -238515,8 +238579,8 @@ exports.default = readConfig;
|
|
238515
238579
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
238516
238580
|
exports.SENTRY_DSN = exports.GA_TRACKING_ID = void 0;
|
238517
238581
|
// This file is auto-generated
|
238518
|
-
exports.GA_TRACKING_ID =
|
238519
|
-
exports.SENTRY_DSN =
|
238582
|
+
exports.GA_TRACKING_ID = undefined;
|
238583
|
+
exports.SENTRY_DSN = undefined;
|
238520
238584
|
|
238521
238585
|
|
238522
238586
|
/***/ }),
|
@@ -250811,7 +250875,7 @@ module.exports = JSON.parse("{\"application/1d-interleaved-parityfec\":{\"source
|
|
250811
250875
|
/***/ ((module) => {
|
250812
250876
|
|
250813
250877
|
"use strict";
|
250814
|
-
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"28.4.
|
250878
|
+
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"28.4.8\",\"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 --env node --verbose --runInBand --bail --forceExit\",\"test-unit\":\"yarn test test/unit/\",\"test-integration-cli\":\"rimraf test/fixtures/integration && ava test/integration.js --serial --fail-fast --verbose\",\"test-integration-dev\":\"yarn test test/dev/\",\"coverage\":\"codecov\",\"build\":\"ts-node ./scripts/build.ts\",\"dev\":\"ts-node ./src/index.ts\"},\"bin\":{\"vc\":\"./dist/index.js\",\"vercel\":\"./dist/index.js\"},\"files\":[\"dist\",\"scripts/preinstall.js\"],\"ava\":{\"extensions\":[\"ts\"],\"require\":[\"ts-node/register/transpile-only\",\"esm\"]},\"engines\":{\"node\":\">= 14\"},\"dependencies\":{\"@vercel/build-utils\":\"5.5.4\",\"@vercel/go\":\"2.2.12\",\"@vercel/hydrogen\":\"0.0.25\",\"@vercel/next\":\"3.2.3\",\"@vercel/node\":\"2.5.22\",\"@vercel/python\":\"3.1.21\",\"@vercel/redwood\":\"1.0.30\",\"@vercel/remix\":\"1.0.31\",\"@vercel/ruby\":\"1.3.38\",\"@vercel/static-build\":\"1.0.30\",\"update-notifier\":\"5.1.0\"},\"devDependencies\":{\"@alex_neo/jest-expect-message\":\"1.0.5\",\"@next/env\":\"11.1.2\",\"@sentry/node\":\"5.5.0\",\"@sindresorhus/slugify\":\"0.11.0\",\"@swc/core\":\"1.2.218\",\"@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/ini\":\"1.3.31\",\"@types/inquirer\":\"7.3.1\",\"@types/jest\":\"27.4.1\",\"@types/jest-expect-message\":\"1.0.3\",\"@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/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\",\"@types/yauzl-promise\":\"2.1.0\",\"@vercel/client\":\"12.2.12\",\"@vercel/frameworks\":\"1.1.6\",\"@vercel/fs-detectors\":\"3.4.2\",\"@vercel/fun\":\"1.0.4\",\"@vercel/ncc\":\"0.24.0\",\"@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\",\"boxen\":\"4.2.0\",\"bytes\":\"3.0.0\",\"chalk\":\"4.1.0\",\"chance\":\"1.1.7\",\"chokidar\":\"3.3.1\",\"codecov\":\"3.8.2\",\"cpy\":\"7.2.0\",\"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\",\"git-last-commit\":\"1.0.1\",\"glob\":\"7.1.2\",\"http-proxy\":\"1.18.1\",\"ini\":\"3.0.0\",\"inquirer\":\"7.0.4\",\"is-docker\":\"2.2.1\",\"is-port-reachable\":\"3.1.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.7\",\"npm-package-arg\":\"6.1.0\",\"open\":\"8.4.0\",\"ora\":\"3.4.0\",\"pcre-to-regexp\":\"1.0.0\",\"pluralize\":\"7.0.0\",\"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-node\":\"10.9.1\",\"typescript\":\"4.7.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\",\"yauzl-promise\":\"2.1.3\"},\"jest\":{\"preset\":\"ts-jest\",\"globals\":{\"ts-jest\":{\"diagnostics\":false,\"isolatedModules\":true}},\"setupFilesAfterEnv\":[\"@alex_neo/jest-expect-message\"],\"verbose\":false,\"testEnvironment\":\"node\",\"testMatch\":[\"<rootDir>/test/**/*.test.ts\"]}}");
|
250815
250879
|
|
250816
250880
|
/***/ }),
|
250817
250881
|
|
@@ -250819,7 +250883,7 @@ module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"28.4.6\",\"prefe
|
|
250819
250883
|
/***/ ((module) => {
|
250820
250884
|
|
250821
250885
|
"use strict";
|
250822
|
-
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"12.2.
|
250886
|
+
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"12.2.12\",\"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\":\"yarn test tests/create-deployment.test.ts tests/create-legacy-deployment.test.ts tests/paths.test.ts\",\"test\":\"jest --env node --verbose --runInBand --bail\",\"test-unit\":\"yarn test tests/unit.*test.*\"},\"engines\":{\"node\":\">= 14\"},\"devDependencies\":{\"@types/async-retry\":\"1.4.1\",\"@types/fs-extra\":\"7.0.0\",\"@types/jest\":\"27.4.1\",\"@types/minimatch\":\"3.0.5\",\"@types/ms\":\"0.7.30\",\"@types/node\":\"12.0.4\",\"@types/node-fetch\":\"2.5.4\",\"@types/recursive-readdir\":\"2.2.0\",\"@types/tar-fs\":\"1.16.1\",\"typescript\":\"4.3.4\"},\"jest\":{\"preset\":\"ts-jest\",\"testEnvironment\":\"node\",\"verbose\":false,\"setupFilesAfterEnv\":[\"<rootDir>/tests/setup/index.ts\"]},\"dependencies\":{\"@vercel/build-utils\":\"5.5.4\",\"@vercel/routing-utils\":\"2.0.2\",\"@zeit/fetch\":\"5.2.0\",\"async-retry\":\"1.2.3\",\"async-sema\":\"3.0.0\",\"fs-extra\":\"8.0.1\",\"ignore\":\"4.0.6\",\"minimatch\":\"5.0.1\",\"ms\":\"2.1.2\",\"node-fetch\":\"2.6.7\",\"querystring\":\"^0.2.0\",\"sleep-promise\":\"8.0.1\",\"tar-fs\":\"1.16.3\"}}");
|
250823
250887
|
|
250824
250888
|
/***/ }),
|
250825
250889
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "vercel",
|
3
|
-
"version": "28.4.
|
3
|
+
"version": "28.4.8",
|
4
4
|
"preferGlobal": true,
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"description": "The command-line interface for Vercel",
|
@@ -41,16 +41,16 @@
|
|
41
41
|
"node": ">= 14"
|
42
42
|
},
|
43
43
|
"dependencies": {
|
44
|
-
"@vercel/build-utils": "5.5.
|
45
|
-
"@vercel/go": "2.2.
|
46
|
-
"@vercel/hydrogen": "0.0.
|
47
|
-
"@vercel/next": "3.2.
|
48
|
-
"@vercel/node": "2.5.
|
49
|
-
"@vercel/python": "3.1.
|
50
|
-
"@vercel/redwood": "1.0.
|
51
|
-
"@vercel/remix": "1.0.
|
52
|
-
"@vercel/ruby": "1.3.
|
53
|
-
"@vercel/static-build": "1.0.
|
44
|
+
"@vercel/build-utils": "5.5.4",
|
45
|
+
"@vercel/go": "2.2.12",
|
46
|
+
"@vercel/hydrogen": "0.0.25",
|
47
|
+
"@vercel/next": "3.2.3",
|
48
|
+
"@vercel/node": "2.5.22",
|
49
|
+
"@vercel/python": "3.1.21",
|
50
|
+
"@vercel/redwood": "1.0.30",
|
51
|
+
"@vercel/remix": "1.0.31",
|
52
|
+
"@vercel/ruby": "1.3.38",
|
53
|
+
"@vercel/static-build": "1.0.30",
|
54
54
|
"update-notifier": "5.1.0"
|
55
55
|
},
|
56
56
|
"devDependencies": {
|
@@ -95,9 +95,9 @@
|
|
95
95
|
"@types/which": "1.3.2",
|
96
96
|
"@types/write-json-file": "2.2.1",
|
97
97
|
"@types/yauzl-promise": "2.1.0",
|
98
|
-
"@vercel/client": "12.2.
|
98
|
+
"@vercel/client": "12.2.12",
|
99
99
|
"@vercel/frameworks": "1.1.6",
|
100
|
-
"@vercel/fs-detectors": "3.4.
|
100
|
+
"@vercel/fs-detectors": "3.4.2",
|
101
101
|
"@vercel/fun": "1.0.4",
|
102
102
|
"@vercel/ncc": "0.24.0",
|
103
103
|
"@zeit/source-map-support": "0.6.2",
|
@@ -193,5 +193,5 @@
|
|
193
193
|
"<rootDir>/test/**/*.test.ts"
|
194
194
|
]
|
195
195
|
},
|
196
|
-
"gitHead": "
|
196
|
+
"gitHead": "cfb7946f4be33ac10c049983cec575a9b336cea1"
|
197
197
|
}
|