vercel 28.7.2 → 28.8.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 +81 -31
- package/package.json +3 -3
package/dist/index.js
CHANGED
@@ -232860,6 +232860,7 @@ const help = () => {
|
|
232860
232860
|
-S, --scope Set a custom scope
|
232861
232861
|
-N, --next Show next page of results
|
232862
232862
|
-y, --yes Skip the confirmation prompt when removing an alias
|
232863
|
+
--limit=${chalk_1.default.bold.underline('VALUE')} Number of results to return per page (default: 20, max: 100)
|
232863
232864
|
|
232864
232865
|
${chalk_1.default.dim('Examples:')}
|
232865
232866
|
|
@@ -232888,6 +232889,7 @@ async function main(client) {
|
|
232888
232889
|
'--json': Boolean,
|
232889
232890
|
'--yes': Boolean,
|
232890
232891
|
'--next': Number,
|
232892
|
+
'--limit': Number,
|
232891
232893
|
'-y': '--yes',
|
232892
232894
|
'-N': '--next',
|
232893
232895
|
});
|
@@ -232929,16 +232931,20 @@ const ms_1 = __importDefault(__webpack_require__(80040));
|
|
232929
232931
|
const text_table_1 = __importDefault(__webpack_require__(3221));
|
232930
232932
|
const get_aliases_1 = __importDefault(__webpack_require__(20066));
|
232931
232933
|
const get_scope_1 = __importDefault(__webpack_require__(73389));
|
232934
|
+
const get_pagination_opts_1 = __webpack_require__(20811);
|
232932
232935
|
const stamp_1 = __importDefault(__webpack_require__(92205));
|
232933
232936
|
const strlen_1 = __importDefault(__webpack_require__(17606));
|
232934
232937
|
const get_command_flags_1 = __importDefault(__webpack_require__(68927));
|
232935
232938
|
const pkg_name_1 = __webpack_require__(98106);
|
232936
232939
|
async function ls(client, opts, args) {
|
232937
232940
|
const { output } = client;
|
232938
|
-
const { '--next': nextTimestamp } = opts;
|
232939
232941
|
const { contextName } = await (0, get_scope_1.default)(client);
|
232940
|
-
|
232941
|
-
|
232942
|
+
let paginationOptions;
|
232943
|
+
try {
|
232944
|
+
paginationOptions = (0, get_pagination_opts_1.getPaginationOpts)(opts);
|
232945
|
+
}
|
232946
|
+
catch (err) {
|
232947
|
+
output.prettyError(err);
|
232942
232948
|
return 1;
|
232943
232949
|
}
|
232944
232950
|
const lsStamp = (0, stamp_1.default)();
|
@@ -232948,9 +232954,9 @@ async function ls(client, opts, args) {
|
|
232948
232954
|
}
|
232949
232955
|
output.spinner(`Fetching aliases under ${chalk_1.default.bold(contextName)}`);
|
232950
232956
|
// Get the list of alias
|
232951
|
-
const { aliases, pagination } = await (0, get_aliases_1.default)(client, undefined,
|
232957
|
+
const { aliases, pagination } = await (0, get_aliases_1.default)(client, undefined, ...paginationOptions);
|
232952
232958
|
output.log(`aliases found under ${chalk_1.default.bold(contextName)} ${lsStamp()}`);
|
232953
|
-
|
232959
|
+
output.log(printAliasTable(aliases));
|
232954
232960
|
if (pagination && pagination.count === 20) {
|
232955
232961
|
const flags = (0, get_command_flags_1.default)(opts, ['_', '--next']);
|
232956
232962
|
output.log(`To display the next page run ${(0, pkg_name_1.getCommandName)(`alias ls${flags} --next ${pagination.next}`)}`);
|
@@ -234261,6 +234267,7 @@ const help = () => {
|
|
234261
234267
|
--key ${chalk_1.default.bold.underline('FILE')} Certificate key file
|
234262
234268
|
--ca ${chalk_1.default.bold.underline('FILE')} CA certificate chain file
|
234263
234269
|
-N, --next Show next page of results
|
234270
|
+
--limit=${chalk_1.default.bold.underline('VALUE')} Number of results to return per page (default: 20, max: 100)
|
234264
234271
|
|
234265
234272
|
${chalk_1.default.dim('Examples:')}
|
234266
234273
|
|
@@ -234296,6 +234303,7 @@ async function main(client) {
|
|
234296
234303
|
'--ca': String,
|
234297
234304
|
'--next': Number,
|
234298
234305
|
'-N': '--next',
|
234306
|
+
'--limit': Number,
|
234299
234307
|
});
|
234300
234308
|
}
|
234301
234309
|
catch (err) {
|
@@ -234490,6 +234498,7 @@ const chalk_1 = __importDefault(__webpack_require__(961));
|
|
234490
234498
|
const ms_1 = __importDefault(__webpack_require__(80040));
|
234491
234499
|
const text_table_1 = __importDefault(__webpack_require__(3221));
|
234492
234500
|
const get_scope_1 = __importDefault(__webpack_require__(73389));
|
234501
|
+
const get_pagination_opts_1 = __webpack_require__(20811);
|
234493
234502
|
const stamp_1 = __importDefault(__webpack_require__(92205));
|
234494
234503
|
const get_certs_1 = __importDefault(__webpack_require__(89648));
|
234495
234504
|
const strlen_1 = __importDefault(__webpack_require__(17606));
|
@@ -234497,10 +234506,13 @@ const get_command_flags_1 = __importDefault(__webpack_require__(68927));
|
|
234497
234506
|
const pkg_name_1 = __webpack_require__(98106);
|
234498
234507
|
async function ls(client, opts, args) {
|
234499
234508
|
const { output } = client;
|
234500
|
-
const { '--next': nextTimestamp } = opts;
|
234501
234509
|
const { contextName } = await (0, get_scope_1.default)(client);
|
234502
|
-
|
234503
|
-
|
234510
|
+
let paginationOptions;
|
234511
|
+
try {
|
234512
|
+
paginationOptions = (0, get_pagination_opts_1.getPaginationOpts)(opts);
|
234513
|
+
}
|
234514
|
+
catch (err) {
|
234515
|
+
output.prettyError(err);
|
234504
234516
|
return 1;
|
234505
234517
|
}
|
234506
234518
|
const lsStamp = (0, stamp_1.default)();
|
@@ -234509,10 +234521,10 @@ async function ls(client, opts, args) {
|
|
234509
234521
|
return 1;
|
234510
234522
|
}
|
234511
234523
|
// Get the list of certificates
|
234512
|
-
const { certs, pagination } = await (0, get_certs_1.default)(client,
|
234524
|
+
const { certs, pagination } = await (0, get_certs_1.default)(client, ...paginationOptions).catch(err => err);
|
234513
234525
|
output.log(`${certs.length > 0 ? 'Certificates' : 'No certificates'} found under ${chalk_1.default.bold(contextName)} ${lsStamp()}`);
|
234514
234526
|
if (certs.length > 0) {
|
234515
|
-
|
234527
|
+
output.log(formatCertsTable(certs));
|
234516
234528
|
}
|
234517
234529
|
if (pagination && pagination.count === 20) {
|
234518
234530
|
const flags = (0, get_command_flags_1.default)(opts, ['_', '--next']);
|
@@ -235768,6 +235780,7 @@ const help = () => {
|
|
235768
235780
|
-t ${chalk_1.default.bold.underline('TOKEN')}, --token=${chalk_1.default.bold.underline('TOKEN')} Login token
|
235769
235781
|
-S, --scope Set a custom scope
|
235770
235782
|
-N, --next Show next page of results
|
235783
|
+
--limit=${chalk_1.default.bold.underline('VALUE')} Number of results to return per page (default: 20, max: 100)
|
235771
235784
|
|
235772
235785
|
${chalk_1.default.dim('Examples:')}
|
235773
235786
|
|
@@ -235811,7 +235824,11 @@ const COMMAND_CONFIG = {
|
|
235811
235824
|
async function main(client) {
|
235812
235825
|
let argv;
|
235813
235826
|
try {
|
235814
|
-
argv = (0, get_args_1.default)(client.argv.slice(2), {
|
235827
|
+
argv = (0, get_args_1.default)(client.argv.slice(2), {
|
235828
|
+
'--next': Number,
|
235829
|
+
'-N': '--next',
|
235830
|
+
'--limit': Number,
|
235831
|
+
});
|
235815
235832
|
}
|
235816
235833
|
catch (error) {
|
235817
235834
|
(0, handle_error_1.default)(error);
|
@@ -235854,12 +235871,12 @@ const format_table_1 = __importDefault(__webpack_require__(35982));
|
|
235854
235871
|
const get_dns_records_1 = __importDefault(__webpack_require__(7207));
|
235855
235872
|
const get_domain_dns_records_1 = __importDefault(__webpack_require__(60902));
|
235856
235873
|
const get_scope_1 = __importDefault(__webpack_require__(73389));
|
235874
|
+
const get_pagination_opts_1 = __webpack_require__(20811);
|
235857
235875
|
const stamp_1 = __importDefault(__webpack_require__(92205));
|
235858
235876
|
const get_command_flags_1 = __importDefault(__webpack_require__(68927));
|
235859
235877
|
const pkg_name_1 = __webpack_require__(98106);
|
235860
235878
|
async function ls(client, opts, args) {
|
235861
235879
|
const { output } = client;
|
235862
|
-
const { '--next': nextTimestamp } = opts;
|
235863
235880
|
const { contextName } = await (0, get_scope_1.default)(client);
|
235864
235881
|
const [domainName] = args;
|
235865
235882
|
const lsStamp = (0, stamp_1.default)();
|
@@ -235867,29 +235884,33 @@ async function ls(client, opts, args) {
|
|
235867
235884
|
output.error(`Invalid number of arguments. Usage: ${chalk_1.default.cyan(`${(0, pkg_name_1.getCommandName)('dns ls [domain]')}`)}`);
|
235868
235885
|
return 1;
|
235869
235886
|
}
|
235870
|
-
|
235871
|
-
|
235887
|
+
let paginationOptions;
|
235888
|
+
try {
|
235889
|
+
paginationOptions = (0, get_pagination_opts_1.getPaginationOpts)(opts);
|
235890
|
+
}
|
235891
|
+
catch (err) {
|
235892
|
+
output.prettyError(err);
|
235872
235893
|
return 1;
|
235873
235894
|
}
|
235874
235895
|
if (domainName) {
|
235875
|
-
const data = await (0, get_domain_dns_records_1.default)(output, client, domainName,
|
235896
|
+
const data = await (0, get_domain_dns_records_1.default)(output, client, domainName, 4, ...paginationOptions);
|
235876
235897
|
if (data instanceof errors_ts_1.DomainNotFound) {
|
235877
235898
|
output.error(`The domain ${domainName} can't be found under ${chalk_1.default.bold(contextName)} ${chalk_1.default.gray(lsStamp())}`);
|
235878
235899
|
return 1;
|
235879
235900
|
}
|
235880
235901
|
const { records, pagination } = data;
|
235881
235902
|
output.log(`${records.length > 0 ? 'Records' : 'No records'} found under ${chalk_1.default.bold(contextName)} ${chalk_1.default.gray(lsStamp())}`);
|
235882
|
-
|
235903
|
+
output.log(getDNSRecordsTable([{ domainName, records }]));
|
235883
235904
|
if (pagination && pagination.count === 20) {
|
235884
235905
|
const flags = (0, get_command_flags_1.default)(opts, ['_', '--next']);
|
235885
235906
|
output.log(`To display the next page run ${(0, pkg_name_1.getCommandName)(`dns ls ${domainName}${flags} --next ${pagination.next}`)}`);
|
235886
235907
|
}
|
235887
235908
|
return 0;
|
235888
235909
|
}
|
235889
|
-
const { records: dnsRecords, pagination } = await (0, get_dns_records_1.default)(output, client, contextName,
|
235910
|
+
const { records: dnsRecords, pagination } = await (0, get_dns_records_1.default)(output, client, contextName, ...paginationOptions);
|
235890
235911
|
const nRecords = dnsRecords.reduce((p, r) => r.records.length + p, 0);
|
235891
235912
|
output.log(`${nRecords > 0 ? 'Records' : 'No records'} found under ${chalk_1.default.bold(contextName)} ${chalk_1.default.gray(lsStamp())}`);
|
235892
|
-
|
235913
|
+
output.log(getDNSRecordsTable(dnsRecords));
|
235893
235914
|
if (pagination && pagination.count === 20) {
|
235894
235915
|
const flags = (0, get_command_flags_1.default)(opts, ['_', '--next']);
|
235895
235916
|
output.log(`To display the next page run ${(0, pkg_name_1.getCommandName)(`dns ls${flags} --next ${pagination.next}`)}`);
|
@@ -236305,6 +236326,7 @@ const help = () => {
|
|
236305
236326
|
-t ${chalk_1.default.bold.underline('TOKEN')}, --token=${chalk_1.default.bold.underline('TOKEN')} Login token
|
236306
236327
|
-S, --scope Set a custom scope
|
236307
236328
|
-N, --next Show next page of results
|
236329
|
+
--limit=${chalk_1.default.bold.underline('VALUE')} Number of results to return per page (default: 20, max: 100)
|
236308
236330
|
-y, --yes Skip the confirmation prompt when removing a domain
|
236309
236331
|
|
236310
236332
|
${chalk_1.default.dim('Examples:')}
|
@@ -236343,6 +236365,7 @@ async function main(client) {
|
|
236343
236365
|
'--next': Number,
|
236344
236366
|
'-N': '--next',
|
236345
236367
|
'-y': '--yes',
|
236368
|
+
'--limit': Number,
|
236346
236369
|
});
|
236347
236370
|
}
|
236348
236371
|
catch (error) {
|
@@ -236536,14 +236559,18 @@ const stamp_1 = __importDefault(__webpack_require__(92205));
|
|
236536
236559
|
const format_table_1 = __importDefault(__webpack_require__(35982));
|
236537
236560
|
const format_date_1 = __webpack_require__(17215);
|
236538
236561
|
const get_command_flags_1 = __importDefault(__webpack_require__(68927));
|
236562
|
+
const get_pagination_opts_1 = __webpack_require__(20811);
|
236539
236563
|
const pkg_name_1 = __webpack_require__(98106);
|
236540
236564
|
const is_domain_external_1 = __importDefault(__webpack_require__(47012));
|
236541
236565
|
const get_domain_registrar_1 = __webpack_require__(89886);
|
236542
236566
|
async function ls(client, opts, args) {
|
236543
236567
|
const { output } = client;
|
236544
|
-
|
236545
|
-
|
236546
|
-
|
236568
|
+
let paginationOptions;
|
236569
|
+
try {
|
236570
|
+
paginationOptions = (0, get_pagination_opts_1.getPaginationOpts)(opts);
|
236571
|
+
}
|
236572
|
+
catch (err) {
|
236573
|
+
output.prettyError(err);
|
236547
236574
|
return 1;
|
236548
236575
|
}
|
236549
236576
|
const { contextName } = await (0, get_scope_1.default)(client);
|
@@ -236553,7 +236580,7 @@ async function ls(client, opts, args) {
|
|
236553
236580
|
return 1;
|
236554
236581
|
}
|
236555
236582
|
output.spinner(`Fetching Domains under ${chalk_1.default.bold(contextName)}`);
|
236556
|
-
const { domains, pagination } = await (0, get_domains_1.default)(client,
|
236583
|
+
const { domains, pagination } = await (0, get_domains_1.default)(client, ...paginationOptions);
|
236557
236584
|
output.log(`${(0, pluralize_1.default)('Domain', domains.length, true)} found under ${chalk_1.default.bold(contextName)} ${chalk_1.default.gray(lsStamp())}`);
|
236558
236585
|
if (domains.length > 0) {
|
236559
236586
|
output.print(formatDomainsTable(domains).replace(/^(.*)/gm, `${' '.repeat(1)}$1`));
|
@@ -241566,8 +241593,8 @@ function getSafeAlias(alias) {
|
|
241566
241593
|
"use strict";
|
241567
241594
|
|
241568
241595
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
241569
|
-
async function getAliases(client, deploymentId, next) {
|
241570
|
-
let aliasUrl = `/v3/now/aliases?limit
|
241596
|
+
async function getAliases(client, deploymentId, next, limit = 20) {
|
241597
|
+
let aliasUrl = `/v3/now/aliases?limit=${limit}`;
|
241571
241598
|
if (next) {
|
241572
241599
|
aliasUrl += `&until=${next}`;
|
241573
241600
|
}
|
@@ -243005,8 +243032,8 @@ exports.getCertsForCn = getCertsForCn;
|
|
243005
243032
|
"use strict";
|
243006
243033
|
|
243007
243034
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
243008
|
-
async function getCerts(client, next) {
|
243009
|
-
let certsUrl = `/v4/now/certs?limit
|
243035
|
+
async function getCerts(client, next, limit = 20) {
|
243036
|
+
let certsUrl = `/v4/now/certs?limit=${limit}`;
|
243010
243037
|
if (next) {
|
243011
243038
|
certsUrl += `&until=${next}`;
|
243012
243039
|
}
|
@@ -247729,10 +247756,10 @@ async function getDomainNames(client, contextName, next) {
|
|
247729
247756
|
|
247730
247757
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
247731
247758
|
const errors_ts_1 = __webpack_require__(60156);
|
247732
|
-
async function getDomainDNSRecords(output, client, domain, nextTimestamp,
|
247759
|
+
async function getDomainDNSRecords(output, client, domain, apiVersion = 3, nextTimestamp, limit = 20) {
|
247733
247760
|
output.debug(`Fetching for DNS records of domain ${domain}`);
|
247734
247761
|
try {
|
247735
|
-
let url = `/v${apiVersion}/domains/${encodeURIComponent(domain)}/records?limit
|
247762
|
+
let url = `/v${apiVersion}/domains/${encodeURIComponent(domain)}/records?limit=${limit}`;
|
247736
247763
|
if (nextTimestamp) {
|
247737
247764
|
url += `&until=${nextTimestamp}`;
|
247738
247765
|
}
|
@@ -248106,8 +248133,8 @@ exports.getDomain = getDomain;
|
|
248106
248133
|
"use strict";
|
248107
248134
|
|
248108
248135
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
248109
|
-
async function getDomains(client, next) {
|
248110
|
-
let domainUrl = `/v5/domains?limit
|
248136
|
+
async function getDomains(client, next, limit = 20) {
|
248137
|
+
let domainUrl = `/v5/domains?limit=${limit}`;
|
248111
248138
|
if (next) {
|
248112
248139
|
domainUrl += `&until=${next}`;
|
248113
248140
|
}
|
@@ -250596,6 +250623,29 @@ function getInvalidSubcommand(config) {
|
|
250596
250623
|
exports.default = getInvalidSubcommand;
|
250597
250624
|
|
250598
250625
|
|
250626
|
+
/***/ }),
|
250627
|
+
|
250628
|
+
/***/ 20811:
|
250629
|
+
/***/ ((__unused_webpack_module, exports) => {
|
250630
|
+
|
250631
|
+
"use strict";
|
250632
|
+
|
250633
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
250634
|
+
exports.getPaginationOpts = void 0;
|
250635
|
+
function getPaginationOpts(opts) {
|
250636
|
+
const { '--next': nextTimestamp, '--limit': limit } = opts;
|
250637
|
+
if (typeof nextTimestamp !== undefined && Number.isNaN(nextTimestamp)) {
|
250638
|
+
throw new Error('Please provide a number for option --next');
|
250639
|
+
}
|
250640
|
+
if (typeof limit === 'number' &&
|
250641
|
+
(!Number.isInteger(limit) || limit > 100 || limit < 1)) {
|
250642
|
+
throw new Error('Please provide an integer from 1 to 100 for option --limit');
|
250643
|
+
}
|
250644
|
+
return [nextTimestamp, limit];
|
250645
|
+
}
|
250646
|
+
exports.getPaginationOpts = getPaginationOpts;
|
250647
|
+
|
250648
|
+
|
250599
250649
|
/***/ }),
|
250600
250650
|
|
250601
250651
|
/***/ 10959:
|
@@ -256306,7 +256356,7 @@ module.exports = JSON.parse("{\"application/1d-interleaved-parityfec\":{\"source
|
|
256306
256356
|
/***/ ((module) => {
|
256307
256357
|
|
256308
256358
|
"use strict";
|
256309
|
-
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"28.
|
256359
|
+
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"28.8.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 --bail\",\"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.7.0\",\"@vercel/go\":\"2.2.19\",\"@vercel/hydrogen\":\"0.0.33\",\"@vercel/next\":\"3.3.2\",\"@vercel/node\":\"2.8.0\",\"@vercel/python\":\"3.1.29\",\"@vercel/redwood\":\"1.0.39\",\"@vercel/remix\":\"1.1.1\",\"@vercel/ruby\":\"1.3.45\",\"@vercel/static-build\":\"1.0.42\",\"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\":\"14.18.33\",\"@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.21\",\"@vercel/error-utils\":\"1.0.3\",\"@vercel/frameworks\":\"1.1.14\",\"@vercel/fs-detectors\":\"3.5.4\",\"@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\",\"json5\":\"2.2.1\",\"jsonlines\":\"0.1.1\",\"line-async-iterator\":\"3.0.0\",\"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\",\"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\"]}}");
|
256310
256360
|
|
256311
256361
|
/***/ }),
|
256312
256362
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "vercel",
|
3
|
-
"version": "28.
|
3
|
+
"version": "28.8.0",
|
4
4
|
"preferGlobal": true,
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"description": "The command-line interface for Vercel",
|
@@ -45,7 +45,7 @@
|
|
45
45
|
"@vercel/go": "2.2.19",
|
46
46
|
"@vercel/hydrogen": "0.0.33",
|
47
47
|
"@vercel/next": "3.3.2",
|
48
|
-
"@vercel/node": "2.
|
48
|
+
"@vercel/node": "2.8.0",
|
49
49
|
"@vercel/python": "3.1.29",
|
50
50
|
"@vercel/redwood": "1.0.39",
|
51
51
|
"@vercel/remix": "1.1.1",
|
@@ -195,5 +195,5 @@
|
|
195
195
|
"<rootDir>/test/**/*.test.ts"
|
196
196
|
]
|
197
197
|
},
|
198
|
-
"gitHead": "
|
198
|
+
"gitHead": "584d0ea8535f1fad5588a4dc51269d4985a32875"
|
199
199
|
}
|