vercel 23.1.3-canary.64 → 23.1.3-canary.65
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 +66 -43
- package/package.json +3 -3
package/dist/index.js
CHANGED
@@ -238221,33 +238221,14 @@ exports.checkDeploymentStatus = checkDeploymentStatus;
|
|
238221
238221
|
/***/ }),
|
238222
238222
|
|
238223
238223
|
/***/ 97377:
|
238224
|
-
/***/ (
|
238224
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
238225
238225
|
|
238226
238226
|
"use strict";
|
238227
238227
|
|
238228
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
238229
|
-
if (k2 === undefined) k2 = k;
|
238230
|
-
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
238231
|
-
}) : (function(o, m, k, k2) {
|
238232
|
-
if (k2 === undefined) k2 = k;
|
238233
|
-
o[k2] = m[k];
|
238234
|
-
}));
|
238235
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
238236
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
238237
|
-
}) : function(o, v) {
|
238238
|
-
o["default"] = v;
|
238239
|
-
});
|
238240
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
238241
|
-
if (mod && mod.__esModule) return mod;
|
238242
|
-
var result = {};
|
238243
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
238244
|
-
__setModuleDefault(result, mod);
|
238245
|
-
return result;
|
238246
|
-
};
|
238247
238228
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
238248
238229
|
const fs_extra_1 = __webpack_require__(29394);
|
238249
238230
|
const path_1 = __webpack_require__(85622);
|
238250
|
-
const hashes_1 =
|
238231
|
+
const hashes_1 = __webpack_require__(91234);
|
238251
238232
|
const upload_1 = __webpack_require__(78617);
|
238252
238233
|
const utils_1 = __webpack_require__(52015);
|
238253
238234
|
const errors_1 = __webpack_require__(42054);
|
@@ -238298,7 +238279,7 @@ function buildCreateDeployment() {
|
|
238298
238279
|
else {
|
238299
238280
|
debug(`Provided 'path' is a single file`);
|
238300
238281
|
}
|
238301
|
-
let { fileList } = await utils_1.buildFileTree(path, clientOptions
|
238282
|
+
let { fileList } = await utils_1.buildFileTree(path, clientOptions, debug);
|
238302
238283
|
let configPath;
|
238303
238284
|
if (!nowConfig) {
|
238304
238285
|
// If the user did not provide a config file, use the one in the root directory.
|
@@ -238328,7 +238309,11 @@ function buildCreateDeployment() {
|
|
238328
238309
|
payload: 'There are no files inside your deployment.',
|
238329
238310
|
};
|
238330
238311
|
}
|
238331
|
-
const
|
238312
|
+
const hashedFileMap = await hashes_1.hashes(fileList);
|
238313
|
+
const nftFileList = clientOptions.prebuilt
|
238314
|
+
? await hashes_1.resolveNftJsonFiles(hashedFileMap)
|
238315
|
+
: [];
|
238316
|
+
const files = await hashes_1.hashes(nftFileList, hashedFileMap);
|
238332
238317
|
debug(`Yielding a 'hashes-calculated' event with ${files.size} hashes`);
|
238333
238318
|
yield { type: 'hashes-calculated', payload: hashes_1.mapToObject(files) };
|
238334
238319
|
if (clientOptions.apiUrl) {
|
@@ -238782,10 +238767,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
238782
238767
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
238783
238768
|
};
|
238784
238769
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
238785
|
-
exports.mapToObject = void 0;
|
238770
|
+
exports.resolveNftJsonFiles = exports.hashes = exports.mapToObject = void 0;
|
238786
238771
|
const crypto_1 = __webpack_require__(76417);
|
238787
238772
|
const fs_extra_1 = __importDefault(__webpack_require__(29394));
|
238788
238773
|
const async_sema_1 = __webpack_require__(30401);
|
238774
|
+
const path_1 = __webpack_require__(85622);
|
238789
238775
|
/**
|
238790
238776
|
* Computes a hash for the given buf.
|
238791
238777
|
*
|
@@ -238793,9 +238779,7 @@ const async_sema_1 = __webpack_require__(30401);
|
|
238793
238779
|
* @return {String} hex digest
|
238794
238780
|
*/
|
238795
238781
|
function hash(buf) {
|
238796
|
-
return crypto_1.createHash('sha1')
|
238797
|
-
.update(buf)
|
238798
|
-
.digest('hex');
|
238782
|
+
return crypto_1.createHash('sha1').update(buf).digest('hex');
|
238799
238783
|
}
|
238800
238784
|
/**
|
238801
238785
|
* Transforms map to object
|
@@ -238813,11 +238797,11 @@ exports.mapToObject = mapToObject;
|
|
238813
238797
|
/**
|
238814
238798
|
* Computes hashes for the contents of each file given.
|
238815
238799
|
*
|
238816
|
-
* @param
|
238817
|
-
* @
|
238800
|
+
* @param files - absolute file paths
|
238801
|
+
* @param map - optional map of files to append
|
238802
|
+
* @return Map of hash digest to file object
|
238818
238803
|
*/
|
238819
|
-
async function hashes(files) {
|
238820
|
-
const map = new Map();
|
238804
|
+
async function hashes(files, map = new Map()) {
|
238821
238805
|
const semaphore = new async_sema_1.Sema(100);
|
238822
238806
|
await Promise.all(files.map(async (name) => {
|
238823
238807
|
await semaphore.acquire();
|
@@ -238835,7 +238819,32 @@ async function hashes(files) {
|
|
238835
238819
|
}));
|
238836
238820
|
return map;
|
238837
238821
|
}
|
238838
|
-
exports.
|
238822
|
+
exports.hashes = hashes;
|
238823
|
+
async function resolveNftJsonFiles(hashedFiles) {
|
238824
|
+
const semaphore = new async_sema_1.Sema(100);
|
238825
|
+
const existingFiles = Array.from(hashedFiles.values());
|
238826
|
+
const resolvedFiles = new Set();
|
238827
|
+
await Promise.all(existingFiles.map(async (file) => {
|
238828
|
+
await semaphore.acquire();
|
238829
|
+
const fsPath = file.names[0];
|
238830
|
+
if (fsPath.endsWith('.nft.json')) {
|
238831
|
+
const json = file.data.toString('utf8');
|
238832
|
+
const { version, files } = JSON.parse(json);
|
238833
|
+
if (version === 1 || version === 2) {
|
238834
|
+
for (let f of files) {
|
238835
|
+
const relPath = typeof f === 'string' ? f : f.input;
|
238836
|
+
resolvedFiles.add(path_1.join(path_1.dirname(fsPath), relPath));
|
238837
|
+
}
|
238838
|
+
}
|
238839
|
+
else {
|
238840
|
+
console.error(`Invalid nft.json version: ${version}`);
|
238841
|
+
}
|
238842
|
+
}
|
238843
|
+
semaphore.release();
|
238844
|
+
}));
|
238845
|
+
return Array.from(resolvedFiles);
|
238846
|
+
}
|
238847
|
+
exports.resolveNftJsonFiles = resolveNftJsonFiles;
|
238839
238848
|
|
238840
238849
|
|
238841
238850
|
/***/ }),
|
@@ -238917,10 +238926,10 @@ const maybeRead = async function (path, default_) {
|
|
238917
238926
|
return default_;
|
238918
238927
|
}
|
238919
238928
|
};
|
238920
|
-
async function buildFileTree(path, isDirectory,
|
238929
|
+
async function buildFileTree(path, { isDirectory, prebuilt, rootDirectory, }, debug) {
|
238921
238930
|
const ignoreList = [];
|
238922
238931
|
let fileList;
|
238923
|
-
let { ig, ignores } = await getVercelIgnore(path, prebuilt);
|
238932
|
+
let { ig, ignores } = await getVercelIgnore(path, prebuilt, rootDirectory);
|
238924
238933
|
debug(`Found ${ignores.length} rules in .vercelignore`);
|
238925
238934
|
debug('Building file tree...');
|
238926
238935
|
if (isDirectory && !Array.isArray(path)) {
|
@@ -238949,10 +238958,20 @@ async function buildFileTree(path, isDirectory, debug, prebuilt) {
|
|
238949
238958
|
return { fileList, ignoreList };
|
238950
238959
|
}
|
238951
238960
|
exports.buildFileTree = buildFileTree;
|
238952
|
-
async function getVercelIgnore(cwd, prebuilt) {
|
238953
|
-
|
238954
|
-
|
238955
|
-
|
238961
|
+
async function getVercelIgnore(cwd, prebuilt, rootDirectory) {
|
238962
|
+
let ignores = [];
|
238963
|
+
const outputDir = path_1.posix.join(rootDirectory || '', '.output');
|
238964
|
+
if (prebuilt) {
|
238965
|
+
ignores.push('*');
|
238966
|
+
const parts = outputDir.split('/');
|
238967
|
+
parts.forEach((_, i) => {
|
238968
|
+
const level = parts.slice(0, i + 1).join('/');
|
238969
|
+
ignores.push(`!${level}`);
|
238970
|
+
});
|
238971
|
+
ignores.push(`!${outputDir}/**`);
|
238972
|
+
}
|
238973
|
+
else {
|
238974
|
+
ignores = [
|
238956
238975
|
'.hg',
|
238957
238976
|
'.git',
|
238958
238977
|
'.gitmodules',
|
@@ -238977,8 +238996,9 @@ async function getVercelIgnore(cwd, prebuilt) {
|
|
238977
238996
|
'__pycache__',
|
238978
238997
|
'venv',
|
238979
238998
|
'CVS',
|
238980
|
-
|
238999
|
+
`.output`,
|
238981
239000
|
];
|
239001
|
+
}
|
238982
239002
|
const cwds = Array.isArray(cwd) ? cwd : [cwd];
|
238983
239003
|
const files = await Promise.all(cwds.map(async (cwd) => {
|
238984
239004
|
const [vercelignore, nowignore] = await Promise.all([
|
@@ -251858,6 +251878,7 @@ exports.default = async (client) => {
|
|
251858
251878
|
forceNew: argv['--force'],
|
251859
251879
|
withCache: argv['--with-cache'],
|
251860
251880
|
prebuilt: argv['--prebuilt'],
|
251881
|
+
rootDirectory,
|
251861
251882
|
quiet,
|
251862
251883
|
wantsPublic: argv['--public'] || localConfig.public,
|
251863
251884
|
isFile,
|
@@ -259411,7 +259432,7 @@ function printInspectUrl(output, inspectorUrl, deployStamp) {
|
|
259411
259432
|
output.print(emoji_1.prependEmoji(`Inspect: ${chalk_1.default.bold(inspectorUrl)} ${deployStamp()}`, emoji_1.emoji('inspect')) + `\n`);
|
259412
259433
|
}
|
259413
259434
|
async function processDeployment({ org, cwd, projectName, isSettingUpProject, skipAutoDetectionConfirmation, ...args }) {
|
259414
|
-
let { now, output, paths, requestBody, deployStamp, force, withCache, nowConfig, quiet, prebuilt, } = args;
|
259435
|
+
let { now, output, paths, requestBody, deployStamp, force, withCache, nowConfig, quiet, prebuilt, rootDirectory, } = args;
|
259415
259436
|
const { debug } = output;
|
259416
259437
|
let bar = null;
|
259417
259438
|
const { env = {} } = requestBody;
|
@@ -259429,6 +259450,7 @@ async function processDeployment({ org, cwd, projectName, isSettingUpProject, sk
|
|
259429
259450
|
force,
|
259430
259451
|
withCache,
|
259431
259452
|
prebuilt,
|
259453
|
+
rootDirectory,
|
259432
259454
|
skipAutoDetectionConfirmation,
|
259433
259455
|
};
|
259434
259456
|
output.spinner(isSettingUpProject
|
@@ -266277,7 +266299,7 @@ class Now extends events_1.default {
|
|
266277
266299
|
// Legacy
|
266278
266300
|
nowConfig: nowConfig = {},
|
266279
266301
|
// Latest
|
266280
|
-
name, project, prebuilt = false, wantsPublic, meta, regions, quiet = false, env, build, forceNew = false, withCache = false, target = null, deployStamp, projectSettings, skipAutoDetectionConfirmation, }, org, isSettingUpProject, cwd) {
|
266302
|
+
name, project, prebuilt = false, rootDirectory, wantsPublic, meta, regions, quiet = false, env, build, forceNew = false, withCache = false, target = null, deployStamp, projectSettings, skipAutoDetectionConfirmation, }, org, isSettingUpProject, cwd) {
|
266281
266303
|
let hashes = {};
|
266282
266304
|
const uploadStamp = stamp_1.default();
|
266283
266305
|
let requestBody = {
|
@@ -266313,6 +266335,7 @@ class Now extends events_1.default {
|
|
266313
266335
|
skipAutoDetectionConfirmation,
|
266314
266336
|
cwd,
|
266315
266337
|
prebuilt,
|
266338
|
+
rootDirectory,
|
266316
266339
|
});
|
266317
266340
|
if (deployment && deployment.warnings) {
|
266318
266341
|
let sizeExceeded = 0;
|
@@ -271044,7 +271067,7 @@ module.exports = JSON.parse("[\"ac\",\"com.ac\",\"edu.ac\",\"gov.ac\",\"net.ac\"
|
|
271044
271067
|
/***/ ((module) => {
|
271045
271068
|
|
271046
271069
|
"use strict";
|
271047
|
-
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"23.1.3-canary.
|
271070
|
+
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"23.1.3-canary.65\",\"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.12.3-canary.41\",\"@vercel/go\":\"1.2.4-canary.4\",\"@vercel/node\":\"1.12.2-canary.7\",\"@vercel/python\":\"2.1.2-canary.1\",\"@vercel/ruby\":\"1.2.10-canary.0\",\"update-notifier\":\"4.1.0\",\"vercel-plugin-middleware\":\"0.0.0-canary.18\",\"vercel-plugin-node\":\"1.12.2-canary.33\"},\"devDependencies\":{\"@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/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/frameworks\":\"0.5.1-canary.17\",\"@vercel/ncc\":\"0.24.0\",\"@vercel/nft\":\"0.17.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.2.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-eager\":\"2.0.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}},\"verbose\":false,\"testEnvironment\":\"node\",\"testMatch\":[\"<rootDir>/test/**/*.test.ts\"]},\"gitHead\":\"695f3a921220310a924c0af7dffed4eee306e060\"}");
|
271048
271071
|
|
271049
271072
|
/***/ }),
|
271050
271073
|
|
@@ -271060,7 +271083,7 @@ module.exports = JSON.parse("{\"VISA\":\"Visa\",\"MASTERCARD\":\"MasterCard\",\"
|
|
271060
271083
|
/***/ ((module) => {
|
271061
271084
|
|
271062
271085
|
"use strict";
|
271063
|
-
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.2.3-canary.
|
271086
|
+
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.2.3-canary.43\",\"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/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.12.3-canary.41\",\"@zeit/fetch\":\"5.2.0\",\"async-retry\":\"1.2.3\",\"async-sema\":\"3.0.0\",\"fs-extra\":\"8.0.1\",\"ignore\":\"4.0.6\",\"ms\":\"2.1.2\",\"node-fetch\":\"2.6.1\",\"querystring\":\"^0.2.0\",\"recursive-readdir\":\"2.2.2\",\"sleep-promise\":\"8.0.1\"},\"gitHead\":\"695f3a921220310a924c0af7dffed4eee306e060\"}");
|
271064
271087
|
|
271065
271088
|
/***/ }),
|
271066
271089
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "vercel",
|
3
|
-
"version": "23.1.3-canary.
|
3
|
+
"version": "23.1.3-canary.65",
|
4
4
|
"preferGlobal": true,
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"description": "The command-line interface for Vercel",
|
@@ -49,7 +49,7 @@
|
|
49
49
|
"@vercel/python": "2.1.2-canary.1",
|
50
50
|
"@vercel/ruby": "1.2.10-canary.0",
|
51
51
|
"update-notifier": "4.1.0",
|
52
|
-
"vercel-plugin-middleware": "0.0.0-canary.
|
52
|
+
"vercel-plugin-middleware": "0.0.0-canary.18",
|
53
53
|
"vercel-plugin-node": "1.12.2-canary.33"
|
54
54
|
},
|
55
55
|
"devDependencies": {
|
@@ -184,5 +184,5 @@
|
|
184
184
|
"<rootDir>/test/**/*.test.ts"
|
185
185
|
]
|
186
186
|
},
|
187
|
-
"gitHead": "
|
187
|
+
"gitHead": "695f3a921220310a924c0af7dffed4eee306e060"
|
188
188
|
}
|