vercel 28.4.5 → 28.4.7
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 +140 -110
- package/package.json +13 -13
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
|
|
@@ -203883,7 +203885,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
203883
203885
|
};
|
203884
203886
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
203885
203887
|
exports.upload = void 0;
|
203886
|
-
const
|
203888
|
+
const http_1 = __importDefault(__webpack_require__(98605));
|
203889
|
+
const https_1 = __importDefault(__webpack_require__(57211));
|
203887
203890
|
const stream_1 = __webpack_require__(92413);
|
203888
203891
|
const events_1 = __webpack_require__(28614);
|
203889
203892
|
const async_retry_1 = __importDefault(__webpack_require__(33691));
|
@@ -203942,7 +203945,9 @@ async function* upload(files, clientOptions, deploymentOptions) {
|
|
203942
203945
|
const uploadList = {};
|
203943
203946
|
debug('Building an upload list...');
|
203944
203947
|
const semaphore = new async_sema_1.Sema(50, { capacity: 50 });
|
203945
|
-
const agent =
|
203948
|
+
const agent = apiUrl?.startsWith('https://')
|
203949
|
+
? new https_1.default.Agent({ keepAlive: true })
|
203950
|
+
: new http_1.default.Agent({ keepAlive: true });
|
203946
203951
|
shas.forEach((sha, index) => {
|
203947
203952
|
const uploadProgress = uploads[index];
|
203948
203953
|
uploadList[sha] = async_retry_1.default(async (bail) => {
|
@@ -228903,6 +228908,20 @@ async function doBuild(client, project, buildsJson, cwd, outputDir) {
|
|
228903
228908
|
};
|
228904
228909
|
output.debug(`Building entrypoint "${build.src}" with "${builderPkg.name}"`);
|
228905
228910
|
const buildResult = await builder.build(buildOptions);
|
228911
|
+
if (buildResult &&
|
228912
|
+
'output' in buildResult &&
|
228913
|
+
'runtime' in buildResult.output &&
|
228914
|
+
'type' in buildResult.output &&
|
228915
|
+
buildResult.output.type === 'Lambda') {
|
228916
|
+
const lambdaRuntime = buildResult.output.runtime;
|
228917
|
+
if ((0, build_utils_1.getDiscontinuedNodeVersions)().some(o => o.runtime === lambdaRuntime)) {
|
228918
|
+
throw new build_utils_1.NowBuildError({
|
228919
|
+
code: 'NODEJS_DISCONTINUED_VERSION',
|
228920
|
+
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.`,
|
228921
|
+
link: 'https://github.com/vercel/vercel/blob/main/DEVELOPING_A_RUNTIME.md#lambdaruntime',
|
228922
|
+
});
|
228923
|
+
}
|
228924
|
+
}
|
228906
228925
|
// Store the build result to generate the final `config.json` after
|
228907
228926
|
// all builds have completed
|
228908
228927
|
buildResults.set(build, buildResult);
|
@@ -239107,12 +239126,16 @@ async function processDeployment({ org, cwd, projectName, isSettingUpProject, ar
|
|
239107
239126
|
.map((sha) => total.get(sha).data.length)
|
239108
239127
|
.reduce((a, b) => a + b, 0);
|
239109
239128
|
const totalSizeHuman = bytes_1.default.format(missingSize, { decimalPlaces: 1 });
|
239110
|
-
|
239129
|
+
// When stderr is not a TTY then we only want to
|
239130
|
+
// print upload progress in 25% increments
|
239131
|
+
let nextStep = 0;
|
239132
|
+
const stepSize = now._client.stderr.isTTY ? 0 : 0.25;
|
239133
|
+
const updateProgress = () => {
|
239111
239134
|
const uploadedBytes = uploads.reduce((acc, e) => {
|
239112
239135
|
return acc + e.bytesUploaded;
|
239113
239136
|
}, 0);
|
239114
239137
|
const bar = (0, progress_1.progress)(uploadedBytes, missingSize);
|
239115
|
-
if (!bar
|
239138
|
+
if (!bar) {
|
239116
239139
|
output.spinner(deployingSpinnerVal, 0);
|
239117
239140
|
}
|
239118
239141
|
else {
|
@@ -239120,9 +239143,15 @@ async function processDeployment({ org, cwd, projectName, isSettingUpProject, ar
|
|
239120
239143
|
decimalPlaces: 1,
|
239121
239144
|
fixedDecimals: true,
|
239122
239145
|
});
|
239123
|
-
|
239146
|
+
const percent = uploadedBytes / missingSize;
|
239147
|
+
if (percent >= nextStep) {
|
239148
|
+
output.spinner(`Uploading ${chalk_1.default.reset(`[${bar}] (${uploadedHuman}/${totalSizeHuman})`)}`, 0);
|
239149
|
+
nextStep += stepSize;
|
239150
|
+
}
|
239124
239151
|
}
|
239125
|
-
}
|
239152
|
+
};
|
239153
|
+
uploads.forEach((e) => e.on('progress', updateProgress));
|
239154
|
+
updateProgress();
|
239126
239155
|
}
|
239127
239156
|
if (event.type === 'file-uploaded') {
|
239128
239157
|
debug(`Uploaded: ${event.payload.file.names.join(' ')} (${(0, bytes_1.default)(event.payload.file.data.length)})`);
|
@@ -248509,6 +248538,7 @@ const chalk_1 = __importDefault(__webpack_require__(961));
|
|
248509
248538
|
const link_1 = __importDefault(__webpack_require__(98472));
|
248510
248539
|
const wait_1 = __importDefault(__webpack_require__(22015));
|
248511
248540
|
const is_error_1 = __webpack_require__(11026);
|
248541
|
+
const IS_TEST = process.env.NODE_ENV === 'test';
|
248512
248542
|
class Output {
|
248513
248543
|
constructor(stream, { debug: debugEnabled = false } = {}) {
|
248514
248544
|
this.isDebugEnabled = () => {
|
@@ -248556,12 +248586,15 @@ class Output {
|
|
248556
248586
|
}
|
248557
248587
|
};
|
248558
248588
|
this.spinner = (message, delay = 300) => {
|
248559
|
-
this.spinnerMessage = message;
|
248560
248589
|
if (this.debugEnabled) {
|
248561
248590
|
this.debug(`Spinner invoked (${message}) with a ${delay}ms delay`);
|
248562
248591
|
return;
|
248563
248592
|
}
|
248564
|
-
if (this.stream.isTTY) {
|
248593
|
+
if (IS_TEST || !this.stream.isTTY) {
|
248594
|
+
this.print(`${message}\n`);
|
248595
|
+
}
|
248596
|
+
else {
|
248597
|
+
this.spinnerMessage = message;
|
248565
248598
|
if (this._spinner) {
|
248566
248599
|
this._spinner.text = message;
|
248567
248600
|
}
|
@@ -248572,9 +248605,6 @@ class Output {
|
|
248572
248605
|
}, delay);
|
248573
248606
|
}
|
248574
248607
|
}
|
248575
|
-
else {
|
248576
|
-
this.print(`${message}\n`);
|
248577
|
-
}
|
248578
248608
|
};
|
248579
248609
|
this.stopSpinner = () => {
|
248580
248610
|
if (this.debugEnabled && this.spinnerMessage) {
|
@@ -250797,7 +250827,7 @@ module.exports = JSON.parse("{\"application/1d-interleaved-parityfec\":{\"source
|
|
250797
250827
|
/***/ ((module) => {
|
250798
250828
|
|
250799
250829
|
"use strict";
|
250800
|
-
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"28.4.
|
250830
|
+
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"28.4.7\",\"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.1\",\"@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\"]}}");
|
250801
250831
|
|
250802
250832
|
/***/ }),
|
250803
250833
|
|
@@ -250805,7 +250835,7 @@ module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"28.4.5\",\"prefe
|
|
250805
250835
|
/***/ ((module) => {
|
250806
250836
|
|
250807
250837
|
"use strict";
|
250808
|
-
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"12.2.
|
250838
|
+
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\"}}");
|
250809
250839
|
|
250810
250840
|
/***/ }),
|
250811
250841
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "vercel",
|
3
|
-
"version": "28.4.
|
3
|
+
"version": "28.4.7",
|
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,7 +95,7 @@
|
|
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
100
|
"@vercel/fs-detectors": "3.4.1",
|
101
101
|
"@vercel/fun": "1.0.4",
|
@@ -193,5 +193,5 @@
|
|
193
193
|
"<rootDir>/test/**/*.test.ts"
|
194
194
|
]
|
195
195
|
},
|
196
|
-
"gitHead": "
|
196
|
+
"gitHead": "45bd855250436b73bee892c53f0407e1f24bc689"
|
197
197
|
}
|