vercel 28.1.1 → 28.1.4
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 +3 -250
- package/package.json +13 -13
package/dist/index.js
CHANGED
@@ -244668,7 +244668,7 @@ async function connectGitProvider(client, org, projectId, type, repo) {
|
|
244668
244668
|
const apiError = (0, errors_ts_1.isAPIError)(err);
|
244669
244669
|
if (apiError &&
|
244670
244670
|
(err.action === 'Install GitHub App' || err.code === 'repo_not_found')) {
|
244671
|
-
client.output.error(`Failed to
|
244671
|
+
client.output.error(`Failed to connect ${chalk_1.default.cyan(repo)} to project. Make sure there aren't any typos and that you have access to the repository if it's private.`);
|
244672
244672
|
}
|
244673
244673
|
else if (apiError && err.action === 'Add a Login Connection') {
|
244674
244674
|
client.output.error(err.message.replace(repo, chalk_1.default.cyan(repo)) +
|
@@ -246460,237 +246460,6 @@ function isValidName(name = '') {
|
|
246460
246460
|
exports.isValidName = isValidName;
|
246461
246461
|
|
246462
246462
|
|
246463
|
-
/***/ }),
|
246464
|
-
|
246465
|
-
/***/ 44866:
|
246466
|
-
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
246467
|
-
|
246468
|
-
"use strict";
|
246469
|
-
|
246470
|
-
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
246471
|
-
exports.addGitConnection = void 0;
|
246472
|
-
const connect_git_provider_1 = __webpack_require__(18258);
|
246473
|
-
const handle_options_1 = __webpack_require__(30201);
|
246474
|
-
const git_connect_prompts_1 = __webpack_require__(12373);
|
246475
|
-
function getProjectSettings(project) {
|
246476
|
-
return {
|
246477
|
-
createdAt: project.createdAt,
|
246478
|
-
framework: project.framework,
|
246479
|
-
devCommand: project.devCommand,
|
246480
|
-
installCommand: project.installCommand,
|
246481
|
-
buildCommand: project.buildCommand,
|
246482
|
-
outputDirectory: project.outputDirectory,
|
246483
|
-
rootDirectory: project.rootDirectory,
|
246484
|
-
directoryListing: project.directoryListing,
|
246485
|
-
nodeVersion: project.nodeVersion,
|
246486
|
-
skipGitConnectDuringLink: project.skipGitConnectDuringLink,
|
246487
|
-
};
|
246488
|
-
}
|
246489
|
-
async function addGitConnection(client, org, project, remoteUrls, autoConfirm, settings) {
|
246490
|
-
if (!settings) {
|
246491
|
-
settings = getProjectSettings(project);
|
246492
|
-
}
|
246493
|
-
if (Object.keys(remoteUrls).length === 1) {
|
246494
|
-
return addSingleGitRemote(client, org, project, remoteUrls, settings || project, autoConfirm);
|
246495
|
-
}
|
246496
|
-
else if (Object.keys(remoteUrls).length > 1 && !project.link) {
|
246497
|
-
return addMultipleGitRemotes(client, org, project, remoteUrls, settings || project, autoConfirm);
|
246498
|
-
}
|
246499
|
-
}
|
246500
|
-
exports.addGitConnection = addGitConnection;
|
246501
|
-
async function addSingleGitRemote(client, org, project, remoteUrls, settings, autoConfirm) {
|
246502
|
-
const [remoteName, remoteUrl] = Object.entries(remoteUrls)[0];
|
246503
|
-
const repoInfo = (0, connect_git_provider_1.parseRepoUrl)(remoteUrl);
|
246504
|
-
if (!repoInfo) {
|
246505
|
-
client.output.debug(`Could not parse repo url ${repoInfo}.`);
|
246506
|
-
return 1;
|
246507
|
-
}
|
246508
|
-
const { org: parsedOrg, repo, provider } = repoInfo;
|
246509
|
-
const alreadyLinked = project.link &&
|
246510
|
-
project.link.org === parsedOrg &&
|
246511
|
-
project.link.repo === repo &&
|
246512
|
-
project.link.type === provider;
|
246513
|
-
if (alreadyLinked) {
|
246514
|
-
client.output.debug('Project already linked. Skipping...');
|
246515
|
-
return;
|
246516
|
-
}
|
246517
|
-
const replace = project.link &&
|
246518
|
-
(project.link.org !== parsedOrg ||
|
246519
|
-
project.link.repo !== repo ||
|
246520
|
-
project.link.type !== provider);
|
246521
|
-
let shouldConnectOption;
|
246522
|
-
if (autoConfirm) {
|
246523
|
-
shouldConnectOption = 'yes';
|
246524
|
-
}
|
246525
|
-
else {
|
246526
|
-
shouldConnectOption = await (0, git_connect_prompts_1.promptGitConnectSingleUrl)(client, project, remoteName, remoteUrl, replace);
|
246527
|
-
}
|
246528
|
-
return (0, handle_options_1.handleOptions)(shouldConnectOption, client, org, project, settings, repoInfo);
|
246529
|
-
}
|
246530
|
-
async function addMultipleGitRemotes(client, org, project, remoteUrls, settings, autoConfirm) {
|
246531
|
-
let remoteUrl;
|
246532
|
-
if (autoConfirm) {
|
246533
|
-
remoteUrl = remoteUrls['origin'] || Object.values(remoteUrls)[0];
|
246534
|
-
}
|
246535
|
-
else {
|
246536
|
-
client.output.log('Found multiple Git remote URLs in Git config.');
|
246537
|
-
remoteUrl = await (0, git_connect_prompts_1.promptGitConnectMultipleUrls)(client, remoteUrls);
|
246538
|
-
}
|
246539
|
-
return (0, handle_options_1.handleOptions)(remoteUrl, client, org, project, settings);
|
246540
|
-
}
|
246541
|
-
|
246542
|
-
|
246543
|
-
/***/ }),
|
246544
|
-
|
246545
|
-
/***/ 12373:
|
246546
|
-
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
246547
|
-
|
246548
|
-
"use strict";
|
246549
|
-
|
246550
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
246551
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
246552
|
-
};
|
246553
|
-
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
246554
|
-
exports.promptGitConnectMultipleUrls = exports.promptGitConnectSingleUrl = void 0;
|
246555
|
-
const chalk_1 = __importDefault(__webpack_require__(961));
|
246556
|
-
const connect_git_provider_1 = __webpack_require__(18258);
|
246557
|
-
const list_1 = __importDefault(__webpack_require__(95144));
|
246558
|
-
async function promptGitConnectSingleUrl(client, project, remoteName, remoteUrl, hasDiffConnectedProvider = false) {
|
246559
|
-
const { output } = client;
|
246560
|
-
if (hasDiffConnectedProvider) {
|
246561
|
-
const currentRepoPath = `${project.link.org}/${project.link.repo}`;
|
246562
|
-
const currentProvider = project.link.type;
|
246563
|
-
output.print('\n');
|
246564
|
-
output.log(`Found Git remote URL ${chalk_1.default.cyan(remoteUrl)}, which is different from the connected ${(0, connect_git_provider_1.formatProvider)(currentProvider)} repository ${chalk_1.default.cyan(currentRepoPath)}.`);
|
246565
|
-
}
|
246566
|
-
else {
|
246567
|
-
output.print('\n');
|
246568
|
-
output.log(`Found local Git remote "${remoteName}": ${chalk_1.default.cyan(remoteUrl)}`);
|
246569
|
-
}
|
246570
|
-
return await (0, list_1.default)(client, {
|
246571
|
-
message: hasDiffConnectedProvider
|
246572
|
-
? 'Do you want to replace it?'
|
246573
|
-
: `Do you want to connect "${remoteName}" to your Vercel project?`,
|
246574
|
-
choices: [
|
246575
|
-
{
|
246576
|
-
name: 'Yes',
|
246577
|
-
value: 'yes',
|
246578
|
-
short: 'yes',
|
246579
|
-
},
|
246580
|
-
{
|
246581
|
-
name: 'No',
|
246582
|
-
value: 'no',
|
246583
|
-
short: 'no',
|
246584
|
-
},
|
246585
|
-
{
|
246586
|
-
name: 'Do not ask again for this project',
|
246587
|
-
value: 'opt-out',
|
246588
|
-
short: 'no (opt out)',
|
246589
|
-
},
|
246590
|
-
],
|
246591
|
-
});
|
246592
|
-
}
|
246593
|
-
exports.promptGitConnectSingleUrl = promptGitConnectSingleUrl;
|
246594
|
-
async function promptGitConnectMultipleUrls(client, remoteUrls) {
|
246595
|
-
const staticOptions = [
|
246596
|
-
{
|
246597
|
-
name: 'No',
|
246598
|
-
value: 'no',
|
246599
|
-
short: 'no',
|
246600
|
-
},
|
246601
|
-
{
|
246602
|
-
name: 'Do not ask again for this project',
|
246603
|
-
value: 'opt-out',
|
246604
|
-
short: 'no (opt out)',
|
246605
|
-
},
|
246606
|
-
];
|
246607
|
-
let choices = [];
|
246608
|
-
for (const url of Object.values(remoteUrls)) {
|
246609
|
-
choices.push({
|
246610
|
-
name: url,
|
246611
|
-
value: url,
|
246612
|
-
short: url,
|
246613
|
-
});
|
246614
|
-
}
|
246615
|
-
choices = choices.concat(staticOptions);
|
246616
|
-
return await (0, list_1.default)(client, {
|
246617
|
-
message: 'Do you want to connect a Git repository to your Vercel project?',
|
246618
|
-
choices,
|
246619
|
-
});
|
246620
|
-
}
|
246621
|
-
exports.promptGitConnectMultipleUrls = promptGitConnectMultipleUrls;
|
246622
|
-
|
246623
|
-
|
246624
|
-
/***/ }),
|
246625
|
-
|
246626
|
-
/***/ 30201:
|
246627
|
-
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
246628
|
-
|
246629
|
-
"use strict";
|
246630
|
-
|
246631
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
246632
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
246633
|
-
};
|
246634
|
-
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
246635
|
-
exports.handleOptions = void 0;
|
246636
|
-
const chalk_1 = __importDefault(__webpack_require__(961));
|
246637
|
-
const connect_git_provider_1 = __webpack_require__(18258);
|
246638
|
-
const pkg_name_1 = __webpack_require__(98106);
|
246639
|
-
const update_project_1 = __importDefault(__webpack_require__(28311));
|
246640
|
-
async function handleOptions(option, client, org, project, settings, repoInfo) {
|
246641
|
-
const { output } = client;
|
246642
|
-
if (option === 'no') {
|
246643
|
-
skip(output);
|
246644
|
-
return;
|
246645
|
-
}
|
246646
|
-
else if (option === 'opt-out') {
|
246647
|
-
optOut(client, project, settings);
|
246648
|
-
return;
|
246649
|
-
}
|
246650
|
-
else if (option !== '') {
|
246651
|
-
// Option is "yes" or a URL
|
246652
|
-
// Ensure parsed url exists
|
246653
|
-
if (!repoInfo) {
|
246654
|
-
const _repoInfo = (0, connect_git_provider_1.parseRepoUrl)(option);
|
246655
|
-
if (!_repoInfo) {
|
246656
|
-
output.debug(`Could not parse repo url ${option}.`);
|
246657
|
-
return 1;
|
246658
|
-
}
|
246659
|
-
repoInfo = _repoInfo;
|
246660
|
-
}
|
246661
|
-
return connect(client, org, project, repoInfo);
|
246662
|
-
}
|
246663
|
-
}
|
246664
|
-
exports.handleOptions = handleOptions;
|
246665
|
-
async function optOut(client, project, settings) {
|
246666
|
-
settings.skipGitConnectDuringLink = true;
|
246667
|
-
await (0, update_project_1.default)(client, project.name, settings);
|
246668
|
-
client.output
|
246669
|
-
.log(`Opted out. You can re-enable this prompt by visiting the Settings > Git page on the
|
246670
|
-
dashboard for this Project.`);
|
246671
|
-
}
|
246672
|
-
function skip(output) {
|
246673
|
-
output.log('Skipping...');
|
246674
|
-
output.log(`You can connect a Git repository in the future by running ${(0, pkg_name_1.getCommandName)('git connect')}.`);
|
246675
|
-
}
|
246676
|
-
async function connect(client, org, project, repoInfo) {
|
246677
|
-
const { output } = client;
|
246678
|
-
const { provider, org: parsedOrg, repo } = repoInfo;
|
246679
|
-
const repoPath = `${parsedOrg}/${repo}`;
|
246680
|
-
output.log('Connecting...');
|
246681
|
-
if (project.link) {
|
246682
|
-
await (0, connect_git_provider_1.disconnectGitProvider)(client, org, project.id);
|
246683
|
-
}
|
246684
|
-
const connect = await (0, connect_git_provider_1.connectGitProvider)(client, org, project.id, provider, repoPath);
|
246685
|
-
if (connect !== 1) {
|
246686
|
-
output.log(`Connected ${(0, connect_git_provider_1.formatProvider)(provider)} repository ${chalk_1.default.cyan(repoPath)}!`);
|
246687
|
-
}
|
246688
|
-
else {
|
246689
|
-
return connect;
|
246690
|
-
}
|
246691
|
-
}
|
246692
|
-
|
246693
|
-
|
246694
246463
|
/***/ }),
|
246695
246464
|
|
246696
246465
|
/***/ 69532:
|
@@ -246721,8 +246490,6 @@ const stamp_1 = __importDefault(__webpack_require__(92205));
|
|
246721
246490
|
const create_deploy_1 = __importDefault(__webpack_require__(80974));
|
246722
246491
|
const index_1 = __importDefault(__webpack_require__(60487));
|
246723
246492
|
const errors_ts_1 = __webpack_require__(60156);
|
246724
|
-
const create_git_meta_1 = __webpack_require__(21084);
|
246725
|
-
const add_git_connection_1 = __webpack_require__(44866);
|
246726
246493
|
async function setupAndLink(client, path, { forceDelete = false, autoConfirm = false, successEmoji, setupMsg, projectName, }) {
|
246727
246494
|
const { localConfig, output, config } = client;
|
246728
246495
|
const debug = output.isDebugEnabled();
|
@@ -246779,13 +246546,6 @@ async function setupAndLink(client, path, { forceDelete = false, autoConfirm = f
|
|
246779
246546
|
}
|
246780
246547
|
else {
|
246781
246548
|
const project = projectOrNewProjectName;
|
246782
|
-
const remoteUrls = await (0, create_git_meta_1.getRemoteUrls)((0, path_1.join)(path, '.git/config'), output);
|
246783
|
-
if (remoteUrls && !project.skipGitConnectDuringLink) {
|
246784
|
-
const connectGit = await (0, add_git_connection_1.addGitConnection)(client, org, project, remoteUrls, autoConfirm);
|
246785
|
-
if (typeof connectGit === 'number') {
|
246786
|
-
return { status: 'error', exitCode: connectGit };
|
246787
|
-
}
|
246788
|
-
}
|
246789
246549
|
await (0, link_1.linkFolderToProject)(output, path, {
|
246790
246550
|
projectId: project.id,
|
246791
246551
|
orgId: org.id,
|
@@ -246858,13 +246618,6 @@ async function setupAndLink(client, path, { forceDelete = false, autoConfirm = f
|
|
246858
246618
|
settings.rootDirectory = rootDirectory;
|
246859
246619
|
}
|
246860
246620
|
const project = await (0, create_project_1.default)(client, newProjectName);
|
246861
|
-
const remoteUrls = await (0, create_git_meta_1.getRemoteUrls)((0, path_1.join)(path, '.git/config'), output);
|
246862
|
-
if (remoteUrls) {
|
246863
|
-
const connectGit = await (0, add_git_connection_1.addGitConnection)(client, org, project, remoteUrls, autoConfirm, settings);
|
246864
|
-
if (typeof connectGit === 'number') {
|
246865
|
-
return { status: 'error', exitCode: connectGit };
|
246866
|
-
}
|
246867
|
-
}
|
246868
246621
|
await (0, update_project_1.default)(client, project.id, settings);
|
246869
246622
|
Object.assign(project, settings);
|
246870
246623
|
await (0, link_1.linkFolderToProject)(output, path, {
|
@@ -249878,7 +249631,7 @@ module.exports = JSON.parse("{\"application/1d-interleaved-parityfec\":{\"source
|
|
249878
249631
|
/***/ ((module) => {
|
249879
249632
|
|
249880
249633
|
"use strict";
|
249881
|
-
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"28.1.
|
249634
|
+
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"28.1.4\",\"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.2\",\"@vercel/go\":\"2.2.2\",\"@vercel/hydrogen\":\"0.0.15\",\"@vercel/next\":\"3.1.21\",\"@vercel/node\":\"2.5.10\",\"@vercel/python\":\"3.1.11\",\"@vercel/redwood\":\"1.0.19\",\"@vercel/remix\":\"1.0.20\",\"@vercel/ruby\":\"1.3.28\",\"@vercel/static-build\":\"1.0.19\",\"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.2.1\",\"@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\",\"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\"]}}");
|
249882
249635
|
|
249883
249636
|
/***/ }),
|
249884
249637
|
|
@@ -249886,7 +249639,7 @@ module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"28.1.1\",\"prefe
|
|
249886
249639
|
/***/ ((module) => {
|
249887
249640
|
|
249888
249641
|
"use strict";
|
249889
|
-
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"12.2.
|
249642
|
+
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"12.2.1\",\"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\":\"^2.0.1\",\"typescript\":\"4.3.4\"},\"jest\":{\"preset\":\"ts-jest\",\"testEnvironment\":\"node\",\"verbose\":false,\"setupFilesAfterEnv\":[\"<rootDir>/tests/setup/index.ts\"]},\"dependencies\":{\"@vercel/build-utils\":\"5.3.2\",\"@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\"}}");
|
249890
249643
|
|
249891
249644
|
/***/ }),
|
249892
249645
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "vercel",
|
3
|
-
"version": "28.1.
|
3
|
+
"version": "28.1.4",
|
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.3.
|
45
|
-
"@vercel/go": "2.2.
|
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.2",
|
45
|
+
"@vercel/go": "2.2.2",
|
46
|
+
"@vercel/hydrogen": "0.0.15",
|
47
|
+
"@vercel/next": "3.1.21",
|
48
|
+
"@vercel/node": "2.5.10",
|
49
|
+
"@vercel/python": "3.1.11",
|
50
|
+
"@vercel/redwood": "1.0.19",
|
51
|
+
"@vercel/remix": "1.0.20",
|
52
|
+
"@vercel/ruby": "1.3.28",
|
53
|
+
"@vercel/static-build": "1.0.19",
|
54
54
|
"update-notifier": "5.1.0"
|
55
55
|
},
|
56
56
|
"devDependencies": {
|
@@ -96,7 +96,7 @@
|
|
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.2.
|
99
|
+
"@vercel/client": "12.2.1",
|
100
100
|
"@vercel/frameworks": "1.1.3",
|
101
101
|
"@vercel/fs-detectors": "2.0.5",
|
102
102
|
"@vercel/fun": "1.0.4",
|
@@ -195,5 +195,5 @@
|
|
195
195
|
"<rootDir>/test/**/*.test.ts"
|
196
196
|
]
|
197
197
|
},
|
198
|
-
"gitHead": "
|
198
|
+
"gitHead": "6700630feb23bdb4e94ea727911a9e10aa546361"
|
199
199
|
}
|