vercel 24.1.1-canary.2 → 24.1.1-canary.3
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 +31 -47
- package/package.json +13 -8
package/dist/index.js
CHANGED
@@ -211157,10 +211157,9 @@ const upload_1 = __webpack_require__(78617);
|
|
211157
211157
|
const utils_1 = __webpack_require__(52015);
|
211158
211158
|
const errors_1 = __webpack_require__(42054);
|
211159
211159
|
function buildCreateDeployment() {
|
211160
|
-
return async function* createDeployment(clientOptions, deploymentOptions = {}
|
211160
|
+
return async function* createDeployment(clientOptions, deploymentOptions = {}) {
|
211161
211161
|
const { path } = clientOptions;
|
211162
211162
|
const debug = utils_1.createDebug(clientOptions.debug);
|
211163
|
-
const cwd = process.cwd();
|
211164
211163
|
debug('Creating deployment...');
|
211165
211164
|
if (typeof path !== 'string' && !Array.isArray(path)) {
|
211166
211165
|
debug(`Error: 'path' is expected to be a string or an array. Received ${typeof path}`);
|
@@ -211204,26 +211203,6 @@ function buildCreateDeployment() {
|
|
211204
211203
|
debug(`Provided 'path' is a single file`);
|
211205
211204
|
}
|
211206
211205
|
const { fileList } = await utils_1.buildFileTree(path, clientOptions, debug);
|
211207
|
-
let configPath;
|
211208
|
-
if (!nowConfig) {
|
211209
|
-
// If the user did not provide a config file, use the one in the root directory.
|
211210
|
-
const relativePaths = fileList.map(f => path_1.relative(cwd, f));
|
211211
|
-
const hasVercelConfig = relativePaths.includes('vercel.json');
|
211212
|
-
const hasNowConfig = relativePaths.includes('now.json');
|
211213
|
-
if (hasVercelConfig) {
|
211214
|
-
if (hasNowConfig) {
|
211215
|
-
throw new errors_1.DeploymentError({
|
211216
|
-
code: 'conflicting_config',
|
211217
|
-
message: 'Cannot use both a `vercel.json` and `now.json` file. Please delete the `now.json` file.',
|
211218
|
-
});
|
211219
|
-
}
|
211220
|
-
configPath = 'vercel.json';
|
211221
|
-
}
|
211222
|
-
else if (hasNowConfig) {
|
211223
|
-
configPath = 'now.json';
|
211224
|
-
}
|
211225
|
-
nowConfig = await utils_1.parseVercelConfig(configPath);
|
211226
|
-
}
|
211227
211206
|
// This is a useful warning because it prevents people
|
211228
211207
|
// from getting confused about a deployment that renders 404.
|
211229
211208
|
if (fileList.length === 0) {
|
@@ -225656,6 +225635,11 @@ exports.default = async (client) => {
|
|
225656
225635
|
let rootDirectory = project ? project.rootDirectory : null;
|
225657
225636
|
let sourceFilesOutsideRootDirectory = true;
|
225658
225637
|
if (status === 'not_linked') {
|
225638
|
+
// In the future this will need to be implemented in both the CLI and vercel.com/new at the same time
|
225639
|
+
if (localConfig === null || localConfig === void 0 ? void 0 : localConfig.projectSettings) {
|
225640
|
+
output.error('Unexpected property detected in vercel.json: "projectSettings"');
|
225641
|
+
return 1;
|
225642
|
+
}
|
225659
225643
|
const shouldStartSetup = autoConfirm ||
|
225660
225644
|
(await confirm_1.default(`Set up and deploy ${chalk_1.default.cyan(`“${humanize_path_1.default(path)}”`)}?`, true));
|
225661
225645
|
if (!shouldStartSetup) {
|
@@ -225821,7 +225805,10 @@ exports.default = async (client) => {
|
|
225821
225805
|
};
|
225822
225806
|
if (!localConfig.builds || localConfig.builds.length === 0) {
|
225823
225807
|
// Only add projectSettings for zero config deployments
|
225824
|
-
createArgs.projectSettings = {
|
225808
|
+
createArgs.projectSettings = {
|
225809
|
+
...localConfig.projectSettings,
|
225810
|
+
sourceFilesOutsideRootDirectory,
|
225811
|
+
};
|
225825
225812
|
}
|
225826
225813
|
deployment = await create_deploy_1.default(client, now, contextName, [sourcePath], createArgs, org, !project, path);
|
225827
225814
|
if (deployment.code === 'missing_project_settings') {
|
@@ -225835,7 +225822,10 @@ exports.default = async (client) => {
|
|
225835
225822
|
}
|
225836
225823
|
const settings = await edit_project_settings_1.default(output, projectSettings, framework);
|
225837
225824
|
// deploy again, but send projectSettings this time
|
225838
|
-
createArgs.projectSettings =
|
225825
|
+
createArgs.projectSettings = {
|
225826
|
+
...settings,
|
225827
|
+
...localConfig.projectSettings,
|
225828
|
+
};
|
225839
225829
|
deployStamp = stamp_1.default();
|
225840
225830
|
createArgs.deployStamp = deployStamp;
|
225841
225831
|
deployment = await create_deploy_1.default(client, now, contextName, [sourcePath], createArgs, org, false, path);
|
@@ -228033,9 +228023,11 @@ async function main(client) {
|
|
228033
228023
|
help();
|
228034
228024
|
return 2;
|
228035
228025
|
}
|
228036
|
-
const
|
228026
|
+
const cwd = argv['--cwd'] || process.cwd();
|
228027
|
+
const subArgs = argv._.slice(1);
|
228028
|
+
const { subcommand, args } = get_subcommand_1.default(subArgs, COMMAND_CONFIG);
|
228037
228029
|
const { output, config } = client;
|
228038
|
-
const link = await link_1.getLinkedProject(client);
|
228030
|
+
const link = await link_1.getLinkedProject(client, cwd);
|
228039
228031
|
if (link.status === 'error') {
|
228040
228032
|
return link.exitCode;
|
228041
228033
|
}
|
@@ -228054,7 +228046,7 @@ async function main(client) {
|
|
228054
228046
|
case 'rm':
|
228055
228047
|
return rm_1.default(client, project, argv, args, output);
|
228056
228048
|
case 'pull':
|
228057
|
-
return pull_1.default(client, project, types_1.ProjectEnvTarget.Development, argv, args, output);
|
228049
|
+
return pull_1.default(client, project, types_1.ProjectEnvTarget.Development, argv, args, output, cwd);
|
228058
228050
|
default:
|
228059
228051
|
output.error(get_invalid_subcommand_1.default(COMMAND_CONFIG));
|
228060
228052
|
help();
|
@@ -228192,7 +228184,7 @@ function tryReadHeadSync(path, length) {
|
|
228192
228184
|
}
|
228193
228185
|
}
|
228194
228186
|
}
|
228195
|
-
async function pull(client, project, environment, opts, args, output, cwd
|
228187
|
+
async function pull(client, project, environment, opts, args, output, cwd) {
|
228196
228188
|
if (args.length > 1) {
|
228197
228189
|
output.error(`Invalid number of arguments. Usage: ${pkg_name_1.getCommandName(`env pull <file>`)}`);
|
228198
228190
|
return 1;
|
@@ -228212,7 +228204,7 @@ async function pull(client, project, environment, opts, args, output, cwd = proc
|
|
228212
228204
|
output.log('Aborted');
|
228213
228205
|
return 0;
|
228214
228206
|
}
|
228215
|
-
output.print(`Downloading
|
228207
|
+
output.print(`Downloading "${environment}" Environment Variables for Project ${chalk_1.default.bold(project.name)}\n`);
|
228216
228208
|
const pullStamp = stamp_1.default();
|
228217
228209
|
output.spinner('Downloading');
|
228218
228210
|
const [{ envs: projectEnvs }, { systemEnvValues }] = await Promise.all([
|
@@ -228221,7 +228213,7 @@ async function pull(client, project, environment, opts, args, output, cwd = proc
|
|
228221
228213
|
? get_system_env_values_1.default(output, client, project.id)
|
228222
228214
|
: { systemEnvValues: [] },
|
228223
228215
|
]);
|
228224
|
-
const records = expose_system_envs_1.default(projectEnvs, systemEnvValues, project.autoExposeSystemEnvs);
|
228216
|
+
const records = expose_system_envs_1.default(projectEnvs, systemEnvValues, project.autoExposeSystemEnvs, undefined, environment);
|
228225
228217
|
const contents = CONTENTS_PREFIX +
|
228226
228218
|
Object.entries(records)
|
228227
228219
|
.map(([key, value]) => `${key}="${escapeValue(value)}"`)
|
@@ -229823,7 +229815,6 @@ const chalk_1 = __importDefault(__webpack_require__(961));
|
|
229823
229815
|
const path_1 = __webpack_require__(85622);
|
229824
229816
|
const emoji_1 = __webpack_require__(41806);
|
229825
229817
|
const get_args_1 = __importDefault(__webpack_require__(87612));
|
229826
|
-
const handle_error_1 = __importDefault(__webpack_require__(70870));
|
229827
229818
|
const setup_and_link_1 = __importDefault(__webpack_require__(69532));
|
229828
229819
|
const logo_1 = __importDefault(__webpack_require__(9829));
|
229829
229820
|
const stamp_1 = __importDefault(__webpack_require__(92205));
|
@@ -229870,18 +229861,12 @@ function processArgs(client) {
|
|
229870
229861
|
});
|
229871
229862
|
}
|
229872
229863
|
function parseArgs(client) {
|
229873
|
-
|
229874
|
-
|
229875
|
-
|
229876
|
-
|
229877
|
-
return 2;
|
229878
|
-
}
|
229879
|
-
return argv;
|
229880
|
-
}
|
229881
|
-
catch (err) {
|
229882
|
-
handle_error_1.default(err);
|
229883
|
-
return 1;
|
229864
|
+
const argv = processArgs(client);
|
229865
|
+
if (argv['--help']) {
|
229866
|
+
help();
|
229867
|
+
return 2;
|
229884
229868
|
}
|
229869
|
+
return argv;
|
229885
229870
|
}
|
229886
229871
|
async function ensureLink(client, cwd, yes) {
|
229887
229872
|
let link = await link_1.getLinkedProject(client, cwd);
|
@@ -233367,7 +233352,7 @@ function printInspectUrl(output, inspectorUrl, deployStamp) {
|
|
233367
233352
|
output.print(emoji_1.prependEmoji(`Inspect: ${chalk_1.default.bold(inspectorUrl)} ${deployStamp()}`, emoji_1.emoji('inspect')) + `\n`);
|
233368
233353
|
}
|
233369
233354
|
async function processDeployment({ org, cwd, projectName, isSettingUpProject, skipAutoDetectionConfirmation, ...args }) {
|
233370
|
-
let { now, output, paths, requestBody, deployStamp, force, withCache,
|
233355
|
+
let { now, output, paths, requestBody, deployStamp, force, withCache, quiet, prebuilt, rootDirectory, } = args;
|
233371
233356
|
const { debug } = output;
|
233372
233357
|
let bar = null;
|
233373
233358
|
const { env = {} } = requestBody;
|
@@ -233395,7 +233380,7 @@ async function processDeployment({ org, cwd, projectName, isSettingUpProject, sk
|
|
233395
233380
|
// the deployment is done
|
233396
233381
|
const indications = [];
|
233397
233382
|
try {
|
233398
|
-
for await (const event of client_1.createDeployment(clientOptions, requestBody
|
233383
|
+
for await (const event of client_1.createDeployment(clientOptions, requestBody)) {
|
233399
233384
|
if (['tip', 'notice', 'warning'].includes(event.type)) {
|
233400
233385
|
indications.push(event);
|
233401
233386
|
}
|
@@ -240137,7 +240122,6 @@ class Now extends events_1.default {
|
|
240137
240122
|
uploadStamp,
|
240138
240123
|
deployStamp,
|
240139
240124
|
quiet,
|
240140
|
-
nowConfig,
|
240141
240125
|
force: forceNew,
|
240142
240126
|
withCache,
|
240143
240127
|
org,
|
@@ -244681,7 +244665,7 @@ module.exports = JSON.parse("[\"ac\",\"com.ac\",\"edu.ac\",\"gov.ac\",\"net.ac\"
|
|
244681
244665
|
/***/ ((module) => {
|
244682
244666
|
|
244683
244667
|
"use strict";
|
244684
|
-
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"24.1.1-canary.
|
244668
|
+
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"24.1.1-canary.3\",\"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\",\"test-unit\":\"jest --coverage --verbose\",\"test-integration-cli\":\"rimraf test/fixtures/integration && ava test/integration.js --serial --fail-fast --verbose\",\"test-integration-dev\":\"ava test/dev/integration.js --serial --fail-fast --verbose\",\"prepublishOnly\":\"yarn build\",\"coverage\":\"codecov\",\"build\":\"node -r ts-eager/register ./scripts/build.ts\",\"build-dev\":\"node -r ts-eager/register ./scripts/build.ts --dev\"},\"bin\":{\"vc\":\"./dist/index.js\",\"vercel\":\"./dist/index.js\"},\"files\":[\"dist\",\"scripts/preinstall.js\"],\"ava\":{\"compileEnhancements\":false,\"extensions\":[\"ts\"],\"require\":[\"ts-node/register/transpile-only\",\"esm\"]},\"engines\":{\"node\":\">= 12\"},\"dependencies\":{\"@vercel/build-utils\":\"2.15.2-canary.2\",\"@vercel/go\":\"1.3.3-canary.2\",\"@vercel/node\":\"1.14.2-canary.3\",\"@vercel/python\":\"2.2.3-canary.2\",\"@vercel/ruby\":\"1.3.3-canary.2\",\"update-notifier\":\"4.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\",\"@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/inquirer\":\"7.3.1\",\"@types/jest\":\"27.0.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\",\"@vercel/client\":\"10.4.2-canary.2\",\"@vercel/fetch-retry\":\"5.0.3\",\"@vercel/frameworks\":\"0.7.1\",\"@vercel/ncc\":\"0.24.0\",\"@zeit/fun\":\"0.11.2\",\"@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\",\"bytes\":\"3.0.0\",\"chalk\":\"4.1.0\",\"chance\":\"1.1.7\",\"chokidar\":\"3.3.1\",\"clipboardy\":\"2.1.0\",\"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\",\"glob\":\"7.1.2\",\"http-proxy\":\"1.18.1\",\"inquirer\":\"7.0.4\",\"is-docker\":\"2.2.1\",\"is-port-reachable\":\"3.0.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.1\",\"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\":\"8.3.0\",\"typescript\":\"4.3.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\"},\"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\"]},\"gitHead\":\"b61f049f1186ccc804cea35bcf61d16583ed6ca2\"}");
|
244685
244669
|
|
244686
244670
|
/***/ }),
|
244687
244671
|
|
@@ -244697,7 +244681,7 @@ module.exports = JSON.parse("{\"VISA\":\"Visa\",\"MASTERCARD\":\"MasterCard\",\"
|
|
244697
244681
|
/***/ ((module) => {
|
244698
244682
|
|
244699
244683
|
"use strict";
|
244700
|
-
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.4.2-canary.
|
244684
|
+
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.4.2-canary.2\",\"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\":\"jest --verbose --runInBand --bail tests/create-deployment.test.ts tests/create-legacy-deployment.test.ts tests/paths.test.ts\",\"test-unit\":\"jest --verbose --runInBand --bail tests/unit.*test.*\"},\"engines\":{\"node\":\">= 12\"},\"devDependencies\":{\"@types/async-retry\":\"1.4.1\",\"@types/fs-extra\":\"7.0.0\",\"@types/jest\":\"27.0.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\":\"2.15.2-canary.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.1\",\"querystring\":\"^0.2.0\",\"sleep-promise\":\"8.0.1\"},\"gitHead\":\"b61f049f1186ccc804cea35bcf61d16583ed6ca2\"}");
|
244701
244685
|
|
244702
244686
|
/***/ }),
|
244703
244687
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "vercel",
|
3
|
-
"version": "24.1.1-canary.
|
3
|
+
"version": "24.1.1-canary.3",
|
4
4
|
"preferGlobal": true,
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"description": "The command-line interface for Vercel",
|
@@ -43,14 +43,15 @@
|
|
43
43
|
"node": ">= 12"
|
44
44
|
},
|
45
45
|
"dependencies": {
|
46
|
-
"@vercel/build-utils": "2.15.2-canary.
|
47
|
-
"@vercel/go": "1.3.3-canary.
|
48
|
-
"@vercel/node": "1.14.2-canary.
|
49
|
-
"@vercel/python": "2.2.3-canary.
|
50
|
-
"@vercel/ruby": "1.3.3-canary.
|
46
|
+
"@vercel/build-utils": "2.15.2-canary.2",
|
47
|
+
"@vercel/go": "1.3.3-canary.2",
|
48
|
+
"@vercel/node": "1.14.2-canary.3",
|
49
|
+
"@vercel/python": "2.2.3-canary.2",
|
50
|
+
"@vercel/ruby": "1.3.3-canary.2",
|
51
51
|
"update-notifier": "4.1.0"
|
52
52
|
},
|
53
53
|
"devDependencies": {
|
54
|
+
"@alex_neo/jest-expect-message": "1.0.5",
|
54
55
|
"@next/env": "11.1.2",
|
55
56
|
"@sentry/node": "5.5.0",
|
56
57
|
"@sindresorhus/slugify": "0.11.0",
|
@@ -69,6 +70,7 @@
|
|
69
70
|
"@types/http-proxy": "1.16.2",
|
70
71
|
"@types/inquirer": "7.3.1",
|
71
72
|
"@types/jest": "27.0.1",
|
73
|
+
"@types/jest-expect-message": "1.0.3",
|
72
74
|
"@types/load-json-file": "2.0.7",
|
73
75
|
"@types/mime-types": "2.1.0",
|
74
76
|
"@types/minimatch": "3.0.3",
|
@@ -88,7 +90,7 @@
|
|
88
90
|
"@types/update-notifier": "5.1.0",
|
89
91
|
"@types/which": "1.3.2",
|
90
92
|
"@types/write-json-file": "2.2.1",
|
91
|
-
"@vercel/client": "10.4.2-canary.
|
93
|
+
"@vercel/client": "10.4.2-canary.2",
|
92
94
|
"@vercel/fetch-retry": "5.0.3",
|
93
95
|
"@vercel/frameworks": "0.7.1",
|
94
96
|
"@vercel/ncc": "0.24.0",
|
@@ -176,11 +178,14 @@
|
|
176
178
|
"isolatedModules": true
|
177
179
|
}
|
178
180
|
},
|
181
|
+
"setupFilesAfterEnv": [
|
182
|
+
"@alex_neo/jest-expect-message"
|
183
|
+
],
|
179
184
|
"verbose": false,
|
180
185
|
"testEnvironment": "node",
|
181
186
|
"testMatch": [
|
182
187
|
"<rootDir>/test/**/*.test.ts"
|
183
188
|
]
|
184
189
|
},
|
185
|
-
"gitHead": "
|
190
|
+
"gitHead": "b61f049f1186ccc804cea35bcf61d16583ed6ca2"
|
186
191
|
}
|