publish-microfrontend 1.6.1-beta.7283 → 1.6.1-beta.7294
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/lib/index.js +573 -254
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -2784,9 +2784,9 @@ var require_ansi_styles = __commonJS({
|
|
|
2784
2784
|
}
|
|
2785
2785
|
});
|
|
2786
2786
|
|
|
2787
|
-
// ../../../node_modules/
|
|
2787
|
+
// ../../../node_modules/wrap-ansi/index.js
|
|
2788
2788
|
var require_wrap_ansi = __commonJS({
|
|
2789
|
-
"../../../node_modules/
|
|
2789
|
+
"../../../node_modules/wrap-ansi/index.js"(exports2, module2) {
|
|
2790
2790
|
"use strict";
|
|
2791
2791
|
var stringWidth = require_string_width();
|
|
2792
2792
|
var stripAnsi2 = require_strip_ansi();
|
|
@@ -23837,9 +23837,9 @@ var require_asynckit = __commonJS({
|
|
|
23837
23837
|
}
|
|
23838
23838
|
});
|
|
23839
23839
|
|
|
23840
|
-
// ../../../node_modules/form-data/lib/populate.js
|
|
23840
|
+
// ../../../node_modules/axios/node_modules/form-data/lib/populate.js
|
|
23841
23841
|
var require_populate = __commonJS({
|
|
23842
|
-
"../../../node_modules/form-data/lib/populate.js"(exports2, module2) {
|
|
23842
|
+
"../../../node_modules/axios/node_modules/form-data/lib/populate.js"(exports2, module2) {
|
|
23843
23843
|
module2.exports = function(dst, src) {
|
|
23844
23844
|
Object.keys(src).forEach(function(prop) {
|
|
23845
23845
|
dst[prop] = dst[prop] || src[prop];
|
|
@@ -23849,9 +23849,9 @@ var require_populate = __commonJS({
|
|
|
23849
23849
|
}
|
|
23850
23850
|
});
|
|
23851
23851
|
|
|
23852
|
-
// ../../../node_modules/form-data/lib/form_data.js
|
|
23852
|
+
// ../../../node_modules/axios/node_modules/form-data/lib/form_data.js
|
|
23853
23853
|
var require_form_data = __commonJS({
|
|
23854
|
-
"../../../node_modules/form-data/lib/form_data.js"(exports2, module2) {
|
|
23854
|
+
"../../../node_modules/axios/node_modules/form-data/lib/form_data.js"(exports2, module2) {
|
|
23855
23855
|
var CombinedStream = require_combined_stream();
|
|
23856
23856
|
var util2 = require("util");
|
|
23857
23857
|
var path = require("path");
|
|
@@ -24232,20 +24232,21 @@ var require_proxy_from_env = __commonJS({
|
|
|
24232
24232
|
}
|
|
24233
24233
|
});
|
|
24234
24234
|
|
|
24235
|
-
// ../../../node_modules/
|
|
24235
|
+
// ../../../node_modules/ms/index.js
|
|
24236
24236
|
var require_ms = __commonJS({
|
|
24237
|
-
"../../../node_modules/
|
|
24237
|
+
"../../../node_modules/ms/index.js"(exports2, module2) {
|
|
24238
24238
|
var s = 1e3;
|
|
24239
24239
|
var m = s * 60;
|
|
24240
24240
|
var h = m * 60;
|
|
24241
24241
|
var d = h * 24;
|
|
24242
|
+
var w = d * 7;
|
|
24242
24243
|
var y = d * 365.25;
|
|
24243
24244
|
module2.exports = function(val, options) {
|
|
24244
24245
|
options = options || {};
|
|
24245
24246
|
var type = typeof val;
|
|
24246
24247
|
if (type === "string" && val.length > 0) {
|
|
24247
24248
|
return parse(val);
|
|
24248
|
-
} else if (type === "number" &&
|
|
24249
|
+
} else if (type === "number" && isFinite(val)) {
|
|
24249
24250
|
return options.long ? fmtLong(val) : fmtShort(val);
|
|
24250
24251
|
}
|
|
24251
24252
|
throw new Error("val is not a non-empty string or a valid number. val=" + JSON.stringify(val));
|
|
@@ -24255,7 +24256,7 @@ var require_ms = __commonJS({
|
|
|
24255
24256
|
if (str.length > 100) {
|
|
24256
24257
|
return;
|
|
24257
24258
|
}
|
|
24258
|
-
var match = /^((?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|years?|yrs?|y)?$/i.exec(str);
|
|
24259
|
+
var match = /^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(str);
|
|
24259
24260
|
if (!match) {
|
|
24260
24261
|
return;
|
|
24261
24262
|
}
|
|
@@ -24268,6 +24269,10 @@ var require_ms = __commonJS({
|
|
|
24268
24269
|
case "yr":
|
|
24269
24270
|
case "y":
|
|
24270
24271
|
return n * y;
|
|
24272
|
+
case "weeks":
|
|
24273
|
+
case "week":
|
|
24274
|
+
case "w":
|
|
24275
|
+
return n * w;
|
|
24271
24276
|
case "days":
|
|
24272
24277
|
case "day":
|
|
24273
24278
|
case "d":
|
|
@@ -24301,187 +24306,324 @@ var require_ms = __commonJS({
|
|
|
24301
24306
|
}
|
|
24302
24307
|
}
|
|
24303
24308
|
function fmtShort(ms) {
|
|
24304
|
-
|
|
24309
|
+
var msAbs = Math.abs(ms);
|
|
24310
|
+
if (msAbs >= d) {
|
|
24305
24311
|
return Math.round(ms / d) + "d";
|
|
24306
24312
|
}
|
|
24307
|
-
if (
|
|
24313
|
+
if (msAbs >= h) {
|
|
24308
24314
|
return Math.round(ms / h) + "h";
|
|
24309
24315
|
}
|
|
24310
|
-
if (
|
|
24316
|
+
if (msAbs >= m) {
|
|
24311
24317
|
return Math.round(ms / m) + "m";
|
|
24312
24318
|
}
|
|
24313
|
-
if (
|
|
24319
|
+
if (msAbs >= s) {
|
|
24314
24320
|
return Math.round(ms / s) + "s";
|
|
24315
24321
|
}
|
|
24316
24322
|
return ms + "ms";
|
|
24317
24323
|
}
|
|
24318
24324
|
function fmtLong(ms) {
|
|
24319
|
-
|
|
24320
|
-
|
|
24321
|
-
|
|
24322
|
-
|
|
24323
|
-
|
|
24325
|
+
var msAbs = Math.abs(ms);
|
|
24326
|
+
if (msAbs >= d) {
|
|
24327
|
+
return plural(ms, msAbs, d, "day");
|
|
24328
|
+
}
|
|
24329
|
+
if (msAbs >= h) {
|
|
24330
|
+
return plural(ms, msAbs, h, "hour");
|
|
24324
24331
|
}
|
|
24325
|
-
if (
|
|
24326
|
-
return
|
|
24332
|
+
if (msAbs >= m) {
|
|
24333
|
+
return plural(ms, msAbs, m, "minute");
|
|
24327
24334
|
}
|
|
24328
|
-
|
|
24335
|
+
if (msAbs >= s) {
|
|
24336
|
+
return plural(ms, msAbs, s, "second");
|
|
24337
|
+
}
|
|
24338
|
+
return ms + " ms";
|
|
24339
|
+
}
|
|
24340
|
+
function plural(ms, msAbs, n, name) {
|
|
24341
|
+
var isPlural = msAbs >= n * 1.5;
|
|
24342
|
+
return Math.round(ms / n) + " " + name + (isPlural ? "s" : "");
|
|
24329
24343
|
}
|
|
24330
24344
|
}
|
|
24331
24345
|
});
|
|
24332
24346
|
|
|
24333
|
-
// ../../../node_modules/debug/src/
|
|
24334
|
-
var
|
|
24335
|
-
"../../../node_modules/debug/src/
|
|
24336
|
-
|
|
24337
|
-
|
|
24338
|
-
|
|
24339
|
-
|
|
24340
|
-
|
|
24341
|
-
|
|
24342
|
-
|
|
24343
|
-
|
|
24344
|
-
|
|
24345
|
-
|
|
24346
|
-
|
|
24347
|
-
|
|
24348
|
-
|
|
24349
|
-
|
|
24350
|
-
|
|
24351
|
-
|
|
24352
|
-
|
|
24353
|
-
|
|
24354
|
-
|
|
24355
|
-
|
|
24356
|
-
|
|
24357
|
-
|
|
24358
|
-
|
|
24359
|
-
|
|
24360
|
-
|
|
24361
|
-
|
|
24362
|
-
|
|
24363
|
-
|
|
24364
|
-
|
|
24365
|
-
|
|
24366
|
-
|
|
24367
|
-
|
|
24368
|
-
|
|
24369
|
-
|
|
24370
|
-
|
|
24371
|
-
|
|
24372
|
-
|
|
24373
|
-
|
|
24374
|
-
|
|
24375
|
-
|
|
24347
|
+
// ../../../node_modules/debug/src/common.js
|
|
24348
|
+
var require_common2 = __commonJS({
|
|
24349
|
+
"../../../node_modules/debug/src/common.js"(exports2, module2) {
|
|
24350
|
+
function setup(env) {
|
|
24351
|
+
createDebug.debug = createDebug;
|
|
24352
|
+
createDebug.default = createDebug;
|
|
24353
|
+
createDebug.coerce = coerce;
|
|
24354
|
+
createDebug.disable = disable;
|
|
24355
|
+
createDebug.enable = enable;
|
|
24356
|
+
createDebug.enabled = enabled;
|
|
24357
|
+
createDebug.humanize = require_ms();
|
|
24358
|
+
createDebug.destroy = destroy;
|
|
24359
|
+
Object.keys(env).forEach((key) => {
|
|
24360
|
+
createDebug[key] = env[key];
|
|
24361
|
+
});
|
|
24362
|
+
createDebug.names = [];
|
|
24363
|
+
createDebug.skips = [];
|
|
24364
|
+
createDebug.formatters = {};
|
|
24365
|
+
function selectColor(namespace) {
|
|
24366
|
+
let hash = 0;
|
|
24367
|
+
for (let i = 0; i < namespace.length; i++) {
|
|
24368
|
+
hash = (hash << 5) - hash + namespace.charCodeAt(i);
|
|
24369
|
+
hash |= 0;
|
|
24370
|
+
}
|
|
24371
|
+
return createDebug.colors[Math.abs(hash) % createDebug.colors.length];
|
|
24372
|
+
}
|
|
24373
|
+
createDebug.selectColor = selectColor;
|
|
24374
|
+
function createDebug(namespace) {
|
|
24375
|
+
let prevTime;
|
|
24376
|
+
let enableOverride = null;
|
|
24377
|
+
let namespacesCache;
|
|
24378
|
+
let enabledCache;
|
|
24379
|
+
function debug(...args2) {
|
|
24380
|
+
if (!debug.enabled) {
|
|
24381
|
+
return;
|
|
24382
|
+
}
|
|
24383
|
+
const self2 = debug;
|
|
24384
|
+
const curr = Number(new Date());
|
|
24385
|
+
const ms = curr - (prevTime || curr);
|
|
24386
|
+
self2.diff = ms;
|
|
24387
|
+
self2.prev = prevTime;
|
|
24388
|
+
self2.curr = curr;
|
|
24389
|
+
prevTime = curr;
|
|
24390
|
+
args2[0] = createDebug.coerce(args2[0]);
|
|
24391
|
+
if (typeof args2[0] !== "string") {
|
|
24392
|
+
args2.unshift("%O");
|
|
24393
|
+
}
|
|
24394
|
+
let index = 0;
|
|
24395
|
+
args2[0] = args2[0].replace(/%([a-zA-Z%])/g, (match, format2) => {
|
|
24396
|
+
if (match === "%%") {
|
|
24397
|
+
return "%";
|
|
24398
|
+
}
|
|
24399
|
+
index++;
|
|
24400
|
+
const formatter = createDebug.formatters[format2];
|
|
24401
|
+
if (typeof formatter === "function") {
|
|
24402
|
+
const val = args2[index];
|
|
24403
|
+
match = formatter.call(self2, val);
|
|
24404
|
+
args2.splice(index, 1);
|
|
24405
|
+
index--;
|
|
24406
|
+
}
|
|
24376
24407
|
return match;
|
|
24377
|
-
|
|
24378
|
-
|
|
24379
|
-
|
|
24380
|
-
|
|
24381
|
-
|
|
24382
|
-
|
|
24383
|
-
|
|
24408
|
+
});
|
|
24409
|
+
createDebug.formatArgs.call(self2, args2);
|
|
24410
|
+
const logFn = self2.log || createDebug.log;
|
|
24411
|
+
logFn.apply(self2, args2);
|
|
24412
|
+
}
|
|
24413
|
+
debug.namespace = namespace;
|
|
24414
|
+
debug.useColors = createDebug.useColors();
|
|
24415
|
+
debug.color = createDebug.selectColor(namespace);
|
|
24416
|
+
debug.extend = extend2;
|
|
24417
|
+
debug.destroy = createDebug.destroy;
|
|
24418
|
+
Object.defineProperty(debug, "enabled", {
|
|
24419
|
+
enumerable: true,
|
|
24420
|
+
configurable: false,
|
|
24421
|
+
get: () => {
|
|
24422
|
+
if (enableOverride !== null) {
|
|
24423
|
+
return enableOverride;
|
|
24424
|
+
}
|
|
24425
|
+
if (namespacesCache !== createDebug.namespaces) {
|
|
24426
|
+
namespacesCache = createDebug.namespaces;
|
|
24427
|
+
enabledCache = createDebug.enabled(namespace);
|
|
24428
|
+
}
|
|
24429
|
+
return enabledCache;
|
|
24430
|
+
},
|
|
24431
|
+
set: (v) => {
|
|
24432
|
+
enableOverride = v;
|
|
24384
24433
|
}
|
|
24385
|
-
return match;
|
|
24386
24434
|
});
|
|
24387
|
-
|
|
24388
|
-
|
|
24389
|
-
|
|
24390
|
-
|
|
24391
|
-
|
|
24392
|
-
|
|
24393
|
-
|
|
24394
|
-
|
|
24395
|
-
|
|
24396
|
-
|
|
24397
|
-
|
|
24398
|
-
|
|
24399
|
-
|
|
24400
|
-
|
|
24401
|
-
|
|
24402
|
-
|
|
24403
|
-
|
|
24404
|
-
|
|
24405
|
-
|
|
24406
|
-
|
|
24407
|
-
|
|
24408
|
-
|
|
24409
|
-
|
|
24410
|
-
|
|
24411
|
-
|
|
24412
|
-
|
|
24413
|
-
|
|
24435
|
+
if (typeof createDebug.init === "function") {
|
|
24436
|
+
createDebug.init(debug);
|
|
24437
|
+
}
|
|
24438
|
+
return debug;
|
|
24439
|
+
}
|
|
24440
|
+
function extend2(namespace, delimiter) {
|
|
24441
|
+
const newDebug = createDebug(this.namespace + (typeof delimiter === "undefined" ? ":" : delimiter) + namespace);
|
|
24442
|
+
newDebug.log = this.log;
|
|
24443
|
+
return newDebug;
|
|
24444
|
+
}
|
|
24445
|
+
function enable(namespaces) {
|
|
24446
|
+
createDebug.save(namespaces);
|
|
24447
|
+
createDebug.namespaces = namespaces;
|
|
24448
|
+
createDebug.names = [];
|
|
24449
|
+
createDebug.skips = [];
|
|
24450
|
+
let i;
|
|
24451
|
+
const split = (typeof namespaces === "string" ? namespaces : "").split(/[\s,]+/);
|
|
24452
|
+
const len = split.length;
|
|
24453
|
+
for (i = 0; i < len; i++) {
|
|
24454
|
+
if (!split[i]) {
|
|
24455
|
+
continue;
|
|
24456
|
+
}
|
|
24457
|
+
namespaces = split[i].replace(/\*/g, ".*?");
|
|
24458
|
+
if (namespaces[0] === "-") {
|
|
24459
|
+
createDebug.skips.push(new RegExp("^" + namespaces.slice(1) + "$"));
|
|
24460
|
+
} else {
|
|
24461
|
+
createDebug.names.push(new RegExp("^" + namespaces + "$"));
|
|
24462
|
+
}
|
|
24414
24463
|
}
|
|
24415
24464
|
}
|
|
24416
|
-
|
|
24417
|
-
|
|
24418
|
-
|
|
24419
|
-
|
|
24420
|
-
|
|
24421
|
-
|
|
24422
|
-
|
|
24423
|
-
if (exports2.skips[i].test(name)) {
|
|
24424
|
-
return false;
|
|
24425
|
-
}
|
|
24465
|
+
function disable() {
|
|
24466
|
+
const namespaces = [
|
|
24467
|
+
...createDebug.names.map(toNamespace),
|
|
24468
|
+
...createDebug.skips.map(toNamespace).map((namespace) => "-" + namespace)
|
|
24469
|
+
].join(",");
|
|
24470
|
+
createDebug.enable("");
|
|
24471
|
+
return namespaces;
|
|
24426
24472
|
}
|
|
24427
|
-
|
|
24428
|
-
if (
|
|
24473
|
+
function enabled(name) {
|
|
24474
|
+
if (name[name.length - 1] === "*") {
|
|
24429
24475
|
return true;
|
|
24430
24476
|
}
|
|
24477
|
+
let i;
|
|
24478
|
+
let len;
|
|
24479
|
+
for (i = 0, len = createDebug.skips.length; i < len; i++) {
|
|
24480
|
+
if (createDebug.skips[i].test(name)) {
|
|
24481
|
+
return false;
|
|
24482
|
+
}
|
|
24483
|
+
}
|
|
24484
|
+
for (i = 0, len = createDebug.names.length; i < len; i++) {
|
|
24485
|
+
if (createDebug.names[i].test(name)) {
|
|
24486
|
+
return true;
|
|
24487
|
+
}
|
|
24488
|
+
}
|
|
24489
|
+
return false;
|
|
24431
24490
|
}
|
|
24432
|
-
|
|
24433
|
-
|
|
24434
|
-
|
|
24435
|
-
|
|
24436
|
-
|
|
24437
|
-
|
|
24491
|
+
function toNamespace(regexp) {
|
|
24492
|
+
return regexp.toString().substring(2, regexp.toString().length - 2).replace(/\.\*\?$/, "*");
|
|
24493
|
+
}
|
|
24494
|
+
function coerce(val) {
|
|
24495
|
+
if (val instanceof Error) {
|
|
24496
|
+
return val.stack || val.message;
|
|
24497
|
+
}
|
|
24498
|
+
return val;
|
|
24499
|
+
}
|
|
24500
|
+
function destroy() {
|
|
24501
|
+
console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
|
|
24502
|
+
}
|
|
24503
|
+
createDebug.enable(createDebug.load());
|
|
24504
|
+
return createDebug;
|
|
24438
24505
|
}
|
|
24506
|
+
module2.exports = setup;
|
|
24439
24507
|
}
|
|
24440
24508
|
});
|
|
24441
24509
|
|
|
24442
24510
|
// ../../../node_modules/debug/src/browser.js
|
|
24443
24511
|
var require_browser = __commonJS({
|
|
24444
24512
|
"../../../node_modules/debug/src/browser.js"(exports2, module2) {
|
|
24445
|
-
exports2 = module2.exports = require_debug();
|
|
24446
|
-
exports2.log = log;
|
|
24447
24513
|
exports2.formatArgs = formatArgs;
|
|
24448
24514
|
exports2.save = save;
|
|
24449
24515
|
exports2.load = load;
|
|
24450
24516
|
exports2.useColors = useColors;
|
|
24451
|
-
exports2.storage =
|
|
24517
|
+
exports2.storage = localstorage();
|
|
24518
|
+
exports2.destroy = (() => {
|
|
24519
|
+
let warned = false;
|
|
24520
|
+
return () => {
|
|
24521
|
+
if (!warned) {
|
|
24522
|
+
warned = true;
|
|
24523
|
+
console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
|
|
24524
|
+
}
|
|
24525
|
+
};
|
|
24526
|
+
})();
|
|
24452
24527
|
exports2.colors = [
|
|
24453
|
-
"
|
|
24454
|
-
"
|
|
24455
|
-
"
|
|
24456
|
-
"
|
|
24457
|
-
"
|
|
24458
|
-
"
|
|
24528
|
+
"#0000CC",
|
|
24529
|
+
"#0000FF",
|
|
24530
|
+
"#0033CC",
|
|
24531
|
+
"#0033FF",
|
|
24532
|
+
"#0066CC",
|
|
24533
|
+
"#0066FF",
|
|
24534
|
+
"#0099CC",
|
|
24535
|
+
"#0099FF",
|
|
24536
|
+
"#00CC00",
|
|
24537
|
+
"#00CC33",
|
|
24538
|
+
"#00CC66",
|
|
24539
|
+
"#00CC99",
|
|
24540
|
+
"#00CCCC",
|
|
24541
|
+
"#00CCFF",
|
|
24542
|
+
"#3300CC",
|
|
24543
|
+
"#3300FF",
|
|
24544
|
+
"#3333CC",
|
|
24545
|
+
"#3333FF",
|
|
24546
|
+
"#3366CC",
|
|
24547
|
+
"#3366FF",
|
|
24548
|
+
"#3399CC",
|
|
24549
|
+
"#3399FF",
|
|
24550
|
+
"#33CC00",
|
|
24551
|
+
"#33CC33",
|
|
24552
|
+
"#33CC66",
|
|
24553
|
+
"#33CC99",
|
|
24554
|
+
"#33CCCC",
|
|
24555
|
+
"#33CCFF",
|
|
24556
|
+
"#6600CC",
|
|
24557
|
+
"#6600FF",
|
|
24558
|
+
"#6633CC",
|
|
24559
|
+
"#6633FF",
|
|
24560
|
+
"#66CC00",
|
|
24561
|
+
"#66CC33",
|
|
24562
|
+
"#9900CC",
|
|
24563
|
+
"#9900FF",
|
|
24564
|
+
"#9933CC",
|
|
24565
|
+
"#9933FF",
|
|
24566
|
+
"#99CC00",
|
|
24567
|
+
"#99CC33",
|
|
24568
|
+
"#CC0000",
|
|
24569
|
+
"#CC0033",
|
|
24570
|
+
"#CC0066",
|
|
24571
|
+
"#CC0099",
|
|
24572
|
+
"#CC00CC",
|
|
24573
|
+
"#CC00FF",
|
|
24574
|
+
"#CC3300",
|
|
24575
|
+
"#CC3333",
|
|
24576
|
+
"#CC3366",
|
|
24577
|
+
"#CC3399",
|
|
24578
|
+
"#CC33CC",
|
|
24579
|
+
"#CC33FF",
|
|
24580
|
+
"#CC6600",
|
|
24581
|
+
"#CC6633",
|
|
24582
|
+
"#CC9900",
|
|
24583
|
+
"#CC9933",
|
|
24584
|
+
"#CCCC00",
|
|
24585
|
+
"#CCCC33",
|
|
24586
|
+
"#FF0000",
|
|
24587
|
+
"#FF0033",
|
|
24588
|
+
"#FF0066",
|
|
24589
|
+
"#FF0099",
|
|
24590
|
+
"#FF00CC",
|
|
24591
|
+
"#FF00FF",
|
|
24592
|
+
"#FF3300",
|
|
24593
|
+
"#FF3333",
|
|
24594
|
+
"#FF3366",
|
|
24595
|
+
"#FF3399",
|
|
24596
|
+
"#FF33CC",
|
|
24597
|
+
"#FF33FF",
|
|
24598
|
+
"#FF6600",
|
|
24599
|
+
"#FF6633",
|
|
24600
|
+
"#FF9900",
|
|
24601
|
+
"#FF9933",
|
|
24602
|
+
"#FFCC00",
|
|
24603
|
+
"#FFCC33"
|
|
24459
24604
|
];
|
|
24460
24605
|
function useColors() {
|
|
24461
|
-
if (typeof window !== "undefined" && window.process && window.process.type === "renderer") {
|
|
24606
|
+
if (typeof window !== "undefined" && window.process && (window.process.type === "renderer" || window.process.__nwjs)) {
|
|
24462
24607
|
return true;
|
|
24463
24608
|
}
|
|
24609
|
+
if (typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/)) {
|
|
24610
|
+
return false;
|
|
24611
|
+
}
|
|
24464
24612
|
return typeof document !== "undefined" && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance || typeof window !== "undefined" && window.console && (window.console.firebug || window.console.exception && window.console.table) || typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/) && parseInt(RegExp.$1, 10) >= 31 || typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/);
|
|
24465
24613
|
}
|
|
24466
|
-
exports2.formatters.j = function(v) {
|
|
24467
|
-
try {
|
|
24468
|
-
return JSON.stringify(v);
|
|
24469
|
-
} catch (err) {
|
|
24470
|
-
return "[UnexpectedJSONParseError]: " + err.message;
|
|
24471
|
-
}
|
|
24472
|
-
};
|
|
24473
24614
|
function formatArgs(args2) {
|
|
24474
|
-
|
|
24475
|
-
|
|
24476
|
-
if (!useColors2)
|
|
24615
|
+
args2[0] = (this.useColors ? "%c" : "") + this.namespace + (this.useColors ? " %c" : " ") + args2[0] + (this.useColors ? "%c " : " ") + "+" + module2.exports.humanize(this.diff);
|
|
24616
|
+
if (!this.useColors) {
|
|
24477
24617
|
return;
|
|
24478
|
-
|
|
24618
|
+
}
|
|
24619
|
+
const c = "color: " + this.color;
|
|
24479
24620
|
args2.splice(1, 0, c, "color: inherit");
|
|
24480
|
-
|
|
24481
|
-
|
|
24482
|
-
args2[0].replace(/%[a-zA-Z%]/g,
|
|
24483
|
-
if (match === "%%")
|
|
24621
|
+
let index = 0;
|
|
24622
|
+
let lastC = 0;
|
|
24623
|
+
args2[0].replace(/%[a-zA-Z%]/g, (match) => {
|
|
24624
|
+
if (match === "%%") {
|
|
24484
24625
|
return;
|
|
24626
|
+
}
|
|
24485
24627
|
index++;
|
|
24486
24628
|
if (match === "%c") {
|
|
24487
24629
|
lastC = index;
|
|
@@ -24489,37 +24631,158 @@ var require_browser = __commonJS({
|
|
|
24489
24631
|
});
|
|
24490
24632
|
args2.splice(lastC, 0, c);
|
|
24491
24633
|
}
|
|
24492
|
-
|
|
24493
|
-
|
|
24494
|
-
}
|
|
24634
|
+
exports2.log = console.debug || console.log || (() => {
|
|
24635
|
+
});
|
|
24495
24636
|
function save(namespaces) {
|
|
24496
24637
|
try {
|
|
24497
|
-
if (namespaces
|
|
24498
|
-
exports2.storage.
|
|
24638
|
+
if (namespaces) {
|
|
24639
|
+
exports2.storage.setItem("debug", namespaces);
|
|
24499
24640
|
} else {
|
|
24500
|
-
exports2.storage.debug
|
|
24641
|
+
exports2.storage.removeItem("debug");
|
|
24501
24642
|
}
|
|
24502
|
-
} catch (
|
|
24643
|
+
} catch (error) {
|
|
24503
24644
|
}
|
|
24504
24645
|
}
|
|
24505
24646
|
function load() {
|
|
24506
|
-
|
|
24647
|
+
let r;
|
|
24507
24648
|
try {
|
|
24508
|
-
r = exports2.storage.debug;
|
|
24509
|
-
} catch (
|
|
24649
|
+
r = exports2.storage.getItem("debug");
|
|
24650
|
+
} catch (error) {
|
|
24510
24651
|
}
|
|
24511
24652
|
if (!r && typeof process !== "undefined" && "env" in process) {
|
|
24512
24653
|
r = process.env.DEBUG;
|
|
24513
24654
|
}
|
|
24514
24655
|
return r;
|
|
24515
24656
|
}
|
|
24516
|
-
exports2.enable(load());
|
|
24517
24657
|
function localstorage() {
|
|
24518
24658
|
try {
|
|
24519
|
-
return
|
|
24520
|
-
} catch (
|
|
24659
|
+
return localStorage;
|
|
24660
|
+
} catch (error) {
|
|
24661
|
+
}
|
|
24662
|
+
}
|
|
24663
|
+
module2.exports = require_common2()(exports2);
|
|
24664
|
+
var { formatters } = module2.exports;
|
|
24665
|
+
formatters.j = function(v) {
|
|
24666
|
+
try {
|
|
24667
|
+
return JSON.stringify(v);
|
|
24668
|
+
} catch (error) {
|
|
24669
|
+
return "[UnexpectedJSONParseError]: " + error.message;
|
|
24670
|
+
}
|
|
24671
|
+
};
|
|
24672
|
+
}
|
|
24673
|
+
});
|
|
24674
|
+
|
|
24675
|
+
// ../../../node_modules/supports-color/index.js
|
|
24676
|
+
var require_supports_color2 = __commonJS({
|
|
24677
|
+
"../../../node_modules/supports-color/index.js"(exports2, module2) {
|
|
24678
|
+
"use strict";
|
|
24679
|
+
var os2 = require("os");
|
|
24680
|
+
var tty = require("tty");
|
|
24681
|
+
var hasFlag = require_has_flag();
|
|
24682
|
+
var { env } = process;
|
|
24683
|
+
var flagForceColor;
|
|
24684
|
+
if (hasFlag("no-color") || hasFlag("no-colors") || hasFlag("color=false") || hasFlag("color=never")) {
|
|
24685
|
+
flagForceColor = 0;
|
|
24686
|
+
} else if (hasFlag("color") || hasFlag("colors") || hasFlag("color=true") || hasFlag("color=always")) {
|
|
24687
|
+
flagForceColor = 1;
|
|
24688
|
+
}
|
|
24689
|
+
function envForceColor() {
|
|
24690
|
+
if ("FORCE_COLOR" in env) {
|
|
24691
|
+
if (env.FORCE_COLOR === "true") {
|
|
24692
|
+
return 1;
|
|
24693
|
+
}
|
|
24694
|
+
if (env.FORCE_COLOR === "false") {
|
|
24695
|
+
return 0;
|
|
24696
|
+
}
|
|
24697
|
+
return env.FORCE_COLOR.length === 0 ? 1 : Math.min(Number.parseInt(env.FORCE_COLOR, 10), 3);
|
|
24698
|
+
}
|
|
24699
|
+
}
|
|
24700
|
+
function translateLevel(level) {
|
|
24701
|
+
if (level === 0) {
|
|
24702
|
+
return false;
|
|
24703
|
+
}
|
|
24704
|
+
return {
|
|
24705
|
+
level,
|
|
24706
|
+
hasBasic: true,
|
|
24707
|
+
has256: level >= 2,
|
|
24708
|
+
has16m: level >= 3
|
|
24709
|
+
};
|
|
24710
|
+
}
|
|
24711
|
+
function supportsColor(haveStream, { streamIsTTY, sniffFlags = true } = {}) {
|
|
24712
|
+
const noFlagForceColor = envForceColor();
|
|
24713
|
+
if (noFlagForceColor !== void 0) {
|
|
24714
|
+
flagForceColor = noFlagForceColor;
|
|
24715
|
+
}
|
|
24716
|
+
const forceColor = sniffFlags ? flagForceColor : noFlagForceColor;
|
|
24717
|
+
if (forceColor === 0) {
|
|
24718
|
+
return 0;
|
|
24719
|
+
}
|
|
24720
|
+
if (sniffFlags) {
|
|
24721
|
+
if (hasFlag("color=16m") || hasFlag("color=full") || hasFlag("color=truecolor")) {
|
|
24722
|
+
return 3;
|
|
24723
|
+
}
|
|
24724
|
+
if (hasFlag("color=256")) {
|
|
24725
|
+
return 2;
|
|
24726
|
+
}
|
|
24727
|
+
}
|
|
24728
|
+
if (haveStream && !streamIsTTY && forceColor === void 0) {
|
|
24729
|
+
return 0;
|
|
24730
|
+
}
|
|
24731
|
+
const min = forceColor || 0;
|
|
24732
|
+
if (env.TERM === "dumb") {
|
|
24733
|
+
return min;
|
|
24734
|
+
}
|
|
24735
|
+
if (process.platform === "win32") {
|
|
24736
|
+
const osRelease = os2.release().split(".");
|
|
24737
|
+
if (Number(osRelease[0]) >= 10 && Number(osRelease[2]) >= 10586) {
|
|
24738
|
+
return Number(osRelease[2]) >= 14931 ? 3 : 2;
|
|
24739
|
+
}
|
|
24740
|
+
return 1;
|
|
24741
|
+
}
|
|
24742
|
+
if ("CI" in env) {
|
|
24743
|
+
if (["TRAVIS", "CIRCLECI", "APPVEYOR", "GITLAB_CI", "GITHUB_ACTIONS", "BUILDKITE", "DRONE"].some((sign) => sign in env) || env.CI_NAME === "codeship") {
|
|
24744
|
+
return 1;
|
|
24745
|
+
}
|
|
24746
|
+
return min;
|
|
24747
|
+
}
|
|
24748
|
+
if ("TEAMCITY_VERSION" in env) {
|
|
24749
|
+
return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;
|
|
24750
|
+
}
|
|
24751
|
+
if (env.COLORTERM === "truecolor") {
|
|
24752
|
+
return 3;
|
|
24753
|
+
}
|
|
24754
|
+
if ("TERM_PROGRAM" in env) {
|
|
24755
|
+
const version = Number.parseInt((env.TERM_PROGRAM_VERSION || "").split(".")[0], 10);
|
|
24756
|
+
switch (env.TERM_PROGRAM) {
|
|
24757
|
+
case "iTerm.app":
|
|
24758
|
+
return version >= 3 ? 3 : 2;
|
|
24759
|
+
case "Apple_Terminal":
|
|
24760
|
+
return 2;
|
|
24761
|
+
}
|
|
24762
|
+
}
|
|
24763
|
+
if (/-256(color)?$/i.test(env.TERM)) {
|
|
24764
|
+
return 2;
|
|
24765
|
+
}
|
|
24766
|
+
if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) {
|
|
24767
|
+
return 1;
|
|
24768
|
+
}
|
|
24769
|
+
if ("COLORTERM" in env) {
|
|
24770
|
+
return 1;
|
|
24521
24771
|
}
|
|
24772
|
+
return min;
|
|
24773
|
+
}
|
|
24774
|
+
function getSupportLevel(stream4, options = {}) {
|
|
24775
|
+
const level = supportsColor(stream4, {
|
|
24776
|
+
streamIsTTY: stream4 && stream4.isTTY,
|
|
24777
|
+
...options
|
|
24778
|
+
});
|
|
24779
|
+
return translateLevel(level);
|
|
24522
24780
|
}
|
|
24781
|
+
module2.exports = {
|
|
24782
|
+
supportsColor: getSupportLevel,
|
|
24783
|
+
stdout: getSupportLevel({ isTTY: tty.isatty(1) }),
|
|
24784
|
+
stderr: getSupportLevel({ isTTY: tty.isatty(2) })
|
|
24785
|
+
};
|
|
24523
24786
|
}
|
|
24524
24787
|
});
|
|
24525
24788
|
|
|
@@ -24528,129 +24791,176 @@ var require_node2 = __commonJS({
|
|
|
24528
24791
|
"../../../node_modules/debug/src/node.js"(exports2, module2) {
|
|
24529
24792
|
var tty = require("tty");
|
|
24530
24793
|
var util2 = require("util");
|
|
24531
|
-
exports2 = module2.exports = require_debug();
|
|
24532
24794
|
exports2.init = init;
|
|
24533
24795
|
exports2.log = log;
|
|
24534
24796
|
exports2.formatArgs = formatArgs;
|
|
24535
24797
|
exports2.save = save;
|
|
24536
24798
|
exports2.load = load;
|
|
24537
24799
|
exports2.useColors = useColors;
|
|
24800
|
+
exports2.destroy = util2.deprecate(() => {
|
|
24801
|
+
}, "Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
|
|
24538
24802
|
exports2.colors = [6, 2, 3, 4, 5, 1];
|
|
24539
|
-
|
|
24803
|
+
try {
|
|
24804
|
+
const supportsColor = require_supports_color2();
|
|
24805
|
+
if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
|
|
24806
|
+
exports2.colors = [
|
|
24807
|
+
20,
|
|
24808
|
+
21,
|
|
24809
|
+
26,
|
|
24810
|
+
27,
|
|
24811
|
+
32,
|
|
24812
|
+
33,
|
|
24813
|
+
38,
|
|
24814
|
+
39,
|
|
24815
|
+
40,
|
|
24816
|
+
41,
|
|
24817
|
+
42,
|
|
24818
|
+
43,
|
|
24819
|
+
44,
|
|
24820
|
+
45,
|
|
24821
|
+
56,
|
|
24822
|
+
57,
|
|
24823
|
+
62,
|
|
24824
|
+
63,
|
|
24825
|
+
68,
|
|
24826
|
+
69,
|
|
24827
|
+
74,
|
|
24828
|
+
75,
|
|
24829
|
+
76,
|
|
24830
|
+
77,
|
|
24831
|
+
78,
|
|
24832
|
+
79,
|
|
24833
|
+
80,
|
|
24834
|
+
81,
|
|
24835
|
+
92,
|
|
24836
|
+
93,
|
|
24837
|
+
98,
|
|
24838
|
+
99,
|
|
24839
|
+
112,
|
|
24840
|
+
113,
|
|
24841
|
+
128,
|
|
24842
|
+
129,
|
|
24843
|
+
134,
|
|
24844
|
+
135,
|
|
24845
|
+
148,
|
|
24846
|
+
149,
|
|
24847
|
+
160,
|
|
24848
|
+
161,
|
|
24849
|
+
162,
|
|
24850
|
+
163,
|
|
24851
|
+
164,
|
|
24852
|
+
165,
|
|
24853
|
+
166,
|
|
24854
|
+
167,
|
|
24855
|
+
168,
|
|
24856
|
+
169,
|
|
24857
|
+
170,
|
|
24858
|
+
171,
|
|
24859
|
+
172,
|
|
24860
|
+
173,
|
|
24861
|
+
178,
|
|
24862
|
+
179,
|
|
24863
|
+
184,
|
|
24864
|
+
185,
|
|
24865
|
+
196,
|
|
24866
|
+
197,
|
|
24867
|
+
198,
|
|
24868
|
+
199,
|
|
24869
|
+
200,
|
|
24870
|
+
201,
|
|
24871
|
+
202,
|
|
24872
|
+
203,
|
|
24873
|
+
204,
|
|
24874
|
+
205,
|
|
24875
|
+
206,
|
|
24876
|
+
207,
|
|
24877
|
+
208,
|
|
24878
|
+
209,
|
|
24879
|
+
214,
|
|
24880
|
+
215,
|
|
24881
|
+
220,
|
|
24882
|
+
221
|
|
24883
|
+
];
|
|
24884
|
+
}
|
|
24885
|
+
} catch (error) {
|
|
24886
|
+
}
|
|
24887
|
+
exports2.inspectOpts = Object.keys(process.env).filter((key) => {
|
|
24540
24888
|
return /^debug_/i.test(key);
|
|
24541
|
-
}).reduce(
|
|
24542
|
-
|
|
24889
|
+
}).reduce((obj, key) => {
|
|
24890
|
+
const prop = key.substring(6).toLowerCase().replace(/_([a-z])/g, (_, k) => {
|
|
24543
24891
|
return k.toUpperCase();
|
|
24544
24892
|
});
|
|
24545
|
-
|
|
24546
|
-
if (/^(yes|on|true|enabled)$/i.test(val))
|
|
24893
|
+
let val = process.env[key];
|
|
24894
|
+
if (/^(yes|on|true|enabled)$/i.test(val)) {
|
|
24547
24895
|
val = true;
|
|
24548
|
-
else if (/^(no|off|false|disabled)$/i.test(val))
|
|
24896
|
+
} else if (/^(no|off|false|disabled)$/i.test(val)) {
|
|
24549
24897
|
val = false;
|
|
24550
|
-
else if (val === "null")
|
|
24898
|
+
} else if (val === "null") {
|
|
24551
24899
|
val = null;
|
|
24552
|
-
else
|
|
24900
|
+
} else {
|
|
24553
24901
|
val = Number(val);
|
|
24902
|
+
}
|
|
24554
24903
|
obj[prop] = val;
|
|
24555
24904
|
return obj;
|
|
24556
24905
|
}, {});
|
|
24557
|
-
var fd = parseInt(process.env.DEBUG_FD, 10) || 2;
|
|
24558
|
-
if (fd !== 1 && fd !== 2) {
|
|
24559
|
-
util2.deprecate(function() {
|
|
24560
|
-
}, "except for stderr(2) and stdout(1), any other usage of DEBUG_FD is deprecated. Override debug.log if you want to use a different log function (https://git.io/debug_fd)")();
|
|
24561
|
-
}
|
|
24562
|
-
var stream4 = fd === 1 ? process.stdout : fd === 2 ? process.stderr : createWritableStdioStream(fd);
|
|
24563
24906
|
function useColors() {
|
|
24564
|
-
return "colors" in exports2.inspectOpts ? Boolean(exports2.inspectOpts.colors) : tty.isatty(fd);
|
|
24907
|
+
return "colors" in exports2.inspectOpts ? Boolean(exports2.inspectOpts.colors) : tty.isatty(process.stderr.fd);
|
|
24565
24908
|
}
|
|
24566
|
-
exports2.formatters.o = function(v) {
|
|
24567
|
-
this.inspectOpts.colors = this.useColors;
|
|
24568
|
-
return util2.inspect(v, this.inspectOpts).split("\n").map(function(str) {
|
|
24569
|
-
return str.trim();
|
|
24570
|
-
}).join(" ");
|
|
24571
|
-
};
|
|
24572
|
-
exports2.formatters.O = function(v) {
|
|
24573
|
-
this.inspectOpts.colors = this.useColors;
|
|
24574
|
-
return util2.inspect(v, this.inspectOpts);
|
|
24575
|
-
};
|
|
24576
24909
|
function formatArgs(args2) {
|
|
24577
|
-
|
|
24578
|
-
var useColors2 = this.useColors;
|
|
24910
|
+
const { namespace: name, useColors: useColors2 } = this;
|
|
24579
24911
|
if (useColors2) {
|
|
24580
|
-
|
|
24581
|
-
|
|
24912
|
+
const c = this.color;
|
|
24913
|
+
const colorCode = "[3" + (c < 8 ? c : "8;5;" + c);
|
|
24914
|
+
const prefix = ` ${colorCode};1m${name} [0m`;
|
|
24582
24915
|
args2[0] = prefix + args2[0].split("\n").join("\n" + prefix);
|
|
24583
|
-
args2.push(
|
|
24916
|
+
args2.push(colorCode + "m+" + module2.exports.humanize(this.diff) + "[0m");
|
|
24584
24917
|
} else {
|
|
24585
|
-
args2[0] =
|
|
24918
|
+
args2[0] = getDate() + name + " " + args2[0];
|
|
24919
|
+
}
|
|
24920
|
+
}
|
|
24921
|
+
function getDate() {
|
|
24922
|
+
if (exports2.inspectOpts.hideDate) {
|
|
24923
|
+
return "";
|
|
24586
24924
|
}
|
|
24925
|
+
return new Date().toISOString() + " ";
|
|
24587
24926
|
}
|
|
24588
|
-
function log() {
|
|
24589
|
-
return
|
|
24927
|
+
function log(...args2) {
|
|
24928
|
+
return process.stderr.write(util2.format(...args2) + "\n");
|
|
24590
24929
|
}
|
|
24591
24930
|
function save(namespaces) {
|
|
24592
|
-
if (namespaces
|
|
24593
|
-
delete process.env.DEBUG;
|
|
24594
|
-
} else {
|
|
24931
|
+
if (namespaces) {
|
|
24595
24932
|
process.env.DEBUG = namespaces;
|
|
24933
|
+
} else {
|
|
24934
|
+
delete process.env.DEBUG;
|
|
24596
24935
|
}
|
|
24597
24936
|
}
|
|
24598
24937
|
function load() {
|
|
24599
24938
|
return process.env.DEBUG;
|
|
24600
24939
|
}
|
|
24601
|
-
function createWritableStdioStream(fd2) {
|
|
24602
|
-
var stream5;
|
|
24603
|
-
var tty_wrap = process.binding("tty_wrap");
|
|
24604
|
-
switch (tty_wrap.guessHandleType(fd2)) {
|
|
24605
|
-
case "TTY":
|
|
24606
|
-
stream5 = new tty.WriteStream(fd2);
|
|
24607
|
-
stream5._type = "tty";
|
|
24608
|
-
if (stream5._handle && stream5._handle.unref) {
|
|
24609
|
-
stream5._handle.unref();
|
|
24610
|
-
}
|
|
24611
|
-
break;
|
|
24612
|
-
case "FILE":
|
|
24613
|
-
var fs = require("fs");
|
|
24614
|
-
stream5 = new fs.SyncWriteStream(fd2, { autoClose: false });
|
|
24615
|
-
stream5._type = "fs";
|
|
24616
|
-
break;
|
|
24617
|
-
case "PIPE":
|
|
24618
|
-
case "TCP":
|
|
24619
|
-
var net = require("net");
|
|
24620
|
-
stream5 = new net.Socket({
|
|
24621
|
-
fd: fd2,
|
|
24622
|
-
readable: false,
|
|
24623
|
-
writable: true
|
|
24624
|
-
});
|
|
24625
|
-
stream5.readable = false;
|
|
24626
|
-
stream5.read = null;
|
|
24627
|
-
stream5._type = "pipe";
|
|
24628
|
-
if (stream5._handle && stream5._handle.unref) {
|
|
24629
|
-
stream5._handle.unref();
|
|
24630
|
-
}
|
|
24631
|
-
break;
|
|
24632
|
-
default:
|
|
24633
|
-
throw new Error("Implement me. Unknown stream file type!");
|
|
24634
|
-
}
|
|
24635
|
-
stream5.fd = fd2;
|
|
24636
|
-
stream5._isStdio = true;
|
|
24637
|
-
return stream5;
|
|
24638
|
-
}
|
|
24639
24940
|
function init(debug) {
|
|
24640
24941
|
debug.inspectOpts = {};
|
|
24641
|
-
|
|
24642
|
-
for (
|
|
24942
|
+
const keys = Object.keys(exports2.inspectOpts);
|
|
24943
|
+
for (let i = 0; i < keys.length; i++) {
|
|
24643
24944
|
debug.inspectOpts[keys[i]] = exports2.inspectOpts[keys[i]];
|
|
24644
24945
|
}
|
|
24645
24946
|
}
|
|
24646
|
-
|
|
24947
|
+
module2.exports = require_common2()(exports2);
|
|
24948
|
+
var { formatters } = module2.exports;
|
|
24949
|
+
formatters.o = function(v) {
|
|
24950
|
+
this.inspectOpts.colors = this.useColors;
|
|
24951
|
+
return util2.inspect(v, this.inspectOpts).split("\n").map((str) => str.trim()).join(" ");
|
|
24952
|
+
};
|
|
24953
|
+
formatters.O = function(v) {
|
|
24954
|
+
this.inspectOpts.colors = this.useColors;
|
|
24955
|
+
return util2.inspect(v, this.inspectOpts);
|
|
24956
|
+
};
|
|
24647
24957
|
}
|
|
24648
24958
|
});
|
|
24649
24959
|
|
|
24650
24960
|
// ../../../node_modules/debug/src/index.js
|
|
24651
24961
|
var require_src = __commonJS({
|
|
24652
24962
|
"../../../node_modules/debug/src/index.js"(exports2, module2) {
|
|
24653
|
-
if (typeof process
|
|
24963
|
+
if (typeof process === "undefined" || process.type === "renderer" || process.browser === true || process.__nwjs) {
|
|
24654
24964
|
module2.exports = require_browser();
|
|
24655
24965
|
} else {
|
|
24656
24966
|
module2.exports = require_node2();
|
|
@@ -24659,7 +24969,7 @@ var require_src = __commonJS({
|
|
|
24659
24969
|
});
|
|
24660
24970
|
|
|
24661
24971
|
// ../../../node_modules/follow-redirects/debug.js
|
|
24662
|
-
var
|
|
24972
|
+
var require_debug = __commonJS({
|
|
24663
24973
|
"../../../node_modules/follow-redirects/debug.js"(exports2, module2) {
|
|
24664
24974
|
var debug;
|
|
24665
24975
|
module2.exports = function() {
|
|
@@ -24687,7 +24997,7 @@ var require_follow_redirects = __commonJS({
|
|
|
24687
24997
|
var https2 = require("https");
|
|
24688
24998
|
var Writable2 = require("stream").Writable;
|
|
24689
24999
|
var assert = require("assert");
|
|
24690
|
-
var debug =
|
|
25000
|
+
var debug = require_debug();
|
|
24691
25001
|
var useNativeURL = false;
|
|
24692
25002
|
try {
|
|
24693
25003
|
assert(new URL2());
|
|
@@ -25138,9 +25448,9 @@ var require_follow_redirects = __commonJS({
|
|
|
25138
25448
|
}
|
|
25139
25449
|
});
|
|
25140
25450
|
|
|
25141
|
-
// node_modules/form-data/lib/populate.js
|
|
25451
|
+
// ../../../node_modules/form-data/lib/populate.js
|
|
25142
25452
|
var require_populate2 = __commonJS({
|
|
25143
|
-
"node_modules/form-data/lib/populate.js"(exports2, module2) {
|
|
25453
|
+
"../../../node_modules/form-data/lib/populate.js"(exports2, module2) {
|
|
25144
25454
|
module2.exports = function(dst, src) {
|
|
25145
25455
|
Object.keys(src).forEach(function(prop) {
|
|
25146
25456
|
dst[prop] = dst[prop] || src[prop];
|
|
@@ -25150,9 +25460,9 @@ var require_populate2 = __commonJS({
|
|
|
25150
25460
|
}
|
|
25151
25461
|
});
|
|
25152
25462
|
|
|
25153
|
-
// node_modules/form-data/lib/form_data.js
|
|
25463
|
+
// ../../../node_modules/form-data/lib/form_data.js
|
|
25154
25464
|
var require_form_data2 = __commonJS({
|
|
25155
|
-
"node_modules/form-data/lib/form_data.js"(exports2, module2) {
|
|
25465
|
+
"../../../node_modules/form-data/lib/form_data.js"(exports2, module2) {
|
|
25156
25466
|
var CombinedStream = require_combined_stream();
|
|
25157
25467
|
var util2 = require("util");
|
|
25158
25468
|
var path = require("path");
|
|
@@ -25683,6 +25993,7 @@ var bundlerNames = [
|
|
|
25683
25993
|
"webpack",
|
|
25684
25994
|
"webpack5",
|
|
25685
25995
|
"vite",
|
|
25996
|
+
"vite5",
|
|
25686
25997
|
"xbuild"
|
|
25687
25998
|
];
|
|
25688
25999
|
var declarationEntryExtensions = [".html", ".pug", ...entryModuleExtensions];
|
|
@@ -25698,14 +26009,14 @@ var forceOverwriteKeys = Object.keys(ForceOverwrite).filter((m) => typeof ForceO
|
|
|
25698
26009
|
var import_path4 = __toModule(require("path"));
|
|
25699
26010
|
var import_promises2 = __toModule(require("fs/promises"));
|
|
25700
26011
|
|
|
25701
|
-
// node_modules/ora/index.js
|
|
26012
|
+
// ../../../node_modules/ora/index.js
|
|
25702
26013
|
var import_node_process5 = __toModule(require("node:process"));
|
|
25703
26014
|
var import_chalk2 = __toModule(require_source());
|
|
25704
26015
|
|
|
25705
|
-
// node_modules/cli-cursor/index.js
|
|
26016
|
+
// ../../../node_modules/ora/node_modules/cli-cursor/index.js
|
|
25706
26017
|
var import_node_process2 = __toModule(require("node:process"));
|
|
25707
26018
|
|
|
25708
|
-
// node_modules/restore-cursor/index.js
|
|
26019
|
+
// ../../../node_modules/ora/node_modules/restore-cursor/index.js
|
|
25709
26020
|
var import_node_process = __toModule(require("node:process"));
|
|
25710
26021
|
var import_onetime = __toModule(require_onetime());
|
|
25711
26022
|
var import_signal_exit = __toModule(require_signal_exit());
|
|
@@ -25716,7 +26027,7 @@ var restoreCursor = (0, import_onetime.default)(() => {
|
|
|
25716
26027
|
});
|
|
25717
26028
|
var restore_cursor_default = restoreCursor;
|
|
25718
26029
|
|
|
25719
|
-
// node_modules/cli-cursor/index.js
|
|
26030
|
+
// ../../../node_modules/ora/node_modules/cli-cursor/index.js
|
|
25720
26031
|
var isHidden = false;
|
|
25721
26032
|
var cliCursor = {};
|
|
25722
26033
|
cliCursor.show = (writableStream = import_node_process2.default.stderr) => {
|
|
@@ -25746,13 +26057,13 @@ cliCursor.toggle = (force, writableStream) => {
|
|
|
25746
26057
|
};
|
|
25747
26058
|
var cli_cursor_default = cliCursor;
|
|
25748
26059
|
|
|
25749
|
-
// node_modules/ora/index.js
|
|
26060
|
+
// ../../../node_modules/ora/index.js
|
|
25750
26061
|
var import_cli_spinners = __toModule(require_cli_spinners());
|
|
25751
26062
|
|
|
25752
|
-
// node_modules/log-symbols/index.js
|
|
26063
|
+
// ../../../node_modules/ora/node_modules/log-symbols/index.js
|
|
25753
26064
|
var import_chalk = __toModule(require_source());
|
|
25754
26065
|
|
|
25755
|
-
// node_modules/is-unicode-supported/index.js
|
|
26066
|
+
// ../../../node_modules/ora/node_modules/is-unicode-supported/index.js
|
|
25756
26067
|
var import_node_process3 = __toModule(require("node:process"));
|
|
25757
26068
|
function isUnicodeSupported() {
|
|
25758
26069
|
if (import_node_process3.default.platform !== "win32") {
|
|
@@ -25761,7 +26072,7 @@ function isUnicodeSupported() {
|
|
|
25761
26072
|
return Boolean(import_node_process3.default.env.CI) || Boolean(import_node_process3.default.env.WT_SESSION) || Boolean(import_node_process3.default.env.TERMINUS_SUBLIME) || import_node_process3.default.env.ConEmuTask === "{cmd::Cmder}" || import_node_process3.default.env.TERM_PROGRAM === "Terminus-Sublime" || import_node_process3.default.env.TERM_PROGRAM === "vscode" || import_node_process3.default.env.TERM === "xterm-256color" || import_node_process3.default.env.TERM === "alacritty" || import_node_process3.default.env.TERMINAL_EMULATOR === "JetBrains-JediTerm";
|
|
25762
26073
|
}
|
|
25763
26074
|
|
|
25764
|
-
// node_modules/log-symbols/index.js
|
|
26075
|
+
// ../../../node_modules/ora/node_modules/log-symbols/index.js
|
|
25765
26076
|
var main = {
|
|
25766
26077
|
info: import_chalk.default.blue("\u2139"),
|
|
25767
26078
|
success: import_chalk.default.green("\u2714"),
|
|
@@ -25777,9 +26088,17 @@ var fallback = {
|
|
|
25777
26088
|
var logSymbols = isUnicodeSupported() ? main : fallback;
|
|
25778
26089
|
var log_symbols_default = logSymbols;
|
|
25779
26090
|
|
|
25780
|
-
// node_modules/
|
|
25781
|
-
|
|
25782
|
-
|
|
26091
|
+
// ../../../node_modules/ora/node_modules/ansi-regex/index.js
|
|
26092
|
+
function ansiRegex({ onlyFirst = false } = {}) {
|
|
26093
|
+
const pattern = [
|
|
26094
|
+
"[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)",
|
|
26095
|
+
"(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~]))"
|
|
26096
|
+
].join("|");
|
|
26097
|
+
return new RegExp(pattern, onlyFirst ? void 0 : "g");
|
|
26098
|
+
}
|
|
26099
|
+
|
|
26100
|
+
// ../../../node_modules/ora/node_modules/strip-ansi/index.js
|
|
26101
|
+
var regex = ansiRegex();
|
|
25783
26102
|
function stripAnsi(string2) {
|
|
25784
26103
|
if (typeof string2 !== "string") {
|
|
25785
26104
|
throw new TypeError(`Expected a \`string\`, got \`${typeof string2}\``);
|
|
@@ -25787,7 +26106,7 @@ function stripAnsi(string2) {
|
|
|
25787
26106
|
return string2.replace(regex, "");
|
|
25788
26107
|
}
|
|
25789
26108
|
|
|
25790
|
-
// node_modules/ora/index.js
|
|
26109
|
+
// ../../../node_modules/ora/index.js
|
|
25791
26110
|
var import_wcwidth = __toModule(require_wcwidth());
|
|
25792
26111
|
|
|
25793
26112
|
// ../../../node_modules/is-interactive/index.js
|
|
@@ -25866,7 +26185,7 @@ var StdinDiscarder = class {
|
|
|
25866
26185
|
var stdinDiscarder = new StdinDiscarder();
|
|
25867
26186
|
var stdin_discarder_default = stdinDiscarder;
|
|
25868
26187
|
|
|
25869
|
-
// node_modules/ora/index.js
|
|
26188
|
+
// ../../../node_modules/ora/index.js
|
|
25870
26189
|
var import_cli_spinners2 = __toModule(require_cli_spinners());
|
|
25871
26190
|
var Ora = class {
|
|
25872
26191
|
#linesToClear = 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "publish-microfrontend",
|
|
3
|
-
"version": "1.6.1-beta.
|
|
3
|
+
"version": "1.6.1-beta.7294",
|
|
4
4
|
"description": "A CLI for publishing micro frontends to a feed service.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"modules",
|
|
@@ -69,5 +69,5 @@
|
|
|
69
69
|
"typescript": "^5.0.0",
|
|
70
70
|
"yargs": "^15.0.0"
|
|
71
71
|
},
|
|
72
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "e4ec29aa4e165b7aa5792325829240af2c70ec67"
|
|
73
73
|
}
|