vercel 27.3.6 → 27.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +158 -80
- package/package.json +15 -15
package/dist/index.js
CHANGED
@@ -201197,7 +201197,7 @@ const allOptions = [
|
|
201197
201197
|
major: 12,
|
201198
201198
|
range: '12.x',
|
201199
201199
|
runtime: 'nodejs12.x',
|
201200
|
-
discontinueDate: new Date('2022-
|
201200
|
+
discontinueDate: new Date('2022-10-01'),
|
201201
201201
|
},
|
201202
201202
|
{
|
201203
201203
|
major: 10,
|
@@ -201960,10 +201960,46 @@ const getPlatformEnv = (name) => {
|
|
201960
201960
|
exports.getPlatformEnv = getPlatformEnv;
|
201961
201961
|
|
201962
201962
|
|
201963
|
+
/***/ }),
|
201964
|
+
|
201965
|
+
/***/ 6838:
|
201966
|
+
/***/ ((__unused_webpack_module, exports) => {
|
201967
|
+
|
201968
|
+
"use strict";
|
201969
|
+
|
201970
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
201971
|
+
exports.getPrefixedEnvVars = void 0;
|
201972
|
+
/**
|
201973
|
+
* Get the framework-specific prefixed System Environment Variables.
|
201974
|
+
* See https://vercel.com/docs/concepts/projects/environment-variables#system-environment-variables
|
201975
|
+
* @param envPrefix - Prefix, typically from `@vercel/frameworks`
|
201976
|
+
* @param envs - Environment Variables, typically from `process.env`
|
201977
|
+
*/
|
201978
|
+
function getPrefixedEnvVars({ envPrefix, envs, }) {
|
201979
|
+
const vercelSystemEnvPrefix = 'VERCEL_';
|
201980
|
+
const newEnvs = {};
|
201981
|
+
if (envPrefix && envs.VERCEL_URL) {
|
201982
|
+
Object.keys(envs)
|
201983
|
+
.filter(key => key.startsWith(vercelSystemEnvPrefix))
|
201984
|
+
.forEach(key => {
|
201985
|
+
const newKey = `${envPrefix}${key}`;
|
201986
|
+
if (!(newKey in envs)) {
|
201987
|
+
newEnvs[newKey] = envs[key];
|
201988
|
+
}
|
201989
|
+
});
|
201990
|
+
// Tell turbo to exclude all Vercel System Env Vars
|
201991
|
+
// See https://github.com/vercel/turborepo/pull/1622
|
201992
|
+
newEnvs.TURBO_CI_VENDOR_ENV_KEY = `${envPrefix}${vercelSystemEnvPrefix}`;
|
201993
|
+
}
|
201994
|
+
return newEnvs;
|
201995
|
+
}
|
201996
|
+
exports.getPrefixedEnvVars = getPrefixedEnvVars;
|
201997
|
+
|
201998
|
+
|
201963
201999
|
/***/ }),
|
201964
202000
|
|
201965
202001
|
/***/ 2855:
|
201966
|
-
/***/ (function(__unused_webpack_module, exports,
|
202002
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_882902__) {
|
201967
202003
|
|
201968
202004
|
"use strict";
|
201969
202005
|
|
@@ -201993,32 +202029,32 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
201993
202029
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
201994
202030
|
};
|
201995
202031
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
201996
|
-
exports.normalizePath = exports.readConfigFile = exports.EdgeFunction = exports.getIgnoreFilter = exports.scanParentDirs = exports.getLambdaOptionsFromFunction = exports.isSymbolicLink = exports.debug = exports.streamToBuffer = 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;
|
201997
|
-
const file_blob_1 = __importDefault(
|
202032
|
+
exports.normalizePath = exports.readConfigFile = exports.EdgeFunction = 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;
|
202033
|
+
const file_blob_1 = __importDefault(__nested_webpack_require_882902__(2397));
|
201998
202034
|
exports.FileBlob = file_blob_1.default;
|
201999
|
-
const file_fs_ref_1 = __importDefault(
|
202035
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_882902__(9331));
|
202000
202036
|
exports.FileFsRef = file_fs_ref_1.default;
|
202001
|
-
const file_ref_1 = __importDefault(
|
202037
|
+
const file_ref_1 = __importDefault(__nested_webpack_require_882902__(5187));
|
202002
202038
|
exports.FileRef = file_ref_1.default;
|
202003
|
-
const lambda_1 =
|
202039
|
+
const lambda_1 = __nested_webpack_require_882902__(6721);
|
202004
202040
|
Object.defineProperty(exports, "Lambda", ({ enumerable: true, get: function () { return lambda_1.Lambda; } }));
|
202005
202041
|
Object.defineProperty(exports, "createLambda", ({ enumerable: true, get: function () { return lambda_1.createLambda; } }));
|
202006
202042
|
Object.defineProperty(exports, "getLambdaOptionsFromFunction", ({ enumerable: true, get: function () { return lambda_1.getLambdaOptionsFromFunction; } }));
|
202007
|
-
const nodejs_lambda_1 =
|
202043
|
+
const nodejs_lambda_1 = __nested_webpack_require_882902__(7049);
|
202008
202044
|
Object.defineProperty(exports, "NodejsLambda", ({ enumerable: true, get: function () { return nodejs_lambda_1.NodejsLambda; } }));
|
202009
|
-
const prerender_1 =
|
202045
|
+
const prerender_1 = __nested_webpack_require_882902__(2850);
|
202010
202046
|
Object.defineProperty(exports, "Prerender", ({ enumerable: true, get: function () { return prerender_1.Prerender; } }));
|
202011
|
-
const download_1 = __importStar(
|
202047
|
+
const download_1 = __importStar(__nested_webpack_require_882902__(1611));
|
202012
202048
|
exports.download = download_1.default;
|
202013
202049
|
Object.defineProperty(exports, "downloadFile", ({ enumerable: true, get: function () { return download_1.downloadFile; } }));
|
202014
202050
|
Object.defineProperty(exports, "isSymbolicLink", ({ enumerable: true, get: function () { return download_1.isSymbolicLink; } }));
|
202015
|
-
const get_writable_directory_1 = __importDefault(
|
202051
|
+
const get_writable_directory_1 = __importDefault(__nested_webpack_require_882902__(3838));
|
202016
202052
|
exports.getWriteableDirectory = get_writable_directory_1.default;
|
202017
|
-
const glob_1 = __importDefault(
|
202053
|
+
const glob_1 = __importDefault(__nested_webpack_require_882902__(4240));
|
202018
202054
|
exports.glob = glob_1.default;
|
202019
|
-
const rename_1 = __importDefault(
|
202055
|
+
const rename_1 = __importDefault(__nested_webpack_require_882902__(6718));
|
202020
202056
|
exports.rename = rename_1.default;
|
202021
|
-
const run_user_scripts_1 =
|
202057
|
+
const run_user_scripts_1 = __nested_webpack_require_882902__(1442);
|
202022
202058
|
Object.defineProperty(exports, "execAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.execAsync; } }));
|
202023
202059
|
Object.defineProperty(exports, "spawnAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.spawnAsync; } }));
|
202024
202060
|
Object.defineProperty(exports, "execCommand", ({ enumerable: true, get: function () { return run_user_scripts_1.execCommand; } }));
|
@@ -202037,33 +202073,35 @@ Object.defineProperty(exports, "getNodeVersion", ({ enumerable: true, get: funct
|
|
202037
202073
|
Object.defineProperty(exports, "getSpawnOptions", ({ enumerable: true, get: function () { return run_user_scripts_1.getSpawnOptions; } }));
|
202038
202074
|
Object.defineProperty(exports, "getNodeBinPath", ({ enumerable: true, get: function () { return run_user_scripts_1.getNodeBinPath; } }));
|
202039
202075
|
Object.defineProperty(exports, "scanParentDirs", ({ enumerable: true, get: function () { return run_user_scripts_1.scanParentDirs; } }));
|
202040
|
-
const node_version_1 =
|
202076
|
+
const node_version_1 = __nested_webpack_require_882902__(7903);
|
202041
202077
|
Object.defineProperty(exports, "getLatestNodeVersion", ({ enumerable: true, get: function () { return node_version_1.getLatestNodeVersion; } }));
|
202042
202078
|
Object.defineProperty(exports, "getDiscontinuedNodeVersions", ({ enumerable: true, get: function () { return node_version_1.getDiscontinuedNodeVersions; } }));
|
202043
|
-
const stream_to_buffer_1 = __importDefault(
|
202079
|
+
const stream_to_buffer_1 = __importDefault(__nested_webpack_require_882902__(2560));
|
202044
202080
|
exports.streamToBuffer = stream_to_buffer_1.default;
|
202045
|
-
const debug_1 = __importDefault(
|
202081
|
+
const debug_1 = __importDefault(__nested_webpack_require_882902__(1868));
|
202046
202082
|
exports.debug = debug_1.default;
|
202047
|
-
const get_ignore_filter_1 = __importDefault(
|
202083
|
+
const get_ignore_filter_1 = __importDefault(__nested_webpack_require_882902__(1148));
|
202048
202084
|
exports.getIgnoreFilter = get_ignore_filter_1.default;
|
202049
|
-
const get_platform_env_1 =
|
202085
|
+
const get_platform_env_1 = __nested_webpack_require_882902__(4678);
|
202050
202086
|
Object.defineProperty(exports, "getPlatformEnv", ({ enumerable: true, get: function () { return get_platform_env_1.getPlatformEnv; } }));
|
202051
|
-
|
202087
|
+
const get_prefixed_env_vars_1 = __nested_webpack_require_882902__(6838);
|
202088
|
+
Object.defineProperty(exports, "getPrefixedEnvVars", ({ enumerable: true, get: function () { return get_prefixed_env_vars_1.getPrefixedEnvVars; } }));
|
202089
|
+
var edge_function_1 = __nested_webpack_require_882902__(8038);
|
202052
202090
|
Object.defineProperty(exports, "EdgeFunction", ({ enumerable: true, get: function () { return edge_function_1.EdgeFunction; } }));
|
202053
|
-
var read_config_file_1 =
|
202091
|
+
var read_config_file_1 = __nested_webpack_require_882902__(7792);
|
202054
202092
|
Object.defineProperty(exports, "readConfigFile", ({ enumerable: true, get: function () { return read_config_file_1.readConfigFile; } }));
|
202055
|
-
var normalize_path_1 =
|
202093
|
+
var normalize_path_1 = __nested_webpack_require_882902__(6261);
|
202056
202094
|
Object.defineProperty(exports, "normalizePath", ({ enumerable: true, get: function () { return normalize_path_1.normalizePath; } }));
|
202057
|
-
__exportStar(
|
202058
|
-
__exportStar(
|
202059
|
-
__exportStar(
|
202060
|
-
__exportStar(
|
202095
|
+
__exportStar(__nested_webpack_require_882902__(2564), exports);
|
202096
|
+
__exportStar(__nested_webpack_require_882902__(2416), exports);
|
202097
|
+
__exportStar(__nested_webpack_require_882902__(5748), exports);
|
202098
|
+
__exportStar(__nested_webpack_require_882902__(3983), exports);
|
202061
202099
|
|
202062
202100
|
|
202063
202101
|
/***/ }),
|
202064
202102
|
|
202065
202103
|
/***/ 6721:
|
202066
|
-
/***/ (function(__unused_webpack_module, exports,
|
202104
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_891535__) {
|
202067
202105
|
|
202068
202106
|
"use strict";
|
202069
202107
|
|
@@ -202072,16 +202110,16 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
202072
202110
|
};
|
202073
202111
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
202074
202112
|
exports.getLambdaOptionsFromFunction = exports.createZip = exports.createLambda = exports.Lambda = void 0;
|
202075
|
-
const assert_1 = __importDefault(
|
202076
|
-
const async_sema_1 = __importDefault(
|
202077
|
-
const yazl_1 =
|
202078
|
-
const minimatch_1 = __importDefault(
|
202079
|
-
const fs_extra_1 =
|
202080
|
-
const download_1 =
|
202081
|
-
const stream_to_buffer_1 = __importDefault(
|
202113
|
+
const assert_1 = __importDefault(__nested_webpack_require_891535__(2357));
|
202114
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_891535__(5758));
|
202115
|
+
const yazl_1 = __nested_webpack_require_891535__(1223);
|
202116
|
+
const minimatch_1 = __importDefault(__nested_webpack_require_891535__(9566));
|
202117
|
+
const fs_extra_1 = __nested_webpack_require_891535__(5392);
|
202118
|
+
const download_1 = __nested_webpack_require_891535__(1611);
|
202119
|
+
const stream_to_buffer_1 = __importDefault(__nested_webpack_require_891535__(2560));
|
202082
202120
|
class Lambda {
|
202083
202121
|
constructor(opts) {
|
202084
|
-
const { handler, runtime, maxDuration, memory, environment = {}, allowQuery, regions, supportsMultiPayloads, } = opts;
|
202122
|
+
const { handler, runtime, maxDuration, memory, environment = {}, allowQuery, regions, supportsMultiPayloads, supportsWrapper, } = opts;
|
202085
202123
|
if ('files' in opts) {
|
202086
202124
|
assert_1.default(typeof opts.files === 'object', '"files" must be an object');
|
202087
202125
|
}
|
@@ -202104,6 +202142,9 @@ class Lambda {
|
|
202104
202142
|
if (supportsMultiPayloads !== undefined) {
|
202105
202143
|
assert_1.default(typeof supportsMultiPayloads === 'boolean', '"supportsMultiPayloads" is not a boolean');
|
202106
202144
|
}
|
202145
|
+
if (supportsWrapper !== undefined) {
|
202146
|
+
assert_1.default(typeof supportsWrapper === 'boolean', '"supportsWrapper" is not a boolean');
|
202147
|
+
}
|
202107
202148
|
if (regions !== undefined) {
|
202108
202149
|
assert_1.default(Array.isArray(regions), '"regions" is not an Array');
|
202109
202150
|
assert_1.default(regions.every(r => typeof r === 'string'), '"regions" is not a string Array');
|
@@ -202119,6 +202160,7 @@ class Lambda {
|
|
202119
202160
|
this.regions = regions;
|
202120
202161
|
this.zipBuffer = 'zipBuffer' in opts ? opts.zipBuffer : undefined;
|
202121
202162
|
this.supportsMultiPayloads = supportsMultiPayloads;
|
202163
|
+
this.supportsWrapper = supportsWrapper;
|
202122
202164
|
}
|
202123
202165
|
async createZip() {
|
202124
202166
|
let { zipBuffer } = this;
|
@@ -202200,13 +202242,13 @@ exports.getLambdaOptionsFromFunction = getLambdaOptionsFromFunction;
|
|
202200
202242
|
/***/ }),
|
202201
202243
|
|
202202
202244
|
/***/ 7049:
|
202203
|
-
/***/ ((__unused_webpack_module, exports,
|
202245
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_897218__) => {
|
202204
202246
|
|
202205
202247
|
"use strict";
|
202206
202248
|
|
202207
202249
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
202208
202250
|
exports.NodejsLambda = void 0;
|
202209
|
-
const lambda_1 =
|
202251
|
+
const lambda_1 = __nested_webpack_require_897218__(6721);
|
202210
202252
|
class NodejsLambda extends lambda_1.Lambda {
|
202211
202253
|
constructor({ shouldAddHelpers, shouldAddSourcemapSupport, awsLambdaHandler, ...opts }) {
|
202212
202254
|
super(opts);
|
@@ -202343,13 +202385,13 @@ exports.buildsSchema = {
|
|
202343
202385
|
/***/ }),
|
202344
202386
|
|
202345
202387
|
/***/ 2564:
|
202346
|
-
/***/ ((__unused_webpack_module, exports,
|
202388
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_901563__) => {
|
202347
202389
|
|
202348
202390
|
"use strict";
|
202349
202391
|
|
202350
202392
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
202351
202393
|
exports.shouldServe = void 0;
|
202352
|
-
const path_1 =
|
202394
|
+
const path_1 = __nested_webpack_require_901563__(5622);
|
202353
202395
|
const shouldServe = ({ entrypoint, files, requestPath, }) => {
|
202354
202396
|
requestPath = requestPath.replace(/\/$/, ''); // sanitize trailing '/'
|
202355
202397
|
entrypoint = entrypoint.replace(/\\/, '/'); // windows compatibility
|
@@ -202594,7 +202636,7 @@ module.exports = __webpack_require__(78761);
|
|
202594
202636
|
/******/ var __webpack_module_cache__ = {};
|
202595
202637
|
/******/
|
202596
202638
|
/******/ // The require function
|
202597
|
-
/******/ function
|
202639
|
+
/******/ function __nested_webpack_require_1278928__(moduleId) {
|
202598
202640
|
/******/ // Check if module is in cache
|
202599
202641
|
/******/ if(__webpack_module_cache__[moduleId]) {
|
202600
202642
|
/******/ return __webpack_module_cache__[moduleId].exports;
|
@@ -202609,7 +202651,7 @@ module.exports = __webpack_require__(78761);
|
|
202609
202651
|
/******/ // Execute the module function
|
202610
202652
|
/******/ var threw = true;
|
202611
202653
|
/******/ try {
|
202612
|
-
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports,
|
202654
|
+
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __nested_webpack_require_1278928__);
|
202613
202655
|
/******/ threw = false;
|
202614
202656
|
/******/ } finally {
|
202615
202657
|
/******/ if(threw) delete __webpack_module_cache__[moduleId];
|
@@ -202622,11 +202664,11 @@ module.exports = __webpack_require__(78761);
|
|
202622
202664
|
/************************************************************************/
|
202623
202665
|
/******/ /* webpack/runtime/compat */
|
202624
202666
|
/******/
|
202625
|
-
/******/
|
202667
|
+
/******/ __nested_webpack_require_1278928__.ab = __dirname + "/";/************************************************************************/
|
202626
202668
|
/******/ // module exports must be returned from runtime so entry inlining is disabled
|
202627
202669
|
/******/ // startup
|
202628
202670
|
/******/ // Load entry module and return exports
|
202629
|
-
/******/ return
|
202671
|
+
/******/ return __nested_webpack_require_1278928__(2855);
|
202630
202672
|
/******/ })()
|
202631
202673
|
;
|
202632
202674
|
|
@@ -215150,7 +215192,8 @@ async function run({ output, contextName, currentTeam, client }) {
|
|
215150
215192
|
|
215151
215193
|
if (theSecret) {
|
215152
215194
|
const yes =
|
215153
|
-
argv.yes ||
|
215195
|
+
argv.yes ||
|
215196
|
+
(await readConfirmation(client, output, theSecret, contextName));
|
215154
215197
|
if (!yes) {
|
215155
215198
|
output.print(`Aborted. Secret not deleted.\n`);
|
215156
215199
|
return 0;
|
@@ -215277,7 +215320,7 @@ async function run({ output, contextName, currentTeam, client }) {
|
|
215277
215320
|
return 2;
|
215278
215321
|
}
|
215279
215322
|
|
215280
|
-
async function readConfirmation(output, secret, contextName) {
|
215323
|
+
async function readConfirmation(client, output, secret, contextName) {
|
215281
215324
|
const time = source_default().gray(`${(0,ms_default())(new Date() - new Date(secret.created))} ago`);
|
215282
215325
|
const tbl = (0,text_table_default())([[source_default().bold(secret.name), time]], {
|
215283
215326
|
align: ['r', 'l'],
|
@@ -215291,7 +215334,7 @@ async function readConfirmation(output, secret, contextName) {
|
|
215291
215334
|
);
|
215292
215335
|
output.print(` ${tbl}\n`);
|
215293
215336
|
|
215294
|
-
return (0,input_confirm.default)(`${source_default().bold.red('Are you sure?')}`, false);
|
215337
|
+
return (0,input_confirm.default)(client, `${source_default().bold.red('Are you sure?')}`, false);
|
215295
215338
|
}
|
215296
215339
|
|
215297
215340
|
|
@@ -238039,6 +238082,7 @@ const help = () => {
|
|
238039
238082
|
-t ${chalk_1.default.bold.underline('TOKEN')}, --token=${chalk_1.default.bold.underline('TOKEN')} Login token
|
238040
238083
|
-S, --scope Set a custom scope
|
238041
238084
|
-N, --next Show next page of results
|
238085
|
+
-y, --yes Skip the confirmation prompt when removing an alias
|
238042
238086
|
|
238043
238087
|
${chalk_1.default.dim('Examples:')}
|
238044
238088
|
|
@@ -238880,7 +238924,7 @@ const help = () => {
|
|
238880
238924
|
--output [path] Directory where built assets should be written to
|
238881
238925
|
--prod Build a production deployment
|
238882
238926
|
-d, --debug Debug mode [off]
|
238883
|
-
-y, --yes
|
238927
|
+
-y, --yes Pull environment variables and project settings if not found locally
|
238884
238928
|
|
238885
238929
|
${chalk_1.default.dim('Examples:')}
|
238886
238930
|
|
@@ -238928,7 +238972,7 @@ async function main(client) {
|
|
238928
238972
|
let confirmed = yes;
|
238929
238973
|
if (!confirmed) {
|
238930
238974
|
if (!isTTY) {
|
238931
|
-
client.output.print(`No Project Settings found locally. Run ${cli.getCommandName('pull --yes')} to
|
238975
|
+
client.output.print(`No Project Settings found locally. Run ${cli.getCommandName('pull --yes')} to retrieve them.`);
|
238932
238976
|
return 1;
|
238933
238977
|
}
|
238934
238978
|
confirmed = await (0, confirm_1.default)(client, `No Project Settings found locally. Run ${cli.getCommandName('pull')} for retrieving them?`, true);
|
@@ -239910,7 +239954,7 @@ const help = () => `
|
|
239910
239954
|
-S, --scope Set a custom scope
|
239911
239955
|
--regions Set default regions to enable the deployment on
|
239912
239956
|
--prod Create a production deployment
|
239913
|
-
-
|
239957
|
+
-y, --yes Skip questions when setting up new project using default scope and settings
|
239914
239958
|
|
239915
239959
|
${chalk_1.default.dim('Examples:')}
|
239916
239960
|
|
@@ -240025,19 +240069,25 @@ exports.default = async (client) => {
|
|
240025
240069
|
'--regions': String,
|
240026
240070
|
'--prebuilt': Boolean,
|
240027
240071
|
'--prod': Boolean,
|
240028
|
-
'--
|
240072
|
+
'--yes': Boolean,
|
240029
240073
|
'-f': '--force',
|
240030
240074
|
'-p': '--public',
|
240031
240075
|
'-e': '--env',
|
240032
240076
|
'-b': '--build-env',
|
240033
240077
|
'-m': '--meta',
|
240034
|
-
'-
|
240078
|
+
'-y': '--yes',
|
240035
240079
|
// deprecated
|
240036
240080
|
'--name': String,
|
240037
240081
|
'-n': '--name',
|
240038
240082
|
'--no-clipboard': Boolean,
|
240039
240083
|
'--target': String,
|
240084
|
+
'--confirm': Boolean,
|
240085
|
+
'-c': '--confirm',
|
240040
240086
|
});
|
240087
|
+
if ('--confirm' in argv) {
|
240088
|
+
output.warn('`--confirm` is deprecated, please use `--yes` instead');
|
240089
|
+
argv['--yes'] = argv['--confirm'];
|
240090
|
+
}
|
240041
240091
|
}
|
240042
240092
|
catch (error) {
|
240043
240093
|
(0, error_1.handleError)(error);
|
@@ -240095,7 +240145,7 @@ exports.default = async (client) => {
|
|
240095
240145
|
return pathValidation.exitCode;
|
240096
240146
|
}
|
240097
240147
|
const { path } = pathValidation;
|
240098
|
-
const autoConfirm = argv['--
|
240148
|
+
const autoConfirm = argv['--yes'];
|
240099
240149
|
// deprecate --name
|
240100
240150
|
if (argv['--name']) {
|
240101
240151
|
output.print(`${(0, emoji_1.prependEmoji)(`The ${(0, param_1.default)('--name')} option is deprecated (https://vercel.link/name-flag)`, (0, emoji_1.emoji)('warning'))}\n`);
|
@@ -240572,7 +240622,7 @@ async function dev(client, opts, args) {
|
|
240572
240622
|
]);
|
240573
240623
|
if (link.status === 'not_linked' && !process.env.__VERCEL_SKIP_DEV_CMD) {
|
240574
240624
|
link = await (0, setup_and_link_1.default)(client, cwd, {
|
240575
|
-
autoConfirm: opts['--
|
240625
|
+
autoConfirm: opts['--yes'],
|
240576
240626
|
successEmoji: 'link',
|
240577
240627
|
setupMsg: 'Set up and develop',
|
240578
240628
|
});
|
@@ -240583,12 +240633,11 @@ async function dev(client, opts, args) {
|
|
240583
240633
|
}
|
240584
240634
|
if (link.status === 'error') {
|
240585
240635
|
if (link.reason === 'HEADLESS') {
|
240586
|
-
client.output.error(`Command ${(0, pkg_name_1.getCommandName)('dev')} requires confirmation. Use option ${(0, param_1.default)('--
|
240636
|
+
client.output.error(`Command ${(0, pkg_name_1.getCommandName)('dev')} requires confirmation. Use option ${(0, param_1.default)('--yes')} to confirm.`);
|
240587
240637
|
}
|
240588
240638
|
return link.exitCode;
|
240589
240639
|
}
|
240590
240640
|
let devCommand;
|
240591
|
-
let frameworkSlug;
|
240592
240641
|
let projectSettings;
|
240593
240642
|
let projectEnvs = [];
|
240594
240643
|
let systemEnvValues = [];
|
@@ -240602,9 +240651,6 @@ async function dev(client, opts, args) {
|
|
240602
240651
|
else if (project.framework) {
|
240603
240652
|
const framework = frameworks.find(f => f.slug === project.framework);
|
240604
240653
|
if (framework) {
|
240605
|
-
if (framework.slug) {
|
240606
|
-
frameworkSlug = framework.slug;
|
240607
|
-
}
|
240608
240654
|
const defaults = framework.settings.devCommand.value;
|
240609
240655
|
if (defaults) {
|
240610
240656
|
devCommand = defaults;
|
@@ -240639,7 +240685,6 @@ async function dev(client, opts, args) {
|
|
240639
240685
|
const devServer = new server_1.default(cwd, {
|
240640
240686
|
output,
|
240641
240687
|
devCommand,
|
240642
|
-
frameworkSlug,
|
240643
240688
|
projectSettings,
|
240644
240689
|
projectEnvs,
|
240645
240690
|
systemEnvValues,
|
@@ -240690,7 +240735,7 @@ const help = () => {
|
|
240690
240735
|
-d, --debug Debug mode [off]
|
240691
240736
|
-l, --listen [uri] Specify a URI endpoint on which to listen [0.0.0.0:3000]
|
240692
240737
|
-t, --token [token] Specify an Authorization Token
|
240693
|
-
--
|
240738
|
+
-y, --yes Skip questions when setting up new project using default scope and settings
|
240694
240739
|
|
240695
240740
|
${chalk_1.default.dim('Examples:')}
|
240696
240741
|
|
@@ -240719,12 +240764,19 @@ async function main(client) {
|
|
240719
240764
|
argv = (0, get_args_1.default)(client.argv.slice(2), {
|
240720
240765
|
'--listen': String,
|
240721
240766
|
'-l': '--listen',
|
240722
|
-
'--
|
240767
|
+
'--yes': Boolean,
|
240768
|
+
'-y': '--yes',
|
240723
240769
|
// Deprecated
|
240724
240770
|
'--port': Number,
|
240725
240771
|
'-p': '--port',
|
240772
|
+
'--confirm': Boolean,
|
240773
|
+
'-c': '--confirm',
|
240726
240774
|
});
|
240727
240775
|
args = (0, get_subcommand_1.default)(argv._.slice(1), COMMAND_CONFIG).args;
|
240776
|
+
if ('--confirm' in argv) {
|
240777
|
+
output.warn('`--confirm` is deprecated, please use `--yes` instead');
|
240778
|
+
argv['--yes'] = argv['--confirm'];
|
240779
|
+
}
|
240728
240780
|
if ('--port' in argv) {
|
240729
240781
|
output.warn('`--port` is deprecated, please use `--listen` instead');
|
240730
240782
|
argv['--listen'] = String(argv['--port']);
|
@@ -241473,6 +241525,7 @@ const help = () => {
|
|
241473
241525
|
-t ${chalk_1.default.bold.underline('TOKEN')}, --token=${chalk_1.default.bold.underline('TOKEN')} Login token
|
241474
241526
|
-S, --scope Set a custom scope
|
241475
241527
|
-N, --next Show next page of results
|
241528
|
+
-y, --yes Skip the confirmation prompt when removing a domain
|
241476
241529
|
|
241477
241530
|
${chalk_1.default.dim('Examples:')}
|
241478
241531
|
|
@@ -241509,6 +241562,7 @@ async function main(client) {
|
|
241509
241562
|
'--force': Boolean,
|
241510
241563
|
'--next': Number,
|
241511
241564
|
'-N': '--next',
|
241565
|
+
'-y': '--yes',
|
241512
241566
|
});
|
241513
241567
|
}
|
241514
241568
|
catch (error) {
|
@@ -242344,6 +242398,7 @@ const help = () => {
|
|
242344
242398
|
-Q ${chalk_1.default.bold.underline('DIR')}, --global-config=${chalk_1.default.bold.underline('DIR')} Path to the global ${'`.vercel`'} directory
|
242345
242399
|
-d, --debug Debug mode [off]
|
242346
242400
|
-t ${chalk_1.default.bold.underline('TOKEN')}, --token=${chalk_1.default.bold.underline('TOKEN')} Login token
|
242401
|
+
-y, --yes Skip the confirmation prompt when overwriting env file on pull or removing an env variable
|
242347
242402
|
|
242348
242403
|
${chalk_1.default.dim('Examples:')}
|
242349
242404
|
|
@@ -242759,7 +242814,7 @@ const connect_git_provider_1 = __webpack_require__(35650);
|
|
242759
242814
|
const validate_paths_1 = __importDefault(__webpack_require__(54579));
|
242760
242815
|
async function connect(client, argv, args, project, org) {
|
242761
242816
|
const { output } = client;
|
242762
|
-
const confirm = Boolean(argv['--
|
242817
|
+
const confirm = Boolean(argv['--yes']);
|
242763
242818
|
if (args.length !== 0) {
|
242764
242819
|
output.error(`Invalid number of arguments. Usage: ${chalk_1.default.cyan(`${(0, pkg_name_1.getCommandName)('project connect')}`)}`);
|
242765
242820
|
return 2;
|
@@ -242941,13 +242996,14 @@ const help = () => {
|
|
242941
242996
|
|
242942
242997
|
${chalk_1.default.dim('Commands:')}
|
242943
242998
|
|
242944
|
-
connect
|
242945
|
-
disconnect
|
242999
|
+
connect Connect your Git config "origin" remote as a Git provider to your project
|
243000
|
+
disconnect Disconnect the Git provider repository from your project
|
242946
243001
|
|
242947
243002
|
${chalk_1.default.dim('Options:')}
|
242948
243003
|
|
242949
|
-
-h, --help
|
242950
|
-
-t ${chalk_1.default.bold.underline('TOKEN')}, --token=${chalk_1.default.bold.underline('TOKEN')}
|
243004
|
+
-h, --help Output usage information
|
243005
|
+
-t ${chalk_1.default.bold.underline('TOKEN')}, --token=${chalk_1.default.bold.underline('TOKEN')} Login token
|
243006
|
+
-y, --yes Skip questions when setting up new project using default scope and settings
|
242951
243007
|
|
242952
243008
|
${chalk_1.default.dim('Examples:')}
|
242953
243009
|
|
@@ -242969,7 +243025,11 @@ async function main(client) {
|
|
242969
243025
|
let subcommand;
|
242970
243026
|
try {
|
242971
243027
|
argv = (0, get_args_1.default)(client.argv.slice(2), {
|
242972
|
-
'--
|
243028
|
+
'--yes': Boolean,
|
243029
|
+
'-y': '--yes',
|
243030
|
+
// deprecated
|
243031
|
+
'-c': '--yes',
|
243032
|
+
'--confirm': '--yes',
|
242973
243033
|
});
|
242974
243034
|
}
|
242975
243035
|
catch (error) {
|
@@ -242983,7 +243043,7 @@ async function main(client) {
|
|
242983
243043
|
argv._ = argv._.slice(1);
|
242984
243044
|
subcommand = argv._[0];
|
242985
243045
|
const args = argv._.slice(1);
|
242986
|
-
const confirm = Boolean(argv['--
|
243046
|
+
const confirm = Boolean(argv['--yes']);
|
242987
243047
|
const { output } = client;
|
242988
243048
|
let paths = [process.cwd()];
|
242989
243049
|
const pathValidation = await (0, validate_paths_1.default)(client, paths);
|
@@ -243512,7 +243572,7 @@ const help = () => {
|
|
243512
243572
|
-d, --debug Debug mode [off]
|
243513
243573
|
-t ${chalk_1.default.bold.underline('TOKEN')}, --token=${chalk_1.default.bold.underline('TOKEN')} Login token
|
243514
243574
|
-p ${chalk_1.default.bold.underline('NAME')}, --project=${chalk_1.default.bold.underline('NAME')} Project name
|
243515
|
-
--
|
243575
|
+
-y, --yes Skip questions when setting up new project using default scope and settings
|
243516
243576
|
|
243517
243577
|
${chalk_1.default.dim('Examples:')}
|
243518
243578
|
|
@@ -243522,7 +243582,7 @@ const help = () => {
|
|
243522
243582
|
|
243523
243583
|
${chalk_1.default.gray('–')} Link current directory with default options and skip questions
|
243524
243584
|
|
243525
|
-
${chalk_1.default.cyan(`$ ${(0, pkg_name_1.getPkgName)()} link --
|
243585
|
+
${chalk_1.default.cyan(`$ ${(0, pkg_name_1.getPkgName)()} link --yes`)}
|
243526
243586
|
|
243527
243587
|
${chalk_1.default.gray('–')} Link a specific directory to a Vercel Project
|
243528
243588
|
|
@@ -243531,25 +243591,33 @@ const help = () => {
|
|
243531
243591
|
};
|
243532
243592
|
async function main(client) {
|
243533
243593
|
const argv = (0, get_args_1.default)(client.argv.slice(2), {
|
243534
|
-
'--
|
243594
|
+
'--yes': Boolean,
|
243595
|
+
'-y': '--yes',
|
243535
243596
|
'--project': String,
|
243536
243597
|
'-p': '--project',
|
243598
|
+
// deprecated
|
243599
|
+
'--confirm': Boolean,
|
243600
|
+
'-c': '--confirm',
|
243537
243601
|
});
|
243538
243602
|
if (argv['--help']) {
|
243539
243603
|
help();
|
243540
243604
|
return 2;
|
243541
243605
|
}
|
243606
|
+
if ('--confirm' in argv) {
|
243607
|
+
client.output.warn('`--confirm` is deprecated, please use `--yes` instead');
|
243608
|
+
argv['--yes'] = argv['--confirm'];
|
243609
|
+
}
|
243542
243610
|
const cwd = argv._[1] || process.cwd();
|
243543
243611
|
const link = await (0, setup_and_link_1.default)(client, cwd, {
|
243544
243612
|
forceDelete: true,
|
243545
|
-
autoConfirm: argv['--
|
243613
|
+
autoConfirm: argv['--yes'],
|
243546
243614
|
projectName: argv['--project'],
|
243547
243615
|
successEmoji: 'success',
|
243548
243616
|
setupMsg: 'Set up',
|
243549
243617
|
});
|
243550
243618
|
if (link.status === 'error') {
|
243551
243619
|
if (link.reason === 'HEADLESS') {
|
243552
|
-
client.output.error(`Command ${(0, pkg_name_2.getCommandName)('link')} requires confirmation. Use option ${(0, param_1.default)('--
|
243620
|
+
client.output.error(`Command ${(0, pkg_name_2.getCommandName)('link')} requires confirmation. Use option ${(0, param_1.default)('--yes')} to confirm.`);
|
243553
243621
|
}
|
243554
243622
|
return link.exitCode;
|
243555
243623
|
}
|
@@ -243611,7 +243679,7 @@ const help = () => {
|
|
243611
243679
|
-A ${chalk_1.default.bold.underline('FILE')}, --local-config=${chalk_1.default.bold.underline('FILE')} Path to the local ${'`vercel.json`'} file
|
243612
243680
|
-Q ${chalk_1.default.bold.underline('DIR')}, --global-config=${chalk_1.default.bold.underline('DIR')} Path to the global ${'`.vercel`'} directory
|
243613
243681
|
-d, --debug Debug mode [off]
|
243614
|
-
--
|
243682
|
+
-y, --yes Skip questions when setting up new project using default scope and settings
|
243615
243683
|
-t ${chalk_1.default.bold.underline('TOKEN')}, --token=${chalk_1.default.bold.underline('TOKEN')} Login token
|
243616
243684
|
-S, --scope Set a custom scope
|
243617
243685
|
-m, --meta Filter deployments by metadata (e.g.: ${chalk_1.default.dim('`-m KEY=value`')}). Can appear many times.
|
@@ -243644,7 +243712,11 @@ async function main(client) {
|
|
243644
243712
|
'-m': '--meta',
|
243645
243713
|
'--next': Number,
|
243646
243714
|
'-N': '--next',
|
243715
|
+
'--yes': Boolean,
|
243716
|
+
'-y': '--yes',
|
243717
|
+
// deprecated
|
243647
243718
|
'--confirm': Boolean,
|
243719
|
+
'-c': '--confirm',
|
243648
243720
|
});
|
243649
243721
|
}
|
243650
243722
|
catch (err) {
|
@@ -243652,6 +243724,10 @@ async function main(client) {
|
|
243652
243724
|
return 1;
|
243653
243725
|
}
|
243654
243726
|
const { output, config } = client;
|
243727
|
+
if ('--confirm' in argv) {
|
243728
|
+
output.warn('`--confirm` is deprecated, please use `--yes` instead');
|
243729
|
+
argv['--yes'] = argv['--confirm'];
|
243730
|
+
}
|
243655
243731
|
const { print, log, error, note, debug, spinner } = output;
|
243656
243732
|
if (argv._.length > 2) {
|
243657
243733
|
error(`${(0, pkg_name_1.getCommandName)('ls [app]')} accepts at most one argument`);
|
@@ -243661,7 +243737,7 @@ async function main(client) {
|
|
243661
243737
|
help();
|
243662
243738
|
return 2;
|
243663
243739
|
}
|
243664
|
-
const yes = argv['--
|
243740
|
+
const yes = !!argv['--yes'];
|
243665
243741
|
const meta = (0, parse_meta_1.default)(argv['--meta']);
|
243666
243742
|
const { includeScheme } = config;
|
243667
243743
|
let paths = [process.cwd()];
|
@@ -244642,7 +244718,7 @@ const help = () => {
|
|
244642
244718
|
-Q ${chalk_1.default.bold.underline('DIR')}, --global-config=${chalk_1.default.bold.underline('DIR')} Path to the global ${'`.vercel`'} directory
|
244643
244719
|
-d, --debug Debug mode [off]
|
244644
244720
|
--environment [environment] Deployment environment [development]
|
244645
|
-
-y, --yes Skip
|
244721
|
+
-y, --yes Skip questions when setting up new project using default scope and settings
|
244646
244722
|
|
244647
244723
|
${chalk_1.default.dim('Examples:')}
|
244648
244724
|
|
@@ -251083,7 +251159,6 @@ class DevServer {
|
|
251083
251159
|
this.address = '';
|
251084
251160
|
this.devCommand = options.devCommand;
|
251085
251161
|
this.projectSettings = options.projectSettings;
|
251086
|
-
this.frameworkSlug = options.frameworkSlug;
|
251087
251162
|
this.caseSensitive = false;
|
251088
251163
|
this.apiDir = null;
|
251089
251164
|
this.apiExtensions = new Set();
|
@@ -252021,7 +252096,10 @@ class DevServer {
|
|
252021
252096
|
// Because of child process 'pipe' below, isTTY will be false.
|
252022
252097
|
// Most frameworks use `chalk`/`supports-color` so we enable it anyway.
|
252023
252098
|
FORCE_COLOR: process.stdout.isTTY ? '1' : '0',
|
252024
|
-
|
252099
|
+
// Prevent framework dev servers from automatically opening a web
|
252100
|
+
// browser window, since it will not be the port that `vc dev`
|
252101
|
+
// is listening on and thus will be missing Vercel features.
|
252102
|
+
BROWSER: 'none',
|
252025
252103
|
...process.env,
|
252026
252104
|
...this.envConfigs.allEnv,
|
252027
252105
|
PORT: `${port}`,
|
@@ -261030,7 +261108,7 @@ module.exports = JSON.parse("{\"application/1d-interleaved-parityfec\":{\"source
|
|
261030
261108
|
/***/ ((module) => {
|
261031
261109
|
|
261032
261110
|
"use strict";
|
261033
|
-
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"27.
|
261111
|
+
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"27.4.0\",\"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.3.0\",\"@vercel/go\":\"2.1.0\",\"@vercel/hydrogen\":\"0.0.13\",\"@vercel/next\":\"3.1.17\",\"@vercel/node\":\"2.5.7\",\"@vercel/python\":\"3.1.8\",\"@vercel/redwood\":\"1.0.17\",\"@vercel/remix\":\"1.0.18\",\"@vercel/ruby\":\"1.3.24\",\"@vercel/static-build\":\"1.0.17\",\"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/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\",\"@types/yauzl-promise\":\"2.1.0\",\"@vercel/client\":\"12.1.11\",\"@vercel/frameworks\":\"1.1.3\",\"@vercel/fs-detectors\":\"2.0.5\",\"@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\",\"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\",\"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\",\"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-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\"]}}");
|
261034
261112
|
|
261035
261113
|
/***/ }),
|
261036
261114
|
|
@@ -261046,7 +261124,7 @@ module.exports = JSON.parse("{\"VISA\":\"Visa\",\"MASTERCARD\":\"MasterCard\",\"
|
|
261046
261124
|
/***/ ((module) => {
|
261047
261125
|
|
261048
261126
|
"use strict";
|
261049
|
-
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"12.1.
|
261127
|
+
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"12.1.11\",\"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\",\"typescript\":\"4.3.4\"},\"jest\":{\"preset\":\"ts-jest\",\"testEnvironment\":\"node\",\"verbose\":false,\"setupFilesAfterEnv\":[\"<rootDir>/tests/setup/index.ts\"]},\"dependencies\":{\"@vercel/build-utils\":\"5.3.0\",\"@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\"}}");
|
261050
261128
|
|
261051
261129
|
/***/ }),
|
261052
261130
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "vercel",
|
3
|
-
"version": "27.
|
3
|
+
"version": "27.4.0",
|
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.
|
45
|
-
"@vercel/go": "2.0
|
46
|
-
"@vercel/hydrogen": "0.0.
|
47
|
-
"@vercel/next": "3.1.
|
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.3.0",
|
45
|
+
"@vercel/go": "2.1.0",
|
46
|
+
"@vercel/hydrogen": "0.0.13",
|
47
|
+
"@vercel/next": "3.1.17",
|
48
|
+
"@vercel/node": "2.5.7",
|
49
|
+
"@vercel/python": "3.1.8",
|
50
|
+
"@vercel/redwood": "1.0.17",
|
51
|
+
"@vercel/remix": "1.0.18",
|
52
|
+
"@vercel/ruby": "1.3.24",
|
53
|
+
"@vercel/static-build": "1.0.17",
|
54
54
|
"update-notifier": "5.1.0"
|
55
55
|
},
|
56
56
|
"devDependencies": {
|
@@ -96,9 +96,9 @@
|
|
96
96
|
"@types/which": "1.3.2",
|
97
97
|
"@types/write-json-file": "2.2.1",
|
98
98
|
"@types/yauzl-promise": "2.1.0",
|
99
|
-
"@vercel/client": "12.1.
|
100
|
-
"@vercel/frameworks": "1.1.
|
101
|
-
"@vercel/fs-detectors": "2.0.
|
99
|
+
"@vercel/client": "12.1.11",
|
100
|
+
"@vercel/frameworks": "1.1.3",
|
101
|
+
"@vercel/fs-detectors": "2.0.5",
|
102
102
|
"@vercel/fun": "1.0.4",
|
103
103
|
"@vercel/ncc": "0.24.0",
|
104
104
|
"@zeit/source-map-support": "0.6.2",
|
@@ -196,5 +196,5 @@
|
|
196
196
|
"<rootDir>/test/**/*.test.ts"
|
197
197
|
]
|
198
198
|
},
|
199
|
-
"gitHead": "
|
199
|
+
"gitHead": "31f79c7de1944420b1f6fa5be9235c9b3f1d62b6"
|
200
200
|
}
|