vercel 28.16.15 → 28.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +36 -681
- package/package.json +17 -27
package/dist/index.js
CHANGED
@@ -24,7 +24,7 @@ var ProjectEnvType;
|
|
24
24
|
ProjectEnvType["Encrypted"] = "encrypted";
|
25
25
|
ProjectEnvType["System"] = "system";
|
26
26
|
})(ProjectEnvType = exports.ProjectEnvType || (exports.ProjectEnvType = {}));
|
27
|
-
|
27
|
+
//# sourceMappingURL=index.js.map
|
28
28
|
|
29
29
|
/***/ }),
|
30
30
|
|
@@ -10286,7 +10286,7 @@ function setup(fetch) {
|
|
10286
10286
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
10287
10287
|
|
10288
10288
|
const retry = __webpack_require__(69420);
|
10289
|
-
const debug = __webpack_require__(
|
10289
|
+
const debug = __webpack_require__(94219)('fetch-retry');
|
10290
10290
|
|
10291
10291
|
// retry settings
|
10292
10292
|
const MIN_TIMEOUT = 10;
|
@@ -41142,656 +41142,6 @@ function init (debug) {
|
|
41142
41142
|
exports.enable(load());
|
41143
41143
|
|
41144
41144
|
|
41145
|
-
/***/ }),
|
41146
|
-
|
41147
|
-
/***/ 12308:
|
41148
|
-
/***/ ((module, exports, __webpack_require__) => {
|
41149
|
-
|
41150
|
-
"use strict";
|
41151
|
-
|
41152
|
-
|
41153
|
-
function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
41154
|
-
|
41155
|
-
/* eslint-env browser */
|
41156
|
-
|
41157
|
-
/**
|
41158
|
-
* This is the web browser implementation of `debug()`.
|
41159
|
-
*/
|
41160
|
-
exports.log = log;
|
41161
|
-
exports.formatArgs = formatArgs;
|
41162
|
-
exports.save = save;
|
41163
|
-
exports.load = load;
|
41164
|
-
exports.useColors = useColors;
|
41165
|
-
exports.storage = localstorage();
|
41166
|
-
/**
|
41167
|
-
* Colors.
|
41168
|
-
*/
|
41169
|
-
|
41170
|
-
exports.colors = ['#0000CC', '#0000FF', '#0033CC', '#0033FF', '#0066CC', '#0066FF', '#0099CC', '#0099FF', '#00CC00', '#00CC33', '#00CC66', '#00CC99', '#00CCCC', '#00CCFF', '#3300CC', '#3300FF', '#3333CC', '#3333FF', '#3366CC', '#3366FF', '#3399CC', '#3399FF', '#33CC00', '#33CC33', '#33CC66', '#33CC99', '#33CCCC', '#33CCFF', '#6600CC', '#6600FF', '#6633CC', '#6633FF', '#66CC00', '#66CC33', '#9900CC', '#9900FF', '#9933CC', '#9933FF', '#99CC00', '#99CC33', '#CC0000', '#CC0033', '#CC0066', '#CC0099', '#CC00CC', '#CC00FF', '#CC3300', '#CC3333', '#CC3366', '#CC3399', '#CC33CC', '#CC33FF', '#CC6600', '#CC6633', '#CC9900', '#CC9933', '#CCCC00', '#CCCC33', '#FF0000', '#FF0033', '#FF0066', '#FF0099', '#FF00CC', '#FF00FF', '#FF3300', '#FF3333', '#FF3366', '#FF3399', '#FF33CC', '#FF33FF', '#FF6600', '#FF6633', '#FF9900', '#FF9933', '#FFCC00', '#FFCC33'];
|
41171
|
-
/**
|
41172
|
-
* Currently only WebKit-based Web Inspectors, Firefox >= v31,
|
41173
|
-
* and the Firebug extension (any Firefox version) are known
|
41174
|
-
* to support "%c" CSS customizations.
|
41175
|
-
*
|
41176
|
-
* TODO: add a `localStorage` variable to explicitly enable/disable colors
|
41177
|
-
*/
|
41178
|
-
// eslint-disable-next-line complexity
|
41179
|
-
|
41180
|
-
function useColors() {
|
41181
|
-
// NB: In an Electron preload script, document will be defined but not fully
|
41182
|
-
// initialized. Since we know we're in Chrome, we'll just detect this case
|
41183
|
-
// explicitly
|
41184
|
-
if (typeof window !== 'undefined' && window.process && (window.process.type === 'renderer' || window.process.__nwjs)) {
|
41185
|
-
return true;
|
41186
|
-
} // Internet Explorer and Edge do not support colors.
|
41187
|
-
|
41188
|
-
|
41189
|
-
if (typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/)) {
|
41190
|
-
return false;
|
41191
|
-
} // Is webkit? http://stackoverflow.com/a/16459606/376773
|
41192
|
-
// document is undefined in react-native: https://github.com/facebook/react-native/pull/1632
|
41193
|
-
|
41194
|
-
|
41195
|
-
return typeof document !== 'undefined' && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance || // Is firebug? http://stackoverflow.com/a/398120/376773
|
41196
|
-
typeof window !== 'undefined' && window.console && (window.console.firebug || window.console.exception && window.console.table) || // Is firefox >= v31?
|
41197
|
-
// https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages
|
41198
|
-
typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/) && parseInt(RegExp.$1, 10) >= 31 || // Double check webkit in userAgent just in case we are in a worker
|
41199
|
-
typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/);
|
41200
|
-
}
|
41201
|
-
/**
|
41202
|
-
* Colorize log arguments if enabled.
|
41203
|
-
*
|
41204
|
-
* @api public
|
41205
|
-
*/
|
41206
|
-
|
41207
|
-
|
41208
|
-
function formatArgs(args) {
|
41209
|
-
args[0] = (this.useColors ? '%c' : '') + this.namespace + (this.useColors ? ' %c' : ' ') + args[0] + (this.useColors ? '%c ' : ' ') + '+' + module.exports.humanize(this.diff);
|
41210
|
-
|
41211
|
-
if (!this.useColors) {
|
41212
|
-
return;
|
41213
|
-
}
|
41214
|
-
|
41215
|
-
var c = 'color: ' + this.color;
|
41216
|
-
args.splice(1, 0, c, 'color: inherit'); // The final "%c" is somewhat tricky, because there could be other
|
41217
|
-
// arguments passed either before or after the %c, so we need to
|
41218
|
-
// figure out the correct index to insert the CSS into
|
41219
|
-
|
41220
|
-
var index = 0;
|
41221
|
-
var lastC = 0;
|
41222
|
-
args[0].replace(/%[a-zA-Z%]/g, function (match) {
|
41223
|
-
if (match === '%%') {
|
41224
|
-
return;
|
41225
|
-
}
|
41226
|
-
|
41227
|
-
index++;
|
41228
|
-
|
41229
|
-
if (match === '%c') {
|
41230
|
-
// We only are interested in the *last* %c
|
41231
|
-
// (the user may have provided their own)
|
41232
|
-
lastC = index;
|
41233
|
-
}
|
41234
|
-
});
|
41235
|
-
args.splice(lastC, 0, c);
|
41236
|
-
}
|
41237
|
-
/**
|
41238
|
-
* Invokes `console.log()` when available.
|
41239
|
-
* No-op when `console.log` is not a "function".
|
41240
|
-
*
|
41241
|
-
* @api public
|
41242
|
-
*/
|
41243
|
-
|
41244
|
-
|
41245
|
-
function log() {
|
41246
|
-
var _console;
|
41247
|
-
|
41248
|
-
// This hackery is required for IE8/9, where
|
41249
|
-
// the `console.log` function doesn't have 'apply'
|
41250
|
-
return (typeof console === "undefined" ? "undefined" : _typeof(console)) === 'object' && console.log && (_console = console).log.apply(_console, arguments);
|
41251
|
-
}
|
41252
|
-
/**
|
41253
|
-
* Save `namespaces`.
|
41254
|
-
*
|
41255
|
-
* @param {String} namespaces
|
41256
|
-
* @api private
|
41257
|
-
*/
|
41258
|
-
|
41259
|
-
|
41260
|
-
function save(namespaces) {
|
41261
|
-
try {
|
41262
|
-
if (namespaces) {
|
41263
|
-
exports.storage.setItem('debug', namespaces);
|
41264
|
-
} else {
|
41265
|
-
exports.storage.removeItem('debug');
|
41266
|
-
}
|
41267
|
-
} catch (error) {// Swallow
|
41268
|
-
// XXX (@Qix-) should we be logging these?
|
41269
|
-
}
|
41270
|
-
}
|
41271
|
-
/**
|
41272
|
-
* Load `namespaces`.
|
41273
|
-
*
|
41274
|
-
* @return {String} returns the previously persisted debug modes
|
41275
|
-
* @api private
|
41276
|
-
*/
|
41277
|
-
|
41278
|
-
|
41279
|
-
function load() {
|
41280
|
-
var r;
|
41281
|
-
|
41282
|
-
try {
|
41283
|
-
r = exports.storage.getItem('debug');
|
41284
|
-
} catch (error) {} // Swallow
|
41285
|
-
// XXX (@Qix-) should we be logging these?
|
41286
|
-
// If debug isn't set in LS, and we're in Electron, try to load $DEBUG
|
41287
|
-
|
41288
|
-
|
41289
|
-
if (!r && typeof process !== 'undefined' && 'env' in process) {
|
41290
|
-
r = process.env.DEBUG;
|
41291
|
-
}
|
41292
|
-
|
41293
|
-
return r;
|
41294
|
-
}
|
41295
|
-
/**
|
41296
|
-
* Localstorage attempts to return the localstorage.
|
41297
|
-
*
|
41298
|
-
* This is necessary because safari throws
|
41299
|
-
* when a user disables cookies/localstorage
|
41300
|
-
* and you attempt to access it.
|
41301
|
-
*
|
41302
|
-
* @return {LocalStorage}
|
41303
|
-
* @api private
|
41304
|
-
*/
|
41305
|
-
|
41306
|
-
|
41307
|
-
function localstorage() {
|
41308
|
-
try {
|
41309
|
-
// TVMLKit (Apple TV JS Runtime) does not have a window object, just localStorage in the global context
|
41310
|
-
// The Browser also has localStorage in the global context.
|
41311
|
-
return localStorage;
|
41312
|
-
} catch (error) {// Swallow
|
41313
|
-
// XXX (@Qix-) should we be logging these?
|
41314
|
-
}
|
41315
|
-
}
|
41316
|
-
|
41317
|
-
module.exports = __webpack_require__(14878)(exports);
|
41318
|
-
var formatters = module.exports.formatters;
|
41319
|
-
/**
|
41320
|
-
* Map %j to `JSON.stringify()`, since no Web Inspectors do that by default.
|
41321
|
-
*/
|
41322
|
-
|
41323
|
-
formatters.j = function (v) {
|
41324
|
-
try {
|
41325
|
-
return JSON.stringify(v);
|
41326
|
-
} catch (error) {
|
41327
|
-
return '[UnexpectedJSONParseError]: ' + error.message;
|
41328
|
-
}
|
41329
|
-
};
|
41330
|
-
|
41331
|
-
|
41332
|
-
|
41333
|
-
/***/ }),
|
41334
|
-
|
41335
|
-
/***/ 14878:
|
41336
|
-
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
41337
|
-
|
41338
|
-
"use strict";
|
41339
|
-
|
41340
|
-
|
41341
|
-
/**
|
41342
|
-
* This is the common logic for both the Node.js and web browser
|
41343
|
-
* implementations of `debug()`.
|
41344
|
-
*/
|
41345
|
-
function setup(env) {
|
41346
|
-
createDebug.debug = createDebug;
|
41347
|
-
createDebug.default = createDebug;
|
41348
|
-
createDebug.coerce = coerce;
|
41349
|
-
createDebug.disable = disable;
|
41350
|
-
createDebug.enable = enable;
|
41351
|
-
createDebug.enabled = enabled;
|
41352
|
-
createDebug.humanize = __webpack_require__(21378);
|
41353
|
-
Object.keys(env).forEach(function (key) {
|
41354
|
-
createDebug[key] = env[key];
|
41355
|
-
});
|
41356
|
-
/**
|
41357
|
-
* Active `debug` instances.
|
41358
|
-
*/
|
41359
|
-
|
41360
|
-
createDebug.instances = [];
|
41361
|
-
/**
|
41362
|
-
* The currently active debug mode names, and names to skip.
|
41363
|
-
*/
|
41364
|
-
|
41365
|
-
createDebug.names = [];
|
41366
|
-
createDebug.skips = [];
|
41367
|
-
/**
|
41368
|
-
* Map of special "%n" handling functions, for the debug "format" argument.
|
41369
|
-
*
|
41370
|
-
* Valid key names are a single, lower or upper-case letter, i.e. "n" and "N".
|
41371
|
-
*/
|
41372
|
-
|
41373
|
-
createDebug.formatters = {};
|
41374
|
-
/**
|
41375
|
-
* Selects a color for a debug namespace
|
41376
|
-
* @param {String} namespace The namespace string for the for the debug instance to be colored
|
41377
|
-
* @return {Number|String} An ANSI color code for the given namespace
|
41378
|
-
* @api private
|
41379
|
-
*/
|
41380
|
-
|
41381
|
-
function selectColor(namespace) {
|
41382
|
-
var hash = 0;
|
41383
|
-
|
41384
|
-
for (var i = 0; i < namespace.length; i++) {
|
41385
|
-
hash = (hash << 5) - hash + namespace.charCodeAt(i);
|
41386
|
-
hash |= 0; // Convert to 32bit integer
|
41387
|
-
}
|
41388
|
-
|
41389
|
-
return createDebug.colors[Math.abs(hash) % createDebug.colors.length];
|
41390
|
-
}
|
41391
|
-
|
41392
|
-
createDebug.selectColor = selectColor;
|
41393
|
-
/**
|
41394
|
-
* Create a debugger with the given `namespace`.
|
41395
|
-
*
|
41396
|
-
* @param {String} namespace
|
41397
|
-
* @return {Function}
|
41398
|
-
* @api public
|
41399
|
-
*/
|
41400
|
-
|
41401
|
-
function createDebug(namespace) {
|
41402
|
-
var prevTime;
|
41403
|
-
|
41404
|
-
function debug() {
|
41405
|
-
// Disabled?
|
41406
|
-
if (!debug.enabled) {
|
41407
|
-
return;
|
41408
|
-
}
|
41409
|
-
|
41410
|
-
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
41411
|
-
args[_key] = arguments[_key];
|
41412
|
-
}
|
41413
|
-
|
41414
|
-
var self = debug; // Set `diff` timestamp
|
41415
|
-
|
41416
|
-
var curr = Number(new Date());
|
41417
|
-
var ms = curr - (prevTime || curr);
|
41418
|
-
self.diff = ms;
|
41419
|
-
self.prev = prevTime;
|
41420
|
-
self.curr = curr;
|
41421
|
-
prevTime = curr;
|
41422
|
-
args[0] = createDebug.coerce(args[0]);
|
41423
|
-
|
41424
|
-
if (typeof args[0] !== 'string') {
|
41425
|
-
// Anything else let's inspect with %O
|
41426
|
-
args.unshift('%O');
|
41427
|
-
} // Apply any `formatters` transformations
|
41428
|
-
|
41429
|
-
|
41430
|
-
var index = 0;
|
41431
|
-
args[0] = args[0].replace(/%([a-zA-Z%])/g, function (match, format) {
|
41432
|
-
// If we encounter an escaped % then don't increase the array index
|
41433
|
-
if (match === '%%') {
|
41434
|
-
return match;
|
41435
|
-
}
|
41436
|
-
|
41437
|
-
index++;
|
41438
|
-
var formatter = createDebug.formatters[format];
|
41439
|
-
|
41440
|
-
if (typeof formatter === 'function') {
|
41441
|
-
var val = args[index];
|
41442
|
-
match = formatter.call(self, val); // Now we need to remove `args[index]` since it's inlined in the `format`
|
41443
|
-
|
41444
|
-
args.splice(index, 1);
|
41445
|
-
index--;
|
41446
|
-
}
|
41447
|
-
|
41448
|
-
return match;
|
41449
|
-
}); // Apply env-specific formatting (colors, etc.)
|
41450
|
-
|
41451
|
-
createDebug.formatArgs.call(self, args);
|
41452
|
-
var logFn = self.log || createDebug.log;
|
41453
|
-
logFn.apply(self, args);
|
41454
|
-
}
|
41455
|
-
|
41456
|
-
debug.namespace = namespace;
|
41457
|
-
debug.enabled = createDebug.enabled(namespace);
|
41458
|
-
debug.useColors = createDebug.useColors();
|
41459
|
-
debug.color = selectColor(namespace);
|
41460
|
-
debug.destroy = destroy;
|
41461
|
-
debug.extend = extend; // Debug.formatArgs = formatArgs;
|
41462
|
-
// debug.rawLog = rawLog;
|
41463
|
-
// env-specific initialization logic for debug instances
|
41464
|
-
|
41465
|
-
if (typeof createDebug.init === 'function') {
|
41466
|
-
createDebug.init(debug);
|
41467
|
-
}
|
41468
|
-
|
41469
|
-
createDebug.instances.push(debug);
|
41470
|
-
return debug;
|
41471
|
-
}
|
41472
|
-
|
41473
|
-
function destroy() {
|
41474
|
-
var index = createDebug.instances.indexOf(this);
|
41475
|
-
|
41476
|
-
if (index !== -1) {
|
41477
|
-
createDebug.instances.splice(index, 1);
|
41478
|
-
return true;
|
41479
|
-
}
|
41480
|
-
|
41481
|
-
return false;
|
41482
|
-
}
|
41483
|
-
|
41484
|
-
function extend(namespace, delimiter) {
|
41485
|
-
return createDebug(this.namespace + (typeof delimiter === 'undefined' ? ':' : delimiter) + namespace);
|
41486
|
-
}
|
41487
|
-
/**
|
41488
|
-
* Enables a debug mode by namespaces. This can include modes
|
41489
|
-
* separated by a colon and wildcards.
|
41490
|
-
*
|
41491
|
-
* @param {String} namespaces
|
41492
|
-
* @api public
|
41493
|
-
*/
|
41494
|
-
|
41495
|
-
|
41496
|
-
function enable(namespaces) {
|
41497
|
-
createDebug.save(namespaces);
|
41498
|
-
createDebug.names = [];
|
41499
|
-
createDebug.skips = [];
|
41500
|
-
var i;
|
41501
|
-
var split = (typeof namespaces === 'string' ? namespaces : '').split(/[\s,]+/);
|
41502
|
-
var len = split.length;
|
41503
|
-
|
41504
|
-
for (i = 0; i < len; i++) {
|
41505
|
-
if (!split[i]) {
|
41506
|
-
// ignore empty strings
|
41507
|
-
continue;
|
41508
|
-
}
|
41509
|
-
|
41510
|
-
namespaces = split[i].replace(/\*/g, '.*?');
|
41511
|
-
|
41512
|
-
if (namespaces[0] === '-') {
|
41513
|
-
createDebug.skips.push(new RegExp('^' + namespaces.substr(1) + '$'));
|
41514
|
-
} else {
|
41515
|
-
createDebug.names.push(new RegExp('^' + namespaces + '$'));
|
41516
|
-
}
|
41517
|
-
}
|
41518
|
-
|
41519
|
-
for (i = 0; i < createDebug.instances.length; i++) {
|
41520
|
-
var instance = createDebug.instances[i];
|
41521
|
-
instance.enabled = createDebug.enabled(instance.namespace);
|
41522
|
-
}
|
41523
|
-
}
|
41524
|
-
/**
|
41525
|
-
* Disable debug output.
|
41526
|
-
*
|
41527
|
-
* @api public
|
41528
|
-
*/
|
41529
|
-
|
41530
|
-
|
41531
|
-
function disable() {
|
41532
|
-
createDebug.enable('');
|
41533
|
-
}
|
41534
|
-
/**
|
41535
|
-
* Returns true if the given mode name is enabled, false otherwise.
|
41536
|
-
*
|
41537
|
-
* @param {String} name
|
41538
|
-
* @return {Boolean}
|
41539
|
-
* @api public
|
41540
|
-
*/
|
41541
|
-
|
41542
|
-
|
41543
|
-
function enabled(name) {
|
41544
|
-
if (name[name.length - 1] === '*') {
|
41545
|
-
return true;
|
41546
|
-
}
|
41547
|
-
|
41548
|
-
var i;
|
41549
|
-
var len;
|
41550
|
-
|
41551
|
-
for (i = 0, len = createDebug.skips.length; i < len; i++) {
|
41552
|
-
if (createDebug.skips[i].test(name)) {
|
41553
|
-
return false;
|
41554
|
-
}
|
41555
|
-
}
|
41556
|
-
|
41557
|
-
for (i = 0, len = createDebug.names.length; i < len; i++) {
|
41558
|
-
if (createDebug.names[i].test(name)) {
|
41559
|
-
return true;
|
41560
|
-
}
|
41561
|
-
}
|
41562
|
-
|
41563
|
-
return false;
|
41564
|
-
}
|
41565
|
-
/**
|
41566
|
-
* Coerce `val`.
|
41567
|
-
*
|
41568
|
-
* @param {Mixed} val
|
41569
|
-
* @return {Mixed}
|
41570
|
-
* @api private
|
41571
|
-
*/
|
41572
|
-
|
41573
|
-
|
41574
|
-
function coerce(val) {
|
41575
|
-
if (val instanceof Error) {
|
41576
|
-
return val.stack || val.message;
|
41577
|
-
}
|
41578
|
-
|
41579
|
-
return val;
|
41580
|
-
}
|
41581
|
-
|
41582
|
-
createDebug.enable(createDebug.load());
|
41583
|
-
return createDebug;
|
41584
|
-
}
|
41585
|
-
|
41586
|
-
module.exports = setup;
|
41587
|
-
|
41588
|
-
|
41589
|
-
|
41590
|
-
/***/ }),
|
41591
|
-
|
41592
|
-
/***/ 49064:
|
41593
|
-
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
41594
|
-
|
41595
|
-
"use strict";
|
41596
|
-
|
41597
|
-
|
41598
|
-
/**
|
41599
|
-
* Detect Electron renderer / nwjs process, which is node, but we should
|
41600
|
-
* treat as a browser.
|
41601
|
-
*/
|
41602
|
-
if (typeof process === 'undefined' || process.type === 'renderer' || process.browser === true || process.__nwjs) {
|
41603
|
-
module.exports = __webpack_require__(12308);
|
41604
|
-
} else {
|
41605
|
-
module.exports = __webpack_require__(39227);
|
41606
|
-
}
|
41607
|
-
|
41608
|
-
|
41609
|
-
|
41610
|
-
/***/ }),
|
41611
|
-
|
41612
|
-
/***/ 39227:
|
41613
|
-
/***/ ((module, exports, __webpack_require__) => {
|
41614
|
-
|
41615
|
-
"use strict";
|
41616
|
-
|
41617
|
-
|
41618
|
-
/**
|
41619
|
-
* Module dependencies.
|
41620
|
-
*/
|
41621
|
-
var tty = __webpack_require__(33867);
|
41622
|
-
|
41623
|
-
var util = __webpack_require__(31669);
|
41624
|
-
/**
|
41625
|
-
* This is the Node.js implementation of `debug()`.
|
41626
|
-
*/
|
41627
|
-
|
41628
|
-
|
41629
|
-
exports.init = init;
|
41630
|
-
exports.log = log;
|
41631
|
-
exports.formatArgs = formatArgs;
|
41632
|
-
exports.save = save;
|
41633
|
-
exports.load = load;
|
41634
|
-
exports.useColors = useColors;
|
41635
|
-
/**
|
41636
|
-
* Colors.
|
41637
|
-
*/
|
41638
|
-
|
41639
|
-
exports.colors = [6, 2, 3, 4, 5, 1];
|
41640
|
-
|
41641
|
-
try {
|
41642
|
-
// Optional dependency (as in, doesn't need to be installed, NOT like optionalDependencies in package.json)
|
41643
|
-
// eslint-disable-next-line import/no-extraneous-dependencies
|
41644
|
-
var supportsColor = __webpack_require__(96328);
|
41645
|
-
|
41646
|
-
if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
|
41647
|
-
exports.colors = [20, 21, 26, 27, 32, 33, 38, 39, 40, 41, 42, 43, 44, 45, 56, 57, 62, 63, 68, 69, 74, 75, 76, 77, 78, 79, 80, 81, 92, 93, 98, 99, 112, 113, 128, 129, 134, 135, 148, 149, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 178, 179, 184, 185, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 214, 215, 220, 221];
|
41648
|
-
}
|
41649
|
-
} catch (error) {} // Swallow - we only care if `supports-color` is available; it doesn't have to be.
|
41650
|
-
|
41651
|
-
/**
|
41652
|
-
* Build up the default `inspectOpts` object from the environment variables.
|
41653
|
-
*
|
41654
|
-
* $ DEBUG_COLORS=no DEBUG_DEPTH=10 DEBUG_SHOW_HIDDEN=enabled node script.js
|
41655
|
-
*/
|
41656
|
-
|
41657
|
-
|
41658
|
-
exports.inspectOpts = Object.keys(process.env).filter(function (key) {
|
41659
|
-
return /^debug_/i.test(key);
|
41660
|
-
}).reduce(function (obj, key) {
|
41661
|
-
// Camel-case
|
41662
|
-
var prop = key.substring(6).toLowerCase().replace(/_([a-z])/g, function (_, k) {
|
41663
|
-
return k.toUpperCase();
|
41664
|
-
}); // Coerce string value into JS value
|
41665
|
-
|
41666
|
-
var val = process.env[key];
|
41667
|
-
|
41668
|
-
if (/^(yes|on|true|enabled)$/i.test(val)) {
|
41669
|
-
val = true;
|
41670
|
-
} else if (/^(no|off|false|disabled)$/i.test(val)) {
|
41671
|
-
val = false;
|
41672
|
-
} else if (val === 'null') {
|
41673
|
-
val = null;
|
41674
|
-
} else {
|
41675
|
-
val = Number(val);
|
41676
|
-
}
|
41677
|
-
|
41678
|
-
obj[prop] = val;
|
41679
|
-
return obj;
|
41680
|
-
}, {});
|
41681
|
-
/**
|
41682
|
-
* Is stdout a TTY? Colored output is enabled when `true`.
|
41683
|
-
*/
|
41684
|
-
|
41685
|
-
function useColors() {
|
41686
|
-
return 'colors' in exports.inspectOpts ? Boolean(exports.inspectOpts.colors) : tty.isatty(process.stderr.fd);
|
41687
|
-
}
|
41688
|
-
/**
|
41689
|
-
* Adds ANSI color escape codes if enabled.
|
41690
|
-
*
|
41691
|
-
* @api public
|
41692
|
-
*/
|
41693
|
-
|
41694
|
-
|
41695
|
-
function formatArgs(args) {
|
41696
|
-
var name = this.namespace,
|
41697
|
-
useColors = this.useColors;
|
41698
|
-
|
41699
|
-
if (useColors) {
|
41700
|
-
var c = this.color;
|
41701
|
-
var colorCode = "\x1B[3" + (c < 8 ? c : '8;5;' + c);
|
41702
|
-
var prefix = " ".concat(colorCode, ";1m").concat(name, " \x1B[0m");
|
41703
|
-
args[0] = prefix + args[0].split('\n').join('\n' + prefix);
|
41704
|
-
args.push(colorCode + 'm+' + module.exports.humanize(this.diff) + "\x1B[0m");
|
41705
|
-
} else {
|
41706
|
-
args[0] = getDate() + name + ' ' + args[0];
|
41707
|
-
}
|
41708
|
-
}
|
41709
|
-
|
41710
|
-
function getDate() {
|
41711
|
-
if (exports.inspectOpts.hideDate) {
|
41712
|
-
return '';
|
41713
|
-
}
|
41714
|
-
|
41715
|
-
return new Date().toISOString() + ' ';
|
41716
|
-
}
|
41717
|
-
/**
|
41718
|
-
* Invokes `util.format()` with the specified arguments and writes to stderr.
|
41719
|
-
*/
|
41720
|
-
|
41721
|
-
|
41722
|
-
function log() {
|
41723
|
-
return process.stderr.write(util.format.apply(util, arguments) + '\n');
|
41724
|
-
}
|
41725
|
-
/**
|
41726
|
-
* Save `namespaces`.
|
41727
|
-
*
|
41728
|
-
* @param {String} namespaces
|
41729
|
-
* @api private
|
41730
|
-
*/
|
41731
|
-
|
41732
|
-
|
41733
|
-
function save(namespaces) {
|
41734
|
-
if (namespaces) {
|
41735
|
-
process.env.DEBUG = namespaces;
|
41736
|
-
} else {
|
41737
|
-
// If you set a process.env field to null or undefined, it gets cast to the
|
41738
|
-
// string 'null' or 'undefined'. Just delete instead.
|
41739
|
-
delete process.env.DEBUG;
|
41740
|
-
}
|
41741
|
-
}
|
41742
|
-
/**
|
41743
|
-
* Load `namespaces`.
|
41744
|
-
*
|
41745
|
-
* @return {String} returns the previously persisted debug modes
|
41746
|
-
* @api private
|
41747
|
-
*/
|
41748
|
-
|
41749
|
-
|
41750
|
-
function load() {
|
41751
|
-
return process.env.DEBUG;
|
41752
|
-
}
|
41753
|
-
/**
|
41754
|
-
* Init logic for `debug` instances.
|
41755
|
-
*
|
41756
|
-
* Create a new `inspectOpts` object in case `useColors` is set
|
41757
|
-
* differently for a particular `debug` instance.
|
41758
|
-
*/
|
41759
|
-
|
41760
|
-
|
41761
|
-
function init(debug) {
|
41762
|
-
debug.inspectOpts = {};
|
41763
|
-
var keys = Object.keys(exports.inspectOpts);
|
41764
|
-
|
41765
|
-
for (var i = 0; i < keys.length; i++) {
|
41766
|
-
debug.inspectOpts[keys[i]] = exports.inspectOpts[keys[i]];
|
41767
|
-
}
|
41768
|
-
}
|
41769
|
-
|
41770
|
-
module.exports = __webpack_require__(14878)(exports);
|
41771
|
-
var formatters = module.exports.formatters;
|
41772
|
-
/**
|
41773
|
-
* Map %o to `util.inspect()`, all on a single line.
|
41774
|
-
*/
|
41775
|
-
|
41776
|
-
formatters.o = function (v) {
|
41777
|
-
this.inspectOpts.colors = this.useColors;
|
41778
|
-
return util.inspect(v, this.inspectOpts)
|
41779
|
-
.split('\n')
|
41780
|
-
.map(function (str) { return str.trim(); })
|
41781
|
-
.join(' ');
|
41782
|
-
};
|
41783
|
-
/**
|
41784
|
-
* Map %O to `util.inspect()`, allowing multiple lines if needed.
|
41785
|
-
*/
|
41786
|
-
|
41787
|
-
|
41788
|
-
formatters.O = function (v) {
|
41789
|
-
this.inspectOpts.colors = this.useColors;
|
41790
|
-
return util.inspect(v, this.inspectOpts);
|
41791
|
-
};
|
41792
|
-
|
41793
|
-
|
41794
|
-
|
41795
41145
|
/***/ }),
|
41796
41146
|
|
41797
41147
|
/***/ 80279:
|
@@ -66501,7 +65851,7 @@ var tls = __webpack_require__(4016);
|
|
66501
65851
|
var url = __webpack_require__(78835);
|
66502
65852
|
var Agent = __webpack_require__(54119);
|
66503
65853
|
var inherits = __webpack_require__(31669).inherits;
|
66504
|
-
var debug = __webpack_require__(
|
65854
|
+
var debug = __webpack_require__(94219)('https-proxy-agent');
|
66505
65855
|
|
66506
65856
|
/**
|
66507
65857
|
* Module exports.
|
@@ -67168,7 +66518,7 @@ return{name,number,description,supported,action,forced,standard};
|
|
67168
66518
|
*/
|
67169
66519
|
|
67170
66520
|
var util = __webpack_require__(31669);
|
67171
|
-
var ms = __webpack_require__(
|
66521
|
+
var ms = __webpack_require__(21378);
|
67172
66522
|
|
67173
66523
|
module.exports = function (t) {
|
67174
66524
|
if (typeof t === 'number') return t;
|
@@ -183435,7 +182785,7 @@ exports.frameworks = [
|
|
183435
182785
|
description: 'A new Remix app — the result of running `npx create-remix`.',
|
183436
182786
|
website: 'https://remix.run',
|
183437
182787
|
sort: 6,
|
183438
|
-
useRuntime: { src: 'package.json', use: '@vercel/remix' },
|
182788
|
+
useRuntime: { src: 'package.json', use: '@vercel/remix-builder' },
|
183439
182789
|
ignoreRuntimes: ['@vercel/node'],
|
183440
182790
|
detectors: {
|
183441
182791
|
some: [
|
@@ -189465,11 +188815,11 @@ exports.default = main;
|
|
189465
188815
|
* then it will be serialized into the `builds.json` manifest file.
|
189466
188816
|
*/
|
189467
188817
|
async function doBuild(client, project, buildsJson, cwd, outputDir) {
|
189468
|
-
const { output } = client;
|
188818
|
+
const { localConfigPath, output } = client;
|
189469
188819
|
const workPath = (0, path_1.join)(cwd, project.settings.rootDirectory || '.');
|
189470
188820
|
const [pkg, vercelConfig, nowConfig] = await Promise.all([
|
189471
188821
|
(0, read_json_file_1.default)((0, path_1.join)(workPath, 'package.json')),
|
189472
|
-
(0, read_json_file_1.default)((0, path_1.join)(workPath, 'vercel.json')),
|
188822
|
+
(0, read_json_file_1.default)(localConfigPath || (0, path_1.join)(workPath, 'vercel.json')),
|
189473
188823
|
(0, read_json_file_1.default)((0, path_1.join)(workPath, 'now.json')),
|
189474
188824
|
]);
|
189475
188825
|
if (pkg instanceof errors_ts_1.CantParseJSONFile)
|
@@ -189791,7 +189141,9 @@ function expandBuild(files, build) {
|
|
189791
189141
|
action: 'View Documentation',
|
189792
189142
|
});
|
189793
189143
|
}
|
189794
|
-
let src = (0, path_1.normalize)(build.src || '**')
|
189144
|
+
let src = (0, path_1.normalize)(build.src || '**')
|
189145
|
+
.split(path_1.sep)
|
189146
|
+
.join('/');
|
189795
189147
|
if (src === '.' || src === './') {
|
189796
189148
|
throw new build_utils_1.NowBuildError({
|
189797
189149
|
code: `invalid_build_specification`,
|
@@ -196697,6 +196049,7 @@ const main = async () => {
|
|
196697
196049
|
config,
|
196698
196050
|
authConfig,
|
196699
196051
|
localConfig,
|
196052
|
+
localConfigPath,
|
196700
196053
|
argv: process.argv,
|
196701
196054
|
});
|
196702
196055
|
let subcommand;
|
@@ -197845,7 +197198,7 @@ async function setMonorepoDefaultSettings(cwd, workPath, projectSettings, output
|
|
197845
197198
|
return;
|
197846
197199
|
}
|
197847
197200
|
const { monorepoManager, ...commands } = result;
|
197848
|
-
output.log(`
|
197201
|
+
output.log(`Detected ${(0, title_1.default)(monorepoManager)}. Adjusting default settings...`);
|
197849
197202
|
if (commands.buildCommand) {
|
197850
197203
|
setCommand('buildCommand', commands.buildCommand);
|
197851
197204
|
}
|
@@ -198821,10 +198174,7 @@ function getWildcardCNSForAlias(alias) {
|
|
198821
198174
|
throw new errors_ts_1.InvalidDomain(alias);
|
198822
198175
|
}
|
198823
198176
|
const secondLevel = subdomain && subdomain.includes('.')
|
198824
|
-
? subdomain
|
198825
|
-
.split('.')
|
198826
|
-
.slice(1)
|
198827
|
-
.join('.')
|
198177
|
+
? subdomain.split('.').slice(1).join('.')
|
198828
198178
|
: null;
|
198829
198179
|
const root = secondLevel ? `${secondLevel}.${domain}` : domain;
|
198830
198180
|
return [root, `*.${root}`];
|
@@ -199147,6 +198497,7 @@ class Client extends events_1.EventEmitter {
|
|
199147
198497
|
this.output = opts.output;
|
199148
198498
|
this.config = opts.config;
|
199149
198499
|
this.localConfig = opts.localConfig;
|
198500
|
+
this.localConfigPath = opts.localConfigPath;
|
199150
198501
|
this.requestIdCounter = 1;
|
199151
198502
|
this._createPromptModule();
|
199152
198503
|
}
|
@@ -203251,7 +202602,7 @@ exports.default = addDNSRecord;
|
|
203251
202602
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
203252
202603
|
async function deleteDNSRecordById(client, domain, recordId) {
|
203253
202604
|
return client.fetch(`/v3/domains/${encodeURIComponent(domain)}/records/${recordId}`, {
|
203254
|
-
method: 'DELETE'
|
202605
|
+
method: 'DELETE',
|
203255
202606
|
});
|
203256
202607
|
}
|
203257
202608
|
exports.default = deleteDNSRecordById;
|
@@ -203510,7 +202861,7 @@ function parseAddArgs(args) {
|
|
203510
202861
|
if (domain && rest.length === 0) {
|
203511
202862
|
return {
|
203512
202863
|
domain,
|
203513
|
-
data: null
|
202864
|
+
data: null,
|
203514
202865
|
};
|
203515
202866
|
}
|
203516
202867
|
const name = args[1] === '@' ? '' : args[1].toString();
|
@@ -203522,7 +202873,7 @@ function parseAddArgs(args) {
|
|
203522
202873
|
if (type === 'MX' && args.length === 5) {
|
203523
202874
|
return {
|
203524
202875
|
domain,
|
203525
|
-
data: { name, type, value, mxPriority: Number(args[4]) }
|
202876
|
+
data: { name, type, value, mxPriority: Number(args[4]) },
|
203526
202877
|
};
|
203527
202878
|
}
|
203528
202879
|
if (type === 'SRV' && args.length === 7) {
|
@@ -203535,9 +202886,9 @@ function parseAddArgs(args) {
|
|
203535
202886
|
priority: Number(value),
|
203536
202887
|
weight: Number(args[4]),
|
203537
202888
|
port: Number(args[5]),
|
203538
|
-
target: args[6]
|
203539
|
-
}
|
203540
|
-
}
|
202889
|
+
target: args[6],
|
202890
|
+
},
|
202891
|
+
},
|
203541
202892
|
};
|
203542
202893
|
}
|
203543
202894
|
if (args.length === 4) {
|
@@ -203546,8 +202897,8 @@ function parseAddArgs(args) {
|
|
203546
202897
|
data: {
|
203547
202898
|
name,
|
203548
202899
|
type,
|
203549
|
-
value
|
203550
|
-
}
|
202900
|
+
value,
|
202901
|
+
},
|
203551
202902
|
};
|
203552
202903
|
}
|
203553
202904
|
return null;
|
@@ -203631,7 +202982,7 @@ async function getAuthCode(code) {
|
|
203631
202982
|
}
|
203632
202983
|
return (0, text_1.default)({
|
203633
202984
|
label: `- Transfer auth code: `,
|
203634
|
-
validateValue: isValidAuthCode
|
202985
|
+
validateValue: isValidAuthCode,
|
203635
202986
|
});
|
203636
202987
|
}
|
203637
202988
|
exports.default = getAuthCode;
|
@@ -205831,7 +205182,7 @@ function formatDNSTable(rows, { extraSpace = '' } = {}) {
|
|
205831
205182
|
return (0, text_table_1.default)([HEADER, ...rows], {
|
205832
205183
|
align: ['l', 'l', 'l'],
|
205833
205184
|
hsep: ' '.repeat(8),
|
205834
|
-
stringLength: strlen_1.default
|
205185
|
+
stringLength: strlen_1.default,
|
205835
205186
|
}).replace(/^(.*)/gm, `${extraSpace}$1`);
|
205836
205187
|
}
|
205837
205188
|
exports.default = formatDNSTable;
|
@@ -205863,16 +205214,20 @@ function formatNSTable(intendedNameservers, currentNameservers, { extraSpace = '
|
|
205863
205214
|
sortedCurrent[i] || chalk_1.default.gray('-'),
|
205864
205215
|
sortedIntended[i] === sortedCurrent[i]
|
205865
205216
|
? chalk_1.default.green(chars_1.default.tick)
|
205866
|
-
: chalk_1.default.red(chars_1.default.cross)
|
205217
|
+
: chalk_1.default.red(chars_1.default.cross),
|
205867
205218
|
]);
|
205868
205219
|
}
|
205869
205220
|
return (0, text_table_1.default)([
|
205870
|
-
[
|
205871
|
-
|
205221
|
+
[
|
205222
|
+
chalk_1.default.gray('Intended Nameservers'),
|
205223
|
+
chalk_1.default.gray('Current Nameservers'),
|
205224
|
+
'',
|
205225
|
+
],
|
205226
|
+
...rows,
|
205872
205227
|
], {
|
205873
205228
|
align: ['l', 'l', 'l', 'l'],
|
205874
205229
|
hsep: ' '.repeat(4),
|
205875
|
-
stringLength: strlen_1.default
|
205230
|
+
stringLength: strlen_1.default,
|
205876
205231
|
}).replace(/^(.*)/gm, `${extraSpace}$1`);
|
205877
205232
|
}
|
205878
205233
|
exports.default = formatNSTable;
|
@@ -206550,7 +205905,7 @@ function getSubcommand(cliArgs, config) {
|
|
206550
205905
|
}
|
206551
205906
|
return {
|
206552
205907
|
subcommand: config.default,
|
206553
|
-
args: cliArgs
|
205908
|
+
args: cliArgs,
|
206554
205909
|
};
|
206555
205910
|
}
|
206556
205911
|
exports.default = getSubcommand;
|
@@ -209245,7 +208600,7 @@ exports.metrics = metrics;
|
|
209245
208600
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
209246
208601
|
exports.NowError = void 0;
|
209247
208602
|
class NowError extends Error {
|
209248
|
-
constructor({ code, message, meta }) {
|
208603
|
+
constructor({ code, message, meta, }) {
|
209249
208604
|
super(message);
|
209250
208605
|
this.code = code;
|
209251
208606
|
this.meta = meta;
|
@@ -212334,7 +211689,7 @@ module.exports = JSON.parse("[[[0,44],\"disallowed_STD3_valid\"],[[45,46],\"vali
|
|
212334
211689
|
/***/ ((module) => {
|
212335
211690
|
|
212336
211691
|
"use strict";
|
212337
|
-
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"28.
|
211692
|
+
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"28.17.0\",\"preferGlobal\":true,\"license\":\"Apache-2.0\",\"description\":\"The command-line interface for Vercel\",\"homepage\":\"https://vercel.com\",\"repository\":{\"type\":\"git\",\"url\":\"https://github.com/vercel/vercel.git\",\"directory\":\"packages/cli\"},\"scripts\":{\"preinstall\":\"node ./scripts/preinstall.js\",\"test\":\"jest --env node --verbose --bail\",\"test-unit\":\"pnpm test test/unit/\",\"test-cli\":\"rimraf test/fixtures/integration && pnpm test test/integration.test.ts\",\"test-dev\":\"pnpm 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\"],\"engines\":{\"node\":\">= 14\"},\"dependencies\":{\"@vercel/build-utils\":\"6.4.0\",\"@vercel/go\":\"2.4.0\",\"@vercel/hydrogen\":\"0.0.58\",\"@vercel/next\":\"3.6.7\",\"@vercel/node\":\"2.9.13\",\"@vercel/python\":\"3.1.54\",\"@vercel/redwood\":\"1.1.10\",\"@vercel/remix-builder\":\"1.7.0\",\"@vercel/ruby\":\"1.3.71\",\"@vercel/static-build\":\"1.3.17\"},\"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/async-retry\":\"1.2.1\",\"@types/bytes\":\"3.0.0\",\"@types/chance\":\"1.1.3\",\"@types/debug\":\"0.0.31\",\"@types/dotenv\":\"6.1.1\",\"@types/escape-html\":\"0.0.20\",\"@types/express\":\"4.17.13\",\"@types/fs-extra\":\"9.0.13\",\"@types/glob\":\"7.1.1\",\"@types/http-proxy\":\"1.16.2\",\"@types/ini\":\"1.3.31\",\"@types/inquirer\":\"7.3.1\",\"@types/jest\":\"27.4.1\",\"@types/jest-expect-message\":\"1.0.3\",\"@types/load-json-file\":\"2.0.7\",\"@types/mime-types\":\"2.1.0\",\"@types/minimatch\":\"3.0.3\",\"@types/mri\":\"1.1.0\",\"@types/ms\":\"0.7.30\",\"@types/node\":\"14.18.33\",\"@types/node-fetch\":\"2.5.10\",\"@types/npm-package-arg\":\"6.1.0\",\"@types/pluralize\":\"0.0.29\",\"@types/psl\":\"1.1.0\",\"@types/qs\":\"6.9.7\",\"@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-internals/types\":\"*\",\"@vercel/client\":\"12.4.5\",\"@vercel/error-utils\":\"1.0.8\",\"@vercel/frameworks\":\"1.3.3\",\"@vercel/fs-detectors\":\"3.8.5\",\"@vercel/fun\":\"1.0.4\",\"@vercel/ncc\":\"0.24.0\",\"@vercel/routing-utils\":\"2.1.11\",\"@zeit/source-map-support\":\"0.6.2\",\"ajv\":\"6.12.2\",\"alpha-sort\":\"2.0.1\",\"ansi-escapes\":\"4.3.2\",\"ansi-regex\":\"5.0.1\",\"arg\":\"5.0.0\",\"async-listen\":\"1.2.0\",\"async-retry\":\"1.1.3\",\"async-sema\":\"2.1.4\",\"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-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\",\"find-up\":\"4.1.0\",\"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\",\"jest-matcher-utils\":\"29.3.1\",\"jsonlines\":\"0.1.1\",\"line-async-iterator\":\"3.0.0\",\"load-json-file\":\"3.0.0\",\"mime-types\":\"2.1.24\",\"minimatch\":\"3.0.4\",\"mri\":\"1.1.5\",\"ms\":\"2.1.2\",\"node-fetch\":\"2.6.7\",\"npm-package-arg\":\"6.1.0\",\"open\":\"8.4.0\",\"ora\":\"3.4.0\",\"pcre-to-regexp\":\"1.0.0\",\"pluralize\":\"7.0.0\",\"promisepipe\":\"3.0.0\",\"psl\":\"1.1.31\",\"qr-image\":\"3.2.0\",\"raw-body\":\"2.4.1\",\"rimraf\":\"3.0.2\",\"semver\":\"5.5.0\",\"serve-handler\":\"6.1.1\",\"strip-ansi\":\"6.0.1\",\"stripe\":\"5.1.0\",\"supports-hyperlinks\":\"2.2.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.9.4\",\"universal-analytics\":\"0.4.20\",\"utility-types\":\"2.1.0\",\"write-json-file\":\"2.2.0\",\"xdg-app-paths\":\"5.1.0\",\"yauzl-promise\":\"2.1.3\"},\"jest\":{\"preset\":\"ts-jest\",\"globals\":{\"ts-jest\":{\"diagnostics\":false,\"isolatedModules\":true}},\"setupFilesAfterEnv\":[\"@alex_neo/jest-expect-message\"],\"verbose\":false,\"testEnvironment\":\"node\",\"testMatch\":[\"<rootDir>/test/**/*.test.ts\"]}}");
|
212338
211693
|
|
212339
211694
|
/***/ }),
|
212340
211695
|
|
@@ -212342,7 +211697,7 @@ module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"28.16.15\",\"pre
|
|
212342
211697
|
/***/ ((module) => {
|
212343
211698
|
|
212344
211699
|
"use strict";
|
212345
|
-
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"12.4.
|
211700
|
+
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"12.4.5\",\"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-e2e\":\"pnpm 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\":\"pnpm test tests/unit.*test.*\"},\"engines\":{\"node\":\">= 14\"},\"devDependencies\":{\"@types/async-retry\":\"1.4.5\",\"@types/fs-extra\":\"7.0.0\",\"@types/jest\":\"27.4.1\",\"@types/minimatch\":\"3.0.5\",\"@types/ms\":\"0.7.30\",\"@types/node\":\"14.18.33\",\"@types/node-fetch\":\"2.5.4\",\"@types/recursive-readdir\":\"2.2.0\",\"@types/tar-fs\":\"1.16.1\",\"typescript\":\"4.3.4\"},\"jest\":{\"preset\":\"ts-jest\",\"testEnvironment\":\"node\",\"verbose\":false,\"setupFilesAfterEnv\":[\"<rootDir>/tests/setup/index.ts\"]},\"dependencies\":{\"@vercel/build-utils\":\"6.4.0\",\"@vercel/routing-utils\":\"2.1.11\",\"@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\",\"tar-fs\":\"1.16.3\"}}");
|
212346
211701
|
|
212347
211702
|
/***/ }),
|
212348
211703
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "vercel",
|
3
|
-
"version": "28.
|
3
|
+
"version": "28.17.0",
|
4
4
|
"preferGlobal": true,
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"description": "The command-line interface for Vercel",
|
@@ -14,7 +14,7 @@
|
|
14
14
|
"preinstall": "node ./scripts/preinstall.js",
|
15
15
|
"test": "jest --env node --verbose --bail",
|
16
16
|
"test-unit": "pnpm test test/unit/",
|
17
|
-
"test-cli": "rimraf test/fixtures/integration &&
|
17
|
+
"test-cli": "rimraf test/fixtures/integration && pnpm test test/integration.test.ts",
|
18
18
|
"test-dev": "pnpm test test/dev/",
|
19
19
|
"coverage": "codecov",
|
20
20
|
"build": "ts-node ./scripts/build.ts",
|
@@ -28,29 +28,20 @@
|
|
28
28
|
"dist",
|
29
29
|
"scripts/preinstall.js"
|
30
30
|
],
|
31
|
-
"ava": {
|
32
|
-
"extensions": [
|
33
|
-
"ts"
|
34
|
-
],
|
35
|
-
"require": [
|
36
|
-
"ts-node/register/transpile-only",
|
37
|
-
"esm"
|
38
|
-
]
|
39
|
-
},
|
40
31
|
"engines": {
|
41
32
|
"node": ">= 14"
|
42
33
|
},
|
43
34
|
"dependencies": {
|
44
|
-
"@vercel/build-utils": "6.
|
45
|
-
"@vercel/go": "2.
|
46
|
-
"@vercel/hydrogen": "0.0.
|
47
|
-
"@vercel/next": "3.6.
|
48
|
-
"@vercel/node": "2.9.
|
49
|
-
"@vercel/python": "3.1.
|
50
|
-
"@vercel/redwood": "1.1.
|
51
|
-
"@vercel/remix": "1.
|
52
|
-
"@vercel/ruby": "1.3.
|
53
|
-
"@vercel/static-build": "1.3.
|
35
|
+
"@vercel/build-utils": "6.4.0",
|
36
|
+
"@vercel/go": "2.4.0",
|
37
|
+
"@vercel/hydrogen": "0.0.58",
|
38
|
+
"@vercel/next": "3.6.7",
|
39
|
+
"@vercel/node": "2.9.13",
|
40
|
+
"@vercel/python": "3.1.54",
|
41
|
+
"@vercel/redwood": "1.1.10",
|
42
|
+
"@vercel/remix-builder": "1.7.0",
|
43
|
+
"@vercel/ruby": "1.3.71",
|
44
|
+
"@vercel/static-build": "1.3.17"
|
54
45
|
},
|
55
46
|
"devDependencies": {
|
56
47
|
"@alex_neo/jest-expect-message": "1.0.5",
|
@@ -94,13 +85,13 @@
|
|
94
85
|
"@types/write-json-file": "2.2.1",
|
95
86
|
"@types/yauzl-promise": "2.1.0",
|
96
87
|
"@vercel-internals/types": "*",
|
97
|
-
"@vercel/client": "12.4.
|
88
|
+
"@vercel/client": "12.4.5",
|
98
89
|
"@vercel/error-utils": "1.0.8",
|
99
|
-
"@vercel/frameworks": "1.3.
|
100
|
-
"@vercel/fs-detectors": "3.8.
|
90
|
+
"@vercel/frameworks": "1.3.3",
|
91
|
+
"@vercel/fs-detectors": "3.8.5",
|
101
92
|
"@vercel/fun": "1.0.4",
|
102
93
|
"@vercel/ncc": "0.24.0",
|
103
|
-
"@vercel/routing-utils": "2.1.
|
94
|
+
"@vercel/routing-utils": "2.1.11",
|
104
95
|
"@zeit/source-map-support": "0.6.2",
|
105
96
|
"ajv": "6.12.2",
|
106
97
|
"alpha-sort": "2.0.1",
|
@@ -110,7 +101,6 @@
|
|
110
101
|
"async-listen": "1.2.0",
|
111
102
|
"async-retry": "1.1.3",
|
112
103
|
"async-sema": "2.1.4",
|
113
|
-
"ava": "2.2.0",
|
114
104
|
"bytes": "3.0.0",
|
115
105
|
"chalk": "4.1.0",
|
116
106
|
"chance": "1.1.7",
|
@@ -195,5 +185,5 @@
|
|
195
185
|
"<rootDir>/test/**/*.test.ts"
|
196
186
|
]
|
197
187
|
},
|
198
|
-
"gitHead": "
|
188
|
+
"gitHead": "b2c68f1301b6a5eb41b6261b7faac6a8fa4c53eb"
|
199
189
|
}
|