vercel 24.1.1-canary.8 → 24.2.1-canary.1
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 +206 -64
- package/package.json +9 -10
package/dist/index.js
CHANGED
@@ -197384,15 +197384,20 @@ async function scanParentDirs(destPath, readPackageJson = false) {
|
|
197384
197384
|
fs_extra_1.default.pathExists(path_1.default.join(currentDestPath, 'yarn.lock')),
|
197385
197385
|
read_config_file_1.readConfigFile(path_1.default.join(currentDestPath, 'pnpm-lock.yaml')),
|
197386
197386
|
]);
|
197387
|
-
|
197388
|
-
|
197389
|
-
|
197387
|
+
// Priority order is Yarn > pnpm > npm
|
197388
|
+
// - find highest priority lock file and use that
|
197389
|
+
if (hasYarnLock) {
|
197390
|
+
cliType = 'yarn';
|
197390
197391
|
}
|
197391
|
-
if (
|
197392
|
+
else if (pnpmLockYaml) {
|
197392
197393
|
cliType = 'pnpm';
|
197393
197394
|
// just ensure that it is read as a number and not a string
|
197394
197395
|
lockfileVersion = Number(pnpmLockYaml.lockfileVersion);
|
197395
197396
|
}
|
197397
|
+
else if (packageLockJson) {
|
197398
|
+
cliType = 'npm';
|
197399
|
+
lockfileVersion = packageLockJson.lockfileVersion;
|
197400
|
+
}
|
197396
197401
|
// Only stop iterating if a lockfile was found, because it's possible
|
197397
197402
|
// that the lockfile is in a higher path than where the `package.json`
|
197398
197403
|
// file was found.
|
@@ -197579,7 +197584,7 @@ async function runBundleInstall(destPath, args = [], spawnOpts, meta) {
|
|
197579
197584
|
exports.runBundleInstall = runBundleInstall;
|
197580
197585
|
async function runPipInstall(destPath, args = [], spawnOpts, meta) {
|
197581
197586
|
if (meta && meta.isDev) {
|
197582
|
-
debug_1.default('Skipping
|
197587
|
+
debug_1.default('Skipping dependency installation because dev mode is enabled');
|
197583
197588
|
return;
|
197584
197589
|
}
|
197585
197590
|
assert_1.default(path_1.default.isAbsolute(destPath));
|
@@ -197608,7 +197613,7 @@ exports.installDependencies = util_1.deprecate(runNpmInstall, 'installDependenci
|
|
197608
197613
|
/***/ }),
|
197609
197614
|
|
197610
197615
|
/***/ 2560:
|
197611
|
-
/***/ (function(__unused_webpack_module, exports,
|
197616
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1010463__) {
|
197612
197617
|
|
197613
197618
|
"use strict";
|
197614
197619
|
|
@@ -197616,7 +197621,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
197616
197621
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
197617
197622
|
};
|
197618
197623
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
197619
|
-
const end_of_stream_1 = __importDefault(
|
197624
|
+
const end_of_stream_1 = __importDefault(__nested_webpack_require_1010463__(687));
|
197620
197625
|
function streamToBuffer(stream) {
|
197621
197626
|
return new Promise((resolve, reject) => {
|
197622
197627
|
const buffers = [];
|
@@ -197645,7 +197650,7 @@ exports.default = streamToBuffer;
|
|
197645
197650
|
/***/ }),
|
197646
197651
|
|
197647
197652
|
/***/ 1148:
|
197648
|
-
/***/ (function(__unused_webpack_module, exports,
|
197653
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1011531__) {
|
197649
197654
|
|
197650
197655
|
"use strict";
|
197651
197656
|
|
@@ -197653,9 +197658,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
197653
197658
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
197654
197659
|
};
|
197655
197660
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
197656
|
-
const path_1 = __importDefault(
|
197657
|
-
const fs_extra_1 = __importDefault(
|
197658
|
-
const ignore_1 = __importDefault(
|
197661
|
+
const path_1 = __importDefault(__nested_webpack_require_1011531__(5622));
|
197662
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_1011531__(5392));
|
197663
|
+
const ignore_1 = __importDefault(__nested_webpack_require_1011531__(3556));
|
197659
197664
|
function isCodedError(error) {
|
197660
197665
|
return (error !== null &&
|
197661
197666
|
error !== undefined &&
|
@@ -197712,13 +197717,13 @@ exports.default = default_1;
|
|
197712
197717
|
/***/ }),
|
197713
197718
|
|
197714
197719
|
/***/ 4678:
|
197715
|
-
/***/ ((__unused_webpack_module, exports,
|
197720
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_1013905__) => {
|
197716
197721
|
|
197717
197722
|
"use strict";
|
197718
197723
|
|
197719
197724
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
197720
197725
|
exports.getPlatformEnv = void 0;
|
197721
|
-
const errors_1 =
|
197726
|
+
const errors_1 = __nested_webpack_require_1013905__(3983);
|
197722
197727
|
/**
|
197723
197728
|
* Helper function to support both `VERCEL_` and legacy `NOW_` env vars.
|
197724
197729
|
* Throws an error if *both* env vars are defined.
|
@@ -197746,7 +197751,7 @@ exports.getPlatformEnv = getPlatformEnv;
|
|
197746
197751
|
/***/ }),
|
197747
197752
|
|
197748
197753
|
/***/ 2855:
|
197749
|
-
/***/ (function(__unused_webpack_module, exports,
|
197754
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1014942__) {
|
197750
197755
|
|
197751
197756
|
"use strict";
|
197752
197757
|
|
@@ -197776,31 +197781,31 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
197776
197781
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
197777
197782
|
};
|
197778
197783
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
197779
|
-
exports.isStaticRuntime = exports.isOfficialRuntime = exports.normalizePath = exports.readConfigFile = exports.DetectorFilesystem = exports.detectFramework = exports.detectFileSystemAPI = exports.detectApiExtensions = exports.detectApiDirectory = exports.detectOutputDirectory = exports.detectBuilders = exports.EdgeFunction = exports.getIgnoreFilter = exports.scanParentDirs = exports.getLambdaOptionsFromFunction = exports.isSymbolicLink = exports.debug = exports.
|
197780
|
-
const file_blob_1 = __importDefault(
|
197784
|
+
exports.workspaceManagers = exports.isStaticRuntime = exports.isOfficialRuntime = exports.normalizePath = exports.readConfigFile = exports.DetectorFilesystem = exports.detectFramework = exports.detectFileSystemAPI = exports.detectApiExtensions = exports.detectApiDirectory = exports.detectOutputDirectory = exports.detectBuilders = 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.download = exports.Prerender = exports.createLambda = exports.NodejsLambda = exports.Lambda = exports.FileRef = exports.FileFsRef = exports.FileBlob = void 0;
|
197785
|
+
const file_blob_1 = __importDefault(__nested_webpack_require_1014942__(2397));
|
197781
197786
|
exports.FileBlob = file_blob_1.default;
|
197782
|
-
const file_fs_ref_1 = __importDefault(
|
197787
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_1014942__(9331));
|
197783
197788
|
exports.FileFsRef = file_fs_ref_1.default;
|
197784
|
-
const file_ref_1 = __importDefault(
|
197789
|
+
const file_ref_1 = __importDefault(__nested_webpack_require_1014942__(5187));
|
197785
197790
|
exports.FileRef = file_ref_1.default;
|
197786
|
-
const lambda_1 =
|
197791
|
+
const lambda_1 = __nested_webpack_require_1014942__(6721);
|
197787
197792
|
Object.defineProperty(exports, "Lambda", ({ enumerable: true, get: function () { return lambda_1.Lambda; } }));
|
197788
197793
|
Object.defineProperty(exports, "createLambda", ({ enumerable: true, get: function () { return lambda_1.createLambda; } }));
|
197789
197794
|
Object.defineProperty(exports, "getLambdaOptionsFromFunction", ({ enumerable: true, get: function () { return lambda_1.getLambdaOptionsFromFunction; } }));
|
197790
|
-
const nodejs_lambda_1 =
|
197795
|
+
const nodejs_lambda_1 = __nested_webpack_require_1014942__(7049);
|
197791
197796
|
Object.defineProperty(exports, "NodejsLambda", ({ enumerable: true, get: function () { return nodejs_lambda_1.NodejsLambda; } }));
|
197792
|
-
const prerender_1 =
|
197797
|
+
const prerender_1 = __nested_webpack_require_1014942__(2850);
|
197793
197798
|
Object.defineProperty(exports, "Prerender", ({ enumerable: true, get: function () { return prerender_1.Prerender; } }));
|
197794
|
-
const download_1 = __importStar(
|
197799
|
+
const download_1 = __importStar(__nested_webpack_require_1014942__(1611));
|
197795
197800
|
exports.download = download_1.default;
|
197796
197801
|
Object.defineProperty(exports, "isSymbolicLink", ({ enumerable: true, get: function () { return download_1.isSymbolicLink; } }));
|
197797
|
-
const get_writable_directory_1 = __importDefault(
|
197802
|
+
const get_writable_directory_1 = __importDefault(__nested_webpack_require_1014942__(3838));
|
197798
197803
|
exports.getWriteableDirectory = get_writable_directory_1.default;
|
197799
|
-
const glob_1 = __importDefault(
|
197804
|
+
const glob_1 = __importDefault(__nested_webpack_require_1014942__(4240));
|
197800
197805
|
exports.glob = glob_1.default;
|
197801
|
-
const rename_1 = __importDefault(
|
197806
|
+
const rename_1 = __importDefault(__nested_webpack_require_1014942__(6718));
|
197802
197807
|
exports.rename = rename_1.default;
|
197803
|
-
const run_user_scripts_1 =
|
197808
|
+
const run_user_scripts_1 = __nested_webpack_require_1014942__(1442);
|
197804
197809
|
Object.defineProperty(exports, "execAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.execAsync; } }));
|
197805
197810
|
Object.defineProperty(exports, "spawnAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.spawnAsync; } }));
|
197806
197811
|
Object.defineProperty(exports, "execCommand", ({ enumerable: true, get: function () { return run_user_scripts_1.execCommand; } }));
|
@@ -197819,39 +197824,38 @@ Object.defineProperty(exports, "getNodeVersion", ({ enumerable: true, get: funct
|
|
197819
197824
|
Object.defineProperty(exports, "getSpawnOptions", ({ enumerable: true, get: function () { return run_user_scripts_1.getSpawnOptions; } }));
|
197820
197825
|
Object.defineProperty(exports, "getNodeBinPath", ({ enumerable: true, get: function () { return run_user_scripts_1.getNodeBinPath; } }));
|
197821
197826
|
Object.defineProperty(exports, "scanParentDirs", ({ enumerable: true, get: function () { return run_user_scripts_1.scanParentDirs; } }));
|
197822
|
-
const node_version_1 =
|
197827
|
+
const node_version_1 = __nested_webpack_require_1014942__(7903);
|
197823
197828
|
Object.defineProperty(exports, "getLatestNodeVersion", ({ enumerable: true, get: function () { return node_version_1.getLatestNodeVersion; } }));
|
197824
197829
|
Object.defineProperty(exports, "getDiscontinuedNodeVersions", ({ enumerable: true, get: function () { return node_version_1.getDiscontinuedNodeVersions; } }));
|
197825
|
-
const stream_to_buffer_1 = __importDefault(
|
197830
|
+
const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1014942__(2560));
|
197826
197831
|
exports.streamToBuffer = stream_to_buffer_1.default;
|
197827
|
-
const
|
197828
|
-
exports.shouldServe = should_serve_1.default;
|
197829
|
-
const debug_1 = __importDefault(__nested_webpack_require_1014809__(1868));
|
197832
|
+
const debug_1 = __importDefault(__nested_webpack_require_1014942__(1868));
|
197830
197833
|
exports.debug = debug_1.default;
|
197831
|
-
const get_ignore_filter_1 = __importDefault(
|
197834
|
+
const get_ignore_filter_1 = __importDefault(__nested_webpack_require_1014942__(1148));
|
197832
197835
|
exports.getIgnoreFilter = get_ignore_filter_1.default;
|
197833
|
-
const get_platform_env_1 =
|
197836
|
+
const get_platform_env_1 = __nested_webpack_require_1014942__(4678);
|
197834
197837
|
Object.defineProperty(exports, "getPlatformEnv", ({ enumerable: true, get: function () { return get_platform_env_1.getPlatformEnv; } }));
|
197835
|
-
var edge_function_1 =
|
197838
|
+
var edge_function_1 = __nested_webpack_require_1014942__(8038);
|
197836
197839
|
Object.defineProperty(exports, "EdgeFunction", ({ enumerable: true, get: function () { return edge_function_1.EdgeFunction; } }));
|
197837
|
-
var detect_builders_1 =
|
197840
|
+
var detect_builders_1 = __nested_webpack_require_1014942__(4246);
|
197838
197841
|
Object.defineProperty(exports, "detectBuilders", ({ enumerable: true, get: function () { return detect_builders_1.detectBuilders; } }));
|
197839
197842
|
Object.defineProperty(exports, "detectOutputDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectOutputDirectory; } }));
|
197840
197843
|
Object.defineProperty(exports, "detectApiDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectApiDirectory; } }));
|
197841
197844
|
Object.defineProperty(exports, "detectApiExtensions", ({ enumerable: true, get: function () { return detect_builders_1.detectApiExtensions; } }));
|
197842
|
-
var detect_file_system_api_1 =
|
197845
|
+
var detect_file_system_api_1 = __nested_webpack_require_1014942__(1182);
|
197843
197846
|
Object.defineProperty(exports, "detectFileSystemAPI", ({ enumerable: true, get: function () { return detect_file_system_api_1.detectFileSystemAPI; } }));
|
197844
|
-
var detect_framework_1 =
|
197847
|
+
var detect_framework_1 = __nested_webpack_require_1014942__(5224);
|
197845
197848
|
Object.defineProperty(exports, "detectFramework", ({ enumerable: true, get: function () { return detect_framework_1.detectFramework; } }));
|
197846
|
-
var filesystem_1 =
|
197849
|
+
var filesystem_1 = __nested_webpack_require_1014942__(461);
|
197847
197850
|
Object.defineProperty(exports, "DetectorFilesystem", ({ enumerable: true, get: function () { return filesystem_1.DetectorFilesystem; } }));
|
197848
|
-
var read_config_file_1 =
|
197851
|
+
var read_config_file_1 = __nested_webpack_require_1014942__(7792);
|
197849
197852
|
Object.defineProperty(exports, "readConfigFile", ({ enumerable: true, get: function () { return read_config_file_1.readConfigFile; } }));
|
197850
|
-
var normalize_path_1 =
|
197853
|
+
var normalize_path_1 = __nested_webpack_require_1014942__(6261);
|
197851
197854
|
Object.defineProperty(exports, "normalizePath", ({ enumerable: true, get: function () { return normalize_path_1.normalizePath; } }));
|
197852
|
-
__exportStar(
|
197853
|
-
__exportStar(
|
197854
|
-
__exportStar(
|
197855
|
+
__exportStar(__nested_webpack_require_1014942__(2564), exports);
|
197856
|
+
__exportStar(__nested_webpack_require_1014942__(2416), exports);
|
197857
|
+
__exportStar(__nested_webpack_require_1014942__(5748), exports);
|
197858
|
+
__exportStar(__nested_webpack_require_1014942__(3983), exports);
|
197855
197859
|
/**
|
197856
197860
|
* Helper function to support both `@vercel` and legacy `@now` official Runtimes.
|
197857
197861
|
*/
|
@@ -197869,12 +197873,14 @@ const isStaticRuntime = (name) => {
|
|
197869
197873
|
return exports.isOfficialRuntime('static', name);
|
197870
197874
|
};
|
197871
197875
|
exports.isStaticRuntime = isStaticRuntime;
|
197876
|
+
var workspace_managers_1 = __nested_webpack_require_1014942__(4896);
|
197877
|
+
Object.defineProperty(exports, "workspaceManagers", ({ enumerable: true, get: function () { return workspace_managers_1.workspaceManagers; } }));
|
197872
197878
|
|
197873
197879
|
|
197874
197880
|
/***/ }),
|
197875
197881
|
|
197876
197882
|
/***/ 6721:
|
197877
|
-
/***/ (function(__unused_webpack_module, exports,
|
197883
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1025456__) {
|
197878
197884
|
|
197879
197885
|
"use strict";
|
197880
197886
|
|
@@ -197883,13 +197889,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
197883
197889
|
};
|
197884
197890
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
197885
197891
|
exports.getLambdaOptionsFromFunction = exports.createZip = exports.createLambda = exports.Lambda = void 0;
|
197886
|
-
const assert_1 = __importDefault(
|
197887
|
-
const async_sema_1 = __importDefault(
|
197888
|
-
const yazl_1 =
|
197889
|
-
const minimatch_1 = __importDefault(
|
197890
|
-
const fs_extra_1 =
|
197891
|
-
const download_1 =
|
197892
|
-
const stream_to_buffer_1 = __importDefault(
|
197892
|
+
const assert_1 = __importDefault(__nested_webpack_require_1025456__(2357));
|
197893
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_1025456__(5758));
|
197894
|
+
const yazl_1 = __nested_webpack_require_1025456__(1223);
|
197895
|
+
const minimatch_1 = __importDefault(__nested_webpack_require_1025456__(9566));
|
197896
|
+
const fs_extra_1 = __nested_webpack_require_1025456__(5392);
|
197897
|
+
const download_1 = __nested_webpack_require_1025456__(1611);
|
197898
|
+
const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1025456__(2560));
|
197893
197899
|
class Lambda {
|
197894
197900
|
constructor(opts) {
|
197895
197901
|
const { handler, runtime, maxDuration, memory, environment = {}, allowQuery, regions, supportsMultiPayloads, } = opts;
|
@@ -198011,13 +198017,13 @@ exports.getLambdaOptionsFromFunction = getLambdaOptionsFromFunction;
|
|
198011
198017
|
/***/ }),
|
198012
198018
|
|
198013
198019
|
/***/ 7049:
|
198014
|
-
/***/ ((__unused_webpack_module, exports,
|
198020
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_1030960__) => {
|
198015
198021
|
|
198016
198022
|
"use strict";
|
198017
198023
|
|
198018
198024
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
198019
198025
|
exports.NodejsLambda = void 0;
|
198020
|
-
const lambda_1 =
|
198026
|
+
const lambda_1 = __nested_webpack_require_1030960__(6721);
|
198021
198027
|
class NodejsLambda extends lambda_1.Lambda {
|
198022
198028
|
constructor({ shouldAddHelpers, shouldAddSourcemapSupport, awsLambdaHandler, ...opts }) {
|
198023
198029
|
super(opts);
|
@@ -198154,13 +198160,14 @@ exports.buildsSchema = {
|
|
198154
198160
|
/***/ }),
|
198155
198161
|
|
198156
198162
|
/***/ 2564:
|
198157
|
-
/***/ ((__unused_webpack_module, exports,
|
198163
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_1035305__) => {
|
198158
198164
|
|
198159
198165
|
"use strict";
|
198160
198166
|
|
198161
198167
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
198162
|
-
|
198163
|
-
|
198168
|
+
exports.shouldServe = void 0;
|
198169
|
+
const path_1 = __nested_webpack_require_1035305__(5622);
|
198170
|
+
const shouldServe = ({ entrypoint, files, requestPath, }) => {
|
198164
198171
|
requestPath = requestPath.replace(/\/$/, ''); // sanitize trailing '/'
|
198165
198172
|
entrypoint = entrypoint.replace(/\\/, '/'); // windows compatibility
|
198166
198173
|
if (entrypoint === requestPath && hasProp(files, entrypoint)) {
|
@@ -198171,8 +198178,8 @@ function shouldServe({ entrypoint, files, requestPath, }) {
|
|
198171
198178
|
return true;
|
198172
198179
|
}
|
198173
198180
|
return false;
|
198174
|
-
}
|
198175
|
-
exports.
|
198181
|
+
};
|
198182
|
+
exports.shouldServe = shouldServe;
|
198176
198183
|
function hasProp(obj, key) {
|
198177
198184
|
return Object.hasOwnProperty.call(obj, key);
|
198178
198185
|
}
|
@@ -198188,6 +198195,141 @@ function hasProp(obj, key) {
|
|
198188
198195
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
198189
198196
|
|
198190
198197
|
|
198198
|
+
/***/ }),
|
198199
|
+
|
198200
|
+
/***/ 4896:
|
198201
|
+
/***/ ((__unused_webpack_module, exports) => {
|
198202
|
+
|
198203
|
+
"use strict";
|
198204
|
+
|
198205
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
198206
|
+
exports.workspaceManagers = void 0;
|
198207
|
+
/**
|
198208
|
+
* The supported list of workspace managers.
|
198209
|
+
*
|
198210
|
+
* This list is designed to work with the @see {@link detectFramework} function.
|
198211
|
+
*
|
198212
|
+
* @example
|
198213
|
+
* import { workspaceManagers as frameworkList } from '@vercel/build-utils/workspaces'
|
198214
|
+
* import { detectFramework } from '@vercel/build-utils'
|
198215
|
+
*
|
198216
|
+
* const fs = new GitDetectorFilesystem(...)
|
198217
|
+
* detectFramwork({ fs, frameworkList }) // returns the 'slug' field if detected, otherwise null
|
198218
|
+
*
|
198219
|
+
* @todo Will be used by the detect-eligible-projects API endpoint for a given git url.
|
198220
|
+
*/
|
198221
|
+
exports.workspaceManagers = [
|
198222
|
+
{
|
198223
|
+
name: 'Yarn',
|
198224
|
+
slug: 'yarn',
|
198225
|
+
detectors: {
|
198226
|
+
every: [
|
198227
|
+
{
|
198228
|
+
path: 'package.json',
|
198229
|
+
matchContent: '"workspaces":\\s*(?:\\[[^\\]]*]|{[^}]*"packages":[^}]*})',
|
198230
|
+
},
|
198231
|
+
{
|
198232
|
+
path: 'yarn.lock',
|
198233
|
+
},
|
198234
|
+
],
|
198235
|
+
},
|
198236
|
+
// unused props - needed for typescript
|
198237
|
+
description: '',
|
198238
|
+
logo: '',
|
198239
|
+
settings: {
|
198240
|
+
buildCommand: {
|
198241
|
+
value: '',
|
198242
|
+
placeholder: '',
|
198243
|
+
},
|
198244
|
+
devCommand: {
|
198245
|
+
value: '',
|
198246
|
+
placeholder: '',
|
198247
|
+
},
|
198248
|
+
installCommand: {
|
198249
|
+
value: '',
|
198250
|
+
placeholder: '',
|
198251
|
+
},
|
198252
|
+
outputDirectory: {
|
198253
|
+
value: '',
|
198254
|
+
placeholder: '',
|
198255
|
+
},
|
198256
|
+
},
|
198257
|
+
getOutputDirName: () => Promise.resolve(''),
|
198258
|
+
},
|
198259
|
+
{
|
198260
|
+
name: 'pnpm',
|
198261
|
+
slug: 'pnpm',
|
198262
|
+
detectors: {
|
198263
|
+
every: [
|
198264
|
+
{
|
198265
|
+
path: 'pnpm-workspace.yaml',
|
198266
|
+
},
|
198267
|
+
],
|
198268
|
+
},
|
198269
|
+
// unused props - needed for typescript
|
198270
|
+
description: '',
|
198271
|
+
logo: '',
|
198272
|
+
settings: {
|
198273
|
+
buildCommand: {
|
198274
|
+
value: '',
|
198275
|
+
placeholder: '',
|
198276
|
+
},
|
198277
|
+
devCommand: {
|
198278
|
+
value: '',
|
198279
|
+
placeholder: '',
|
198280
|
+
},
|
198281
|
+
installCommand: {
|
198282
|
+
value: '',
|
198283
|
+
placeholder: '',
|
198284
|
+
},
|
198285
|
+
outputDirectory: {
|
198286
|
+
value: '',
|
198287
|
+
placeholder: '',
|
198288
|
+
},
|
198289
|
+
},
|
198290
|
+
getOutputDirName: () => Promise.resolve(''),
|
198291
|
+
},
|
198292
|
+
{
|
198293
|
+
name: 'npm',
|
198294
|
+
slug: 'npm',
|
198295
|
+
detectors: {
|
198296
|
+
every: [
|
198297
|
+
{
|
198298
|
+
path: 'package.json',
|
198299
|
+
matchContent: '"workspaces":\\s*(?:\\[[^\\]]*]|{[^}]*"packages":[^}]*})',
|
198300
|
+
},
|
198301
|
+
{
|
198302
|
+
path: 'package-lock.json',
|
198303
|
+
},
|
198304
|
+
],
|
198305
|
+
},
|
198306
|
+
// unused props - needed for typescript
|
198307
|
+
description: '',
|
198308
|
+
logo: '',
|
198309
|
+
settings: {
|
198310
|
+
buildCommand: {
|
198311
|
+
value: '',
|
198312
|
+
placeholder: '',
|
198313
|
+
},
|
198314
|
+
devCommand: {
|
198315
|
+
value: '',
|
198316
|
+
placeholder: '',
|
198317
|
+
},
|
198318
|
+
installCommand: {
|
198319
|
+
value: '',
|
198320
|
+
placeholder: '',
|
198321
|
+
},
|
198322
|
+
outputDirectory: {
|
198323
|
+
value: '',
|
198324
|
+
placeholder: '',
|
198325
|
+
},
|
198326
|
+
},
|
198327
|
+
getOutputDirName: () => Promise.resolve(''),
|
198328
|
+
},
|
198329
|
+
];
|
198330
|
+
exports.default = exports.workspaceManagers;
|
198331
|
+
|
198332
|
+
|
198191
198333
|
/***/ }),
|
198192
198334
|
|
198193
198335
|
/***/ 5685:
|
@@ -198388,7 +198530,7 @@ module.exports = __webpack_require__(78761);
|
|
198388
198530
|
/******/ var __webpack_module_cache__ = {};
|
198389
198531
|
/******/
|
198390
198532
|
/******/ // The require function
|
198391
|
-
/******/ function
|
198533
|
+
/******/ function __nested_webpack_require_1138524__(moduleId) {
|
198392
198534
|
/******/ // Check if module is in cache
|
198393
198535
|
/******/ if(__webpack_module_cache__[moduleId]) {
|
198394
198536
|
/******/ return __webpack_module_cache__[moduleId].exports;
|
@@ -198403,7 +198545,7 @@ module.exports = __webpack_require__(78761);
|
|
198403
198545
|
/******/ // Execute the module function
|
198404
198546
|
/******/ var threw = true;
|
198405
198547
|
/******/ try {
|
198406
|
-
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports,
|
198548
|
+
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __nested_webpack_require_1138524__);
|
198407
198549
|
/******/ threw = false;
|
198408
198550
|
/******/ } finally {
|
198409
198551
|
/******/ if(threw) delete __webpack_module_cache__[moduleId];
|
@@ -198416,11 +198558,11 @@ module.exports = __webpack_require__(78761);
|
|
198416
198558
|
/************************************************************************/
|
198417
198559
|
/******/ /* webpack/runtime/compat */
|
198418
198560
|
/******/
|
198419
|
-
/******/
|
198561
|
+
/******/ __nested_webpack_require_1138524__.ab = __dirname + "/";/************************************************************************/
|
198420
198562
|
/******/ // module exports must be returned from runtime so entry inlining is disabled
|
198421
198563
|
/******/ // startup
|
198422
198564
|
/******/ // Load entry module and return exports
|
198423
|
-
/******/ return
|
198565
|
+
/******/ return __nested_webpack_require_1138524__(2855);
|
198424
198566
|
/******/ })()
|
198425
198567
|
;
|
198426
198568
|
|
@@ -244899,7 +245041,7 @@ module.exports = JSON.parse("{\"application/1d-interleaved-parityfec\":{\"source
|
|
244899
245041
|
/***/ ((module) => {
|
244900
245042
|
|
244901
245043
|
"use strict";
|
244902
|
-
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"24.
|
245044
|
+
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"24.2.1-canary.1\",\"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.16.1-canary.1\",\"@vercel/go\":\"1.4.1-canary.1\",\"@vercel/node\":\"1.15.1-canary.1\",\"@vercel/python\":\"2.3.1-canary.1\",\"@vercel/ruby\":\"1.3.4-canary.1\",\"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.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\",\"@vercel/client\":\"11.0.1-canary.1\",\"@vercel/frameworks\":\"0.8.0\",\"@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\":\"f88c862e9d9d4ad385e54d5fecaa0306a6ed5612\"}");
|
244903
245045
|
|
244904
245046
|
/***/ }),
|
244905
245047
|
|
@@ -244915,7 +245057,7 @@ module.exports = JSON.parse("{\"VISA\":\"Visa\",\"MASTERCARD\":\"MasterCard\",\"
|
|
244915
245057
|
/***/ ((module) => {
|
244916
245058
|
|
244917
245059
|
"use strict";
|
244918
|
-
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"
|
245060
|
+
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"11.0.1-canary.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\":\"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.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\":\"2.16.1-canary.1\",\"@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\":\"f88c862e9d9d4ad385e54d5fecaa0306a6ed5612\"}");
|
244919
245061
|
|
244920
245062
|
/***/ }),
|
244921
245063
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "vercel",
|
3
|
-
"version": "24.
|
3
|
+
"version": "24.2.1-canary.1",
|
4
4
|
"preferGlobal": true,
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"description": "The command-line interface for Vercel",
|
@@ -43,11 +43,11 @@
|
|
43
43
|
"node": ">= 12"
|
44
44
|
},
|
45
45
|
"dependencies": {
|
46
|
-
"@vercel/build-utils": "2.
|
47
|
-
"@vercel/go": "1.
|
48
|
-
"@vercel/node": "1.
|
49
|
-
"@vercel/python": "2.
|
50
|
-
"@vercel/ruby": "1.3.
|
46
|
+
"@vercel/build-utils": "2.16.1-canary.1",
|
47
|
+
"@vercel/go": "1.4.1-canary.1",
|
48
|
+
"@vercel/node": "1.15.1-canary.1",
|
49
|
+
"@vercel/python": "2.3.1-canary.1",
|
50
|
+
"@vercel/ruby": "1.3.4-canary.1",
|
51
51
|
"update-notifier": "4.1.0"
|
52
52
|
},
|
53
53
|
"devDependencies": {
|
@@ -90,9 +90,8 @@
|
|
90
90
|
"@types/update-notifier": "5.1.0",
|
91
91
|
"@types/which": "1.3.2",
|
92
92
|
"@types/write-json-file": "2.2.1",
|
93
|
-
"@vercel/client": "
|
94
|
-
"@vercel/
|
95
|
-
"@vercel/frameworks": "0.7.2-canary.1",
|
93
|
+
"@vercel/client": "11.0.1-canary.1",
|
94
|
+
"@vercel/frameworks": "0.8.0",
|
96
95
|
"@vercel/ncc": "0.24.0",
|
97
96
|
"@zeit/fun": "0.11.2",
|
98
97
|
"@zeit/source-map-support": "0.6.2",
|
@@ -187,5 +186,5 @@
|
|
187
186
|
"<rootDir>/test/**/*.test.ts"
|
188
187
|
]
|
189
188
|
},
|
190
|
-
"gitHead": "
|
189
|
+
"gitHead": "f88c862e9d9d4ad385e54d5fecaa0306a6ed5612"
|
191
190
|
}
|