@modern-js/storybook-next-generator 3.7.22 → 3.7.23

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.
Files changed (2) hide show
  1. package/dist/index.js +747 -102
  2. package/package.json +11 -12
package/dist/index.js CHANGED
@@ -75079,6 +75079,651 @@ var require_lodash7 = __commonJS({
75079
75079
  }
75080
75080
  });
75081
75081
 
75082
+ // ../../../../node_modules/.pnpm/debug@4.4.0_supports-color@5.5.0/node_modules/debug/src/common.js
75083
+ var require_common3 = __commonJS({
75084
+ "../../../../node_modules/.pnpm/debug@4.4.0_supports-color@5.5.0/node_modules/debug/src/common.js"(exports, module2) {
75085
+ "use strict";
75086
+ function setup(env) {
75087
+ createDebug.debug = createDebug;
75088
+ createDebug.default = createDebug;
75089
+ createDebug.coerce = coerce;
75090
+ createDebug.disable = disable;
75091
+ createDebug.enable = enable;
75092
+ createDebug.enabled = enabled;
75093
+ createDebug.humanize = require_ms();
75094
+ createDebug.destroy = destroy;
75095
+ Object.keys(env).forEach((key) => {
75096
+ createDebug[key] = env[key];
75097
+ });
75098
+ createDebug.names = [];
75099
+ createDebug.skips = [];
75100
+ createDebug.formatters = {};
75101
+ function selectColor(namespace) {
75102
+ let hash = 0;
75103
+ for (let i = 0; i < namespace.length; i++) {
75104
+ hash = (hash << 5) - hash + namespace.charCodeAt(i);
75105
+ hash |= 0;
75106
+ }
75107
+ return createDebug.colors[Math.abs(hash) % createDebug.colors.length];
75108
+ }
75109
+ createDebug.selectColor = selectColor;
75110
+ function createDebug(namespace) {
75111
+ let prevTime;
75112
+ let enableOverride = null;
75113
+ let namespacesCache;
75114
+ let enabledCache;
75115
+ function debug(...args) {
75116
+ if (!debug.enabled) {
75117
+ return;
75118
+ }
75119
+ const self3 = debug;
75120
+ const curr = Number(/* @__PURE__ */ new Date());
75121
+ const ms = curr - (prevTime || curr);
75122
+ self3.diff = ms;
75123
+ self3.prev = prevTime;
75124
+ self3.curr = curr;
75125
+ prevTime = curr;
75126
+ args[0] = createDebug.coerce(args[0]);
75127
+ if (typeof args[0] !== "string") {
75128
+ args.unshift("%O");
75129
+ }
75130
+ let index = 0;
75131
+ args[0] = args[0].replace(/%([a-zA-Z%])/g, (match, format) => {
75132
+ if (match === "%%") {
75133
+ return "%";
75134
+ }
75135
+ index++;
75136
+ const formatter = createDebug.formatters[format];
75137
+ if (typeof formatter === "function") {
75138
+ const val = args[index];
75139
+ match = formatter.call(self3, val);
75140
+ args.splice(index, 1);
75141
+ index--;
75142
+ }
75143
+ return match;
75144
+ });
75145
+ createDebug.formatArgs.call(self3, args);
75146
+ const logFn = self3.log || createDebug.log;
75147
+ logFn.apply(self3, args);
75148
+ }
75149
+ debug.namespace = namespace;
75150
+ debug.useColors = createDebug.useColors();
75151
+ debug.color = createDebug.selectColor(namespace);
75152
+ debug.extend = extend2;
75153
+ debug.destroy = createDebug.destroy;
75154
+ Object.defineProperty(debug, "enabled", {
75155
+ enumerable: true,
75156
+ configurable: false,
75157
+ get: () => {
75158
+ if (enableOverride !== null) {
75159
+ return enableOverride;
75160
+ }
75161
+ if (namespacesCache !== createDebug.namespaces) {
75162
+ namespacesCache = createDebug.namespaces;
75163
+ enabledCache = createDebug.enabled(namespace);
75164
+ }
75165
+ return enabledCache;
75166
+ },
75167
+ set: (v) => {
75168
+ enableOverride = v;
75169
+ }
75170
+ });
75171
+ if (typeof createDebug.init === "function") {
75172
+ createDebug.init(debug);
75173
+ }
75174
+ return debug;
75175
+ }
75176
+ function extend2(namespace, delimiter) {
75177
+ const newDebug = createDebug(this.namespace + (typeof delimiter === "undefined" ? ":" : delimiter) + namespace);
75178
+ newDebug.log = this.log;
75179
+ return newDebug;
75180
+ }
75181
+ function enable(namespaces) {
75182
+ createDebug.save(namespaces);
75183
+ createDebug.namespaces = namespaces;
75184
+ createDebug.names = [];
75185
+ createDebug.skips = [];
75186
+ const split = (typeof namespaces === "string" ? namespaces : "").trim().replace(" ", ",").split(",").filter(Boolean);
75187
+ for (const ns of split) {
75188
+ if (ns[0] === "-") {
75189
+ createDebug.skips.push(ns.slice(1));
75190
+ } else {
75191
+ createDebug.names.push(ns);
75192
+ }
75193
+ }
75194
+ }
75195
+ function matchesTemplate(search, template) {
75196
+ let searchIndex = 0;
75197
+ let templateIndex = 0;
75198
+ let starIndex = -1;
75199
+ let matchIndex = 0;
75200
+ while (searchIndex < search.length) {
75201
+ if (templateIndex < template.length && (template[templateIndex] === search[searchIndex] || template[templateIndex] === "*")) {
75202
+ if (template[templateIndex] === "*") {
75203
+ starIndex = templateIndex;
75204
+ matchIndex = searchIndex;
75205
+ templateIndex++;
75206
+ } else {
75207
+ searchIndex++;
75208
+ templateIndex++;
75209
+ }
75210
+ } else if (starIndex !== -1) {
75211
+ templateIndex = starIndex + 1;
75212
+ matchIndex++;
75213
+ searchIndex = matchIndex;
75214
+ } else {
75215
+ return false;
75216
+ }
75217
+ }
75218
+ while (templateIndex < template.length && template[templateIndex] === "*") {
75219
+ templateIndex++;
75220
+ }
75221
+ return templateIndex === template.length;
75222
+ }
75223
+ function disable() {
75224
+ const namespaces = [
75225
+ ...createDebug.names,
75226
+ ...createDebug.skips.map((namespace) => "-" + namespace)
75227
+ ].join(",");
75228
+ createDebug.enable("");
75229
+ return namespaces;
75230
+ }
75231
+ function enabled(name) {
75232
+ for (const skip of createDebug.skips) {
75233
+ if (matchesTemplate(name, skip)) {
75234
+ return false;
75235
+ }
75236
+ }
75237
+ for (const ns of createDebug.names) {
75238
+ if (matchesTemplate(name, ns)) {
75239
+ return true;
75240
+ }
75241
+ }
75242
+ return false;
75243
+ }
75244
+ function coerce(val) {
75245
+ if (val instanceof Error) {
75246
+ return val.stack || val.message;
75247
+ }
75248
+ return val;
75249
+ }
75250
+ function destroy() {
75251
+ console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
75252
+ }
75253
+ createDebug.enable(createDebug.load());
75254
+ return createDebug;
75255
+ }
75256
+ module2.exports = setup;
75257
+ }
75258
+ });
75259
+
75260
+ // ../../../../node_modules/.pnpm/debug@4.4.0_supports-color@5.5.0/node_modules/debug/src/browser.js
75261
+ var require_browser2 = __commonJS({
75262
+ "../../../../node_modules/.pnpm/debug@4.4.0_supports-color@5.5.0/node_modules/debug/src/browser.js"(exports, module2) {
75263
+ "use strict";
75264
+ exports.formatArgs = formatArgs;
75265
+ exports.save = save;
75266
+ exports.load = load;
75267
+ exports.useColors = useColors;
75268
+ exports.storage = localstorage();
75269
+ exports.destroy = (() => {
75270
+ let warned = false;
75271
+ return () => {
75272
+ if (!warned) {
75273
+ warned = true;
75274
+ console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
75275
+ }
75276
+ };
75277
+ })();
75278
+ exports.colors = [
75279
+ "#0000CC",
75280
+ "#0000FF",
75281
+ "#0033CC",
75282
+ "#0033FF",
75283
+ "#0066CC",
75284
+ "#0066FF",
75285
+ "#0099CC",
75286
+ "#0099FF",
75287
+ "#00CC00",
75288
+ "#00CC33",
75289
+ "#00CC66",
75290
+ "#00CC99",
75291
+ "#00CCCC",
75292
+ "#00CCFF",
75293
+ "#3300CC",
75294
+ "#3300FF",
75295
+ "#3333CC",
75296
+ "#3333FF",
75297
+ "#3366CC",
75298
+ "#3366FF",
75299
+ "#3399CC",
75300
+ "#3399FF",
75301
+ "#33CC00",
75302
+ "#33CC33",
75303
+ "#33CC66",
75304
+ "#33CC99",
75305
+ "#33CCCC",
75306
+ "#33CCFF",
75307
+ "#6600CC",
75308
+ "#6600FF",
75309
+ "#6633CC",
75310
+ "#6633FF",
75311
+ "#66CC00",
75312
+ "#66CC33",
75313
+ "#9900CC",
75314
+ "#9900FF",
75315
+ "#9933CC",
75316
+ "#9933FF",
75317
+ "#99CC00",
75318
+ "#99CC33",
75319
+ "#CC0000",
75320
+ "#CC0033",
75321
+ "#CC0066",
75322
+ "#CC0099",
75323
+ "#CC00CC",
75324
+ "#CC00FF",
75325
+ "#CC3300",
75326
+ "#CC3333",
75327
+ "#CC3366",
75328
+ "#CC3399",
75329
+ "#CC33CC",
75330
+ "#CC33FF",
75331
+ "#CC6600",
75332
+ "#CC6633",
75333
+ "#CC9900",
75334
+ "#CC9933",
75335
+ "#CCCC00",
75336
+ "#CCCC33",
75337
+ "#FF0000",
75338
+ "#FF0033",
75339
+ "#FF0066",
75340
+ "#FF0099",
75341
+ "#FF00CC",
75342
+ "#FF00FF",
75343
+ "#FF3300",
75344
+ "#FF3333",
75345
+ "#FF3366",
75346
+ "#FF3399",
75347
+ "#FF33CC",
75348
+ "#FF33FF",
75349
+ "#FF6600",
75350
+ "#FF6633",
75351
+ "#FF9900",
75352
+ "#FF9933",
75353
+ "#FFCC00",
75354
+ "#FFCC33"
75355
+ ];
75356
+ function useColors() {
75357
+ if (typeof window !== "undefined" && window.process && (window.process.type === "renderer" || window.process.__nwjs)) {
75358
+ return true;
75359
+ }
75360
+ if (typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/)) {
75361
+ return false;
75362
+ }
75363
+ let m;
75364
+ return typeof document !== "undefined" && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance || // Is firebug? http://stackoverflow.com/a/398120/376773
75365
+ typeof window !== "undefined" && window.console && (window.console.firebug || window.console.exception && window.console.table) || // Is firefox >= v31?
75366
+ // https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages
75367
+ typeof navigator !== "undefined" && navigator.userAgent && (m = navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)) && parseInt(m[1], 10) >= 31 || // Double check webkit in userAgent just in case we are in a worker
75368
+ typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/);
75369
+ }
75370
+ function formatArgs(args) {
75371
+ args[0] = (this.useColors ? "%c" : "") + this.namespace + (this.useColors ? " %c" : " ") + args[0] + (this.useColors ? "%c " : " ") + "+" + module2.exports.humanize(this.diff);
75372
+ if (!this.useColors) {
75373
+ return;
75374
+ }
75375
+ const c = "color: " + this.color;
75376
+ args.splice(1, 0, c, "color: inherit");
75377
+ let index = 0;
75378
+ let lastC = 0;
75379
+ args[0].replace(/%[a-zA-Z%]/g, (match) => {
75380
+ if (match === "%%") {
75381
+ return;
75382
+ }
75383
+ index++;
75384
+ if (match === "%c") {
75385
+ lastC = index;
75386
+ }
75387
+ });
75388
+ args.splice(lastC, 0, c);
75389
+ }
75390
+ exports.log = console.debug || console.log || (() => {
75391
+ });
75392
+ function save(namespaces) {
75393
+ try {
75394
+ if (namespaces) {
75395
+ exports.storage.setItem("debug", namespaces);
75396
+ } else {
75397
+ exports.storage.removeItem("debug");
75398
+ }
75399
+ } catch (error) {
75400
+ }
75401
+ }
75402
+ function load() {
75403
+ let r;
75404
+ try {
75405
+ r = exports.storage.getItem("debug");
75406
+ } catch (error) {
75407
+ }
75408
+ if (!r && typeof process !== "undefined" && "env" in process) {
75409
+ r = process.env.DEBUG;
75410
+ }
75411
+ return r;
75412
+ }
75413
+ function localstorage() {
75414
+ try {
75415
+ return localStorage;
75416
+ } catch (error) {
75417
+ }
75418
+ }
75419
+ module2.exports = require_common3()(exports);
75420
+ var { formatters } = module2.exports;
75421
+ formatters.j = function(v) {
75422
+ try {
75423
+ return JSON.stringify(v);
75424
+ } catch (error) {
75425
+ return "[UnexpectedJSONParseError]: " + error.message;
75426
+ }
75427
+ };
75428
+ }
75429
+ });
75430
+
75431
+ // ../../../../node_modules/.pnpm/has-flag@3.0.0/node_modules/has-flag/index.js
75432
+ var require_has_flag2 = __commonJS({
75433
+ "../../../../node_modules/.pnpm/has-flag@3.0.0/node_modules/has-flag/index.js"(exports, module2) {
75434
+ "use strict";
75435
+ module2.exports = (flag, argv) => {
75436
+ argv = argv || process.argv;
75437
+ const prefix = flag.startsWith("-") ? "" : flag.length === 1 ? "-" : "--";
75438
+ const pos = argv.indexOf(prefix + flag);
75439
+ const terminatorPos = argv.indexOf("--");
75440
+ return pos !== -1 && (terminatorPos === -1 ? true : pos < terminatorPos);
75441
+ };
75442
+ }
75443
+ });
75444
+
75445
+ // ../../../../node_modules/.pnpm/supports-color@5.5.0/node_modules/supports-color/index.js
75446
+ var require_supports_color2 = __commonJS({
75447
+ "../../../../node_modules/.pnpm/supports-color@5.5.0/node_modules/supports-color/index.js"(exports, module2) {
75448
+ "use strict";
75449
+ var os2 = require("os");
75450
+ var hasFlag = require_has_flag2();
75451
+ var env = process.env;
75452
+ var forceColor;
75453
+ if (hasFlag("no-color") || hasFlag("no-colors") || hasFlag("color=false")) {
75454
+ forceColor = false;
75455
+ } else if (hasFlag("color") || hasFlag("colors") || hasFlag("color=true") || hasFlag("color=always")) {
75456
+ forceColor = true;
75457
+ }
75458
+ if ("FORCE_COLOR" in env) {
75459
+ forceColor = env.FORCE_COLOR.length === 0 || parseInt(env.FORCE_COLOR, 10) !== 0;
75460
+ }
75461
+ function translateLevel(level) {
75462
+ if (level === 0) {
75463
+ return false;
75464
+ }
75465
+ return {
75466
+ level,
75467
+ hasBasic: true,
75468
+ has256: level >= 2,
75469
+ has16m: level >= 3
75470
+ };
75471
+ }
75472
+ function supportsColor(stream4) {
75473
+ if (forceColor === false) {
75474
+ return 0;
75475
+ }
75476
+ if (hasFlag("color=16m") || hasFlag("color=full") || hasFlag("color=truecolor")) {
75477
+ return 3;
75478
+ }
75479
+ if (hasFlag("color=256")) {
75480
+ return 2;
75481
+ }
75482
+ if (stream4 && !stream4.isTTY && forceColor !== true) {
75483
+ return 0;
75484
+ }
75485
+ const min = forceColor ? 1 : 0;
75486
+ if (process.platform === "win32") {
75487
+ const osRelease = os2.release().split(".");
75488
+ if (Number(process.versions.node.split(".")[0]) >= 8 && Number(osRelease[0]) >= 10 && Number(osRelease[2]) >= 10586) {
75489
+ return Number(osRelease[2]) >= 14931 ? 3 : 2;
75490
+ }
75491
+ return 1;
75492
+ }
75493
+ if ("CI" in env) {
75494
+ if (["TRAVIS", "CIRCLECI", "APPVEYOR", "GITLAB_CI"].some((sign) => sign in env) || env.CI_NAME === "codeship") {
75495
+ return 1;
75496
+ }
75497
+ return min;
75498
+ }
75499
+ if ("TEAMCITY_VERSION" in env) {
75500
+ return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;
75501
+ }
75502
+ if (env.COLORTERM === "truecolor") {
75503
+ return 3;
75504
+ }
75505
+ if ("TERM_PROGRAM" in env) {
75506
+ const version = parseInt((env.TERM_PROGRAM_VERSION || "").split(".")[0], 10);
75507
+ switch (env.TERM_PROGRAM) {
75508
+ case "iTerm.app":
75509
+ return version >= 3 ? 3 : 2;
75510
+ case "Apple_Terminal":
75511
+ return 2;
75512
+ }
75513
+ }
75514
+ if (/-256(color)?$/i.test(env.TERM)) {
75515
+ return 2;
75516
+ }
75517
+ if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) {
75518
+ return 1;
75519
+ }
75520
+ if ("COLORTERM" in env) {
75521
+ return 1;
75522
+ }
75523
+ if (env.TERM === "dumb") {
75524
+ return min;
75525
+ }
75526
+ return min;
75527
+ }
75528
+ function getSupportLevel(stream4) {
75529
+ const level = supportsColor(stream4);
75530
+ return translateLevel(level);
75531
+ }
75532
+ module2.exports = {
75533
+ supportsColor: getSupportLevel,
75534
+ stdout: getSupportLevel(process.stdout),
75535
+ stderr: getSupportLevel(process.stderr)
75536
+ };
75537
+ }
75538
+ });
75539
+
75540
+ // ../../../../node_modules/.pnpm/debug@4.4.0_supports-color@5.5.0/node_modules/debug/src/node.js
75541
+ var require_node3 = __commonJS({
75542
+ "../../../../node_modules/.pnpm/debug@4.4.0_supports-color@5.5.0/node_modules/debug/src/node.js"(exports, module2) {
75543
+ "use strict";
75544
+ var tty = require("tty");
75545
+ var util3 = require("util");
75546
+ exports.init = init;
75547
+ exports.log = log;
75548
+ exports.formatArgs = formatArgs;
75549
+ exports.save = save;
75550
+ exports.load = load;
75551
+ exports.useColors = useColors;
75552
+ exports.destroy = util3.deprecate(
75553
+ () => {
75554
+ },
75555
+ "Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."
75556
+ );
75557
+ exports.colors = [6, 2, 3, 4, 5, 1];
75558
+ try {
75559
+ const supportsColor = require_supports_color2();
75560
+ if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
75561
+ exports.colors = [
75562
+ 20,
75563
+ 21,
75564
+ 26,
75565
+ 27,
75566
+ 32,
75567
+ 33,
75568
+ 38,
75569
+ 39,
75570
+ 40,
75571
+ 41,
75572
+ 42,
75573
+ 43,
75574
+ 44,
75575
+ 45,
75576
+ 56,
75577
+ 57,
75578
+ 62,
75579
+ 63,
75580
+ 68,
75581
+ 69,
75582
+ 74,
75583
+ 75,
75584
+ 76,
75585
+ 77,
75586
+ 78,
75587
+ 79,
75588
+ 80,
75589
+ 81,
75590
+ 92,
75591
+ 93,
75592
+ 98,
75593
+ 99,
75594
+ 112,
75595
+ 113,
75596
+ 128,
75597
+ 129,
75598
+ 134,
75599
+ 135,
75600
+ 148,
75601
+ 149,
75602
+ 160,
75603
+ 161,
75604
+ 162,
75605
+ 163,
75606
+ 164,
75607
+ 165,
75608
+ 166,
75609
+ 167,
75610
+ 168,
75611
+ 169,
75612
+ 170,
75613
+ 171,
75614
+ 172,
75615
+ 173,
75616
+ 178,
75617
+ 179,
75618
+ 184,
75619
+ 185,
75620
+ 196,
75621
+ 197,
75622
+ 198,
75623
+ 199,
75624
+ 200,
75625
+ 201,
75626
+ 202,
75627
+ 203,
75628
+ 204,
75629
+ 205,
75630
+ 206,
75631
+ 207,
75632
+ 208,
75633
+ 209,
75634
+ 214,
75635
+ 215,
75636
+ 220,
75637
+ 221
75638
+ ];
75639
+ }
75640
+ } catch (error) {
75641
+ }
75642
+ exports.inspectOpts = Object.keys(process.env).filter((key) => {
75643
+ return /^debug_/i.test(key);
75644
+ }).reduce((obj, key) => {
75645
+ const prop = key.substring(6).toLowerCase().replace(/_([a-z])/g, (_, k) => {
75646
+ return k.toUpperCase();
75647
+ });
75648
+ let val = process.env[key];
75649
+ if (/^(yes|on|true|enabled)$/i.test(val)) {
75650
+ val = true;
75651
+ } else if (/^(no|off|false|disabled)$/i.test(val)) {
75652
+ val = false;
75653
+ } else if (val === "null") {
75654
+ val = null;
75655
+ } else {
75656
+ val = Number(val);
75657
+ }
75658
+ obj[prop] = val;
75659
+ return obj;
75660
+ }, {});
75661
+ function useColors() {
75662
+ return "colors" in exports.inspectOpts ? Boolean(exports.inspectOpts.colors) : tty.isatty(process.stderr.fd);
75663
+ }
75664
+ function formatArgs(args) {
75665
+ const { namespace: name, useColors: useColors2 } = this;
75666
+ if (useColors2) {
75667
+ const c = this.color;
75668
+ const colorCode = "\x1B[3" + (c < 8 ? c : "8;5;" + c);
75669
+ const prefix = ` ${colorCode};1m${name} \x1B[0m`;
75670
+ args[0] = prefix + args[0].split("\n").join("\n" + prefix);
75671
+ args.push(colorCode + "m+" + module2.exports.humanize(this.diff) + "\x1B[0m");
75672
+ } else {
75673
+ args[0] = getDate() + name + " " + args[0];
75674
+ }
75675
+ }
75676
+ function getDate() {
75677
+ if (exports.inspectOpts.hideDate) {
75678
+ return "";
75679
+ }
75680
+ return (/* @__PURE__ */ new Date()).toISOString() + " ";
75681
+ }
75682
+ function log(...args) {
75683
+ return process.stderr.write(util3.formatWithOptions(exports.inspectOpts, ...args) + "\n");
75684
+ }
75685
+ function save(namespaces) {
75686
+ if (namespaces) {
75687
+ process.env.DEBUG = namespaces;
75688
+ } else {
75689
+ delete process.env.DEBUG;
75690
+ }
75691
+ }
75692
+ function load() {
75693
+ return process.env.DEBUG;
75694
+ }
75695
+ function init(debug) {
75696
+ debug.inspectOpts = {};
75697
+ const keys = Object.keys(exports.inspectOpts);
75698
+ for (let i = 0; i < keys.length; i++) {
75699
+ debug.inspectOpts[keys[i]] = exports.inspectOpts[keys[i]];
75700
+ }
75701
+ }
75702
+ module2.exports = require_common3()(exports);
75703
+ var { formatters } = module2.exports;
75704
+ formatters.o = function(v) {
75705
+ this.inspectOpts.colors = this.useColors;
75706
+ return util3.inspect(v, this.inspectOpts).split("\n").map((str) => str.trim()).join(" ");
75707
+ };
75708
+ formatters.O = function(v) {
75709
+ this.inspectOpts.colors = this.useColors;
75710
+ return util3.inspect(v, this.inspectOpts);
75711
+ };
75712
+ }
75713
+ });
75714
+
75715
+ // ../../../../node_modules/.pnpm/debug@4.4.0_supports-color@5.5.0/node_modules/debug/src/index.js
75716
+ var require_src4 = __commonJS({
75717
+ "../../../../node_modules/.pnpm/debug@4.4.0_supports-color@5.5.0/node_modules/debug/src/index.js"(exports, module2) {
75718
+ "use strict";
75719
+ if (typeof process === "undefined" || process.type === "renderer" || process.browser === true || process.__nwjs) {
75720
+ module2.exports = require_browser2();
75721
+ } else {
75722
+ module2.exports = require_node3();
75723
+ }
75724
+ }
75725
+ });
75726
+
75082
75727
  // ../../../../node_modules/.pnpm/declaration-update@0.0.2/node_modules/declaration-update/dist/utils/get-type.js
75083
75728
  var require_get_type = __commonJS({
75084
75729
  "../../../../node_modules/.pnpm/declaration-update@0.0.2/node_modules/declaration-update/dist/utils/get-type.js"(exports) {
@@ -75231,7 +75876,7 @@ var require_filter3 = __commonJS({
75231
75876
  return r;
75232
75877
  };
75233
75878
  Object.defineProperty(exports, "__esModule", { value: true });
75234
- var debug_1 = require_src();
75879
+ var debug_1 = require_src4();
75235
75880
  var mongo_eql_1 = require_mongo_eql();
75236
75881
  var ops = require_ops();
75237
75882
  var get_type_1 = require_get_type();
@@ -75391,7 +76036,7 @@ var require_mods = __commonJS({
75391
76036
  return r;
75392
76037
  };
75393
76038
  Object.defineProperty(exports, "__esModule", { value: true });
75394
- var debug_1 = require_src();
76039
+ var debug_1 = require_src4();
75395
76040
  var mongoDot = require_mongo_dot();
75396
76041
  var mongo_eql_1 = require_mongo_eql();
75397
76042
  var get_type_1 = require_get_type();
@@ -75852,7 +76497,7 @@ var require_query = __commonJS({
75852
76497
  "../../../../node_modules/.pnpm/declaration-update@0.0.2/node_modules/declaration-update/dist/query.js"(exports) {
75853
76498
  "use strict";
75854
76499
  Object.defineProperty(exports, "__esModule", { value: true });
75855
- var debug_1 = require_src();
76500
+ var debug_1 = require_src4();
75856
76501
  var filter_1 = require_filter3();
75857
76502
  var mods = require_mods();
75858
76503
  var mongoDot = require_mongo_dot();
@@ -75950,13 +76595,13 @@ __export(src_exports, {
75950
76595
  module.exports = __toCommonJS(src_exports);
75951
76596
  var import_path8 = __toESM(require("path"));
75952
76597
 
75953
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/fs-extra.js
76598
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.7/node_modules/@modern-js/codesmith-utils/dist/esm/fs-extra.js
75954
76599
  var import_fs_extra = __toESM(require_lib());
75955
76600
 
75956
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/materials/FsResource.js
76601
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/materials/FsResource.js
75957
76602
  var FS_RESOURCE = "_codesmith_core_fs_resource";
75958
76603
 
75959
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/utils/fsExists.js
76604
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/utils/fsExists.js
75960
76605
  function fsExists(path8) {
75961
76606
  return __async(this, null, function* () {
75962
76607
  try {
@@ -75968,10 +76613,10 @@ function fsExists(path8) {
75968
76613
  });
75969
76614
  }
75970
76615
 
75971
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/execa.js
76616
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.7/node_modules/@modern-js/codesmith-utils/dist/esm/execa.js
75972
76617
  var import_execa = __toESM(require_execa());
75973
76618
 
75974
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/utils/timeoutPromise.js
76619
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/utils/timeoutPromise.js
75975
76620
  function timeoutPromise(promise, ms, reason = "Operation") {
75976
76621
  return __async(this, null, function* () {
75977
76622
  let timeoutId = null;
@@ -75995,21 +76640,21 @@ function timeoutPromise(promise, ms, reason = "Operation") {
75995
76640
  });
75996
76641
  }
75997
76642
 
75998
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/constants.js
76643
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/constants.js
75999
76644
  var NPM_API_TIMEOUT = 3e4;
76000
76645
  var CATCHE_VALIDITY_PREIOD = 7 * 24 * 3600 * 1e3;
76001
76646
 
76002
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/semver.js
76647
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.7/node_modules/@modern-js/codesmith-utils/dist/esm/semver.js
76003
76648
  var import_semver = __toESM(require_semver2());
76004
76649
 
76005
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/bind.js
76650
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/bind.js
76006
76651
  function bind(fn, thisArg) {
76007
76652
  return function wrap() {
76008
76653
  return fn.apply(thisArg, arguments);
76009
76654
  };
76010
76655
  }
76011
76656
 
76012
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/utils.js
76657
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/utils.js
76013
76658
  var { toString } = Object.prototype;
76014
76659
  var { getPrototypeOf } = Object;
76015
76660
  var kindOf = ((cache) => (thing) => {
@@ -76377,7 +77022,7 @@ var utils_default = {
76377
77022
  asap
76378
77023
  };
76379
77024
 
76380
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/AxiosError.js
77025
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/AxiosError.js
76381
77026
  function AxiosError(message, code, config, request, response) {
76382
77027
  Error.call(this);
76383
77028
  if (Error.captureStackTrace) {
@@ -76452,11 +77097,11 @@ AxiosError.from = (error, code, config, request, response, customProps) => {
76452
77097
  };
76453
77098
  var AxiosError_default = AxiosError;
76454
77099
 
76455
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/platform/node/classes/FormData.js
77100
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/platform/node/classes/FormData.js
76456
77101
  var import_form_data = __toESM(require_form_data());
76457
77102
  var FormData_default = import_form_data.default;
76458
77103
 
76459
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/toFormData.js
77104
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/toFormData.js
76460
77105
  function isVisitable(thing) {
76461
77106
  return utils_default.isPlainObject(thing) || utils_default.isArray(thing);
76462
77107
  }
@@ -76571,7 +77216,7 @@ function toFormData(obj, formData, options) {
76571
77216
  }
76572
77217
  var toFormData_default = toFormData;
76573
77218
 
76574
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/AxiosURLSearchParams.js
77219
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/AxiosURLSearchParams.js
76575
77220
  function encode(str) {
76576
77221
  const charMap = {
76577
77222
  "!": "%21",
@@ -76604,7 +77249,7 @@ prototype2.toString = function toString2(encoder) {
76604
77249
  };
76605
77250
  var AxiosURLSearchParams_default = AxiosURLSearchParams;
76606
77251
 
76607
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/buildURL.js
77252
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/buildURL.js
76608
77253
  function encode2(val) {
76609
77254
  return encodeURIComponent(val).replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+").replace(/%5B/gi, "[").replace(/%5D/gi, "]");
76610
77255
  }
@@ -76635,7 +77280,7 @@ function buildURL(url2, params, options) {
76635
77280
  return url2;
76636
77281
  }
76637
77282
 
76638
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/InterceptorManager.js
77283
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/InterceptorManager.js
76639
77284
  var InterceptorManager = class {
76640
77285
  constructor() {
76641
77286
  this.handlers = [];
@@ -76699,21 +77344,21 @@ var InterceptorManager = class {
76699
77344
  };
76700
77345
  var InterceptorManager_default = InterceptorManager;
76701
77346
 
76702
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/defaults/transitional.js
77347
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/defaults/transitional.js
76703
77348
  var transitional_default = {
76704
77349
  silentJSONParsing: true,
76705
77350
  forcedJSONParsing: true,
76706
77351
  clarifyTimeoutError: false
76707
77352
  };
76708
77353
 
76709
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/platform/node/index.js
77354
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/platform/node/index.js
76710
77355
  var import_crypto = __toESM(require("crypto"));
76711
77356
 
76712
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/platform/node/classes/URLSearchParams.js
77357
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/platform/node/classes/URLSearchParams.js
76713
77358
  var import_url = __toESM(require("url"));
76714
77359
  var URLSearchParams_default = import_url.default.URLSearchParams;
76715
77360
 
76716
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/platform/node/index.js
77361
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/platform/node/index.js
76717
77362
  var ALPHA = "abcdefghijklmnopqrstuvwxyz";
76718
77363
  var DIGIT = "0123456789";
76719
77364
  var ALPHABET = {
@@ -76743,7 +77388,7 @@ var node_default = {
76743
77388
  protocols: ["http", "https", "file", "data"]
76744
77389
  };
76745
77390
 
76746
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/platform/common/utils.js
77391
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/platform/common/utils.js
76747
77392
  var utils_exports = {};
76748
77393
  __export(utils_exports, {
76749
77394
  hasBrowserEnv: () => hasBrowserEnv,
@@ -76761,10 +77406,10 @@ var hasStandardBrowserWebWorkerEnv = (() => {
76761
77406
  })();
76762
77407
  var origin = hasBrowserEnv && window.location.href || "http://localhost";
76763
77408
 
76764
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/platform/index.js
77409
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/platform/index.js
76765
77410
  var platform_default = __spreadValues(__spreadValues({}, utils_exports), node_default);
76766
77411
 
76767
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/toURLEncodedForm.js
77412
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/toURLEncodedForm.js
76768
77413
  function toURLEncodedForm(data, options) {
76769
77414
  return toFormData_default(data, new platform_default.classes.URLSearchParams(), Object.assign({
76770
77415
  visitor: function(value, key, path8, helpers) {
@@ -76777,7 +77422,7 @@ function toURLEncodedForm(data, options) {
76777
77422
  }, options));
76778
77423
  }
76779
77424
 
76780
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/formDataToJSON.js
77425
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/formDataToJSON.js
76781
77426
  function parsePropPath(name) {
76782
77427
  return utils_default.matchAll(/\w+|\[(\w*)]/g, name).map((match) => {
76783
77428
  return match[0] === "[]" ? "" : match[1] || match[0];
@@ -76831,7 +77476,7 @@ function formDataToJSON(formData) {
76831
77476
  }
76832
77477
  var formDataToJSON_default = formDataToJSON;
76833
77478
 
76834
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/defaults/index.js
77479
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/defaults/index.js
76835
77480
  function stringifySafely(rawValue, parser, encoder) {
76836
77481
  if (utils_default.isString(rawValue)) {
76837
77482
  try {
@@ -76940,7 +77585,7 @@ utils_default.forEach(["delete", "get", "head", "post", "put", "patch"], (method
76940
77585
  });
76941
77586
  var defaults_default = defaults;
76942
77587
 
76943
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/parseHeaders.js
77588
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/parseHeaders.js
76944
77589
  var ignoreDuplicateOf = utils_default.toObjectSet([
76945
77590
  "age",
76946
77591
  "authorization",
@@ -76985,7 +77630,7 @@ var parseHeaders_default = (rawHeaders) => {
76985
77630
  return parsed;
76986
77631
  };
76987
77632
 
76988
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/AxiosHeaders.js
77633
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/AxiosHeaders.js
76989
77634
  var $internals = Symbol("internals");
76990
77635
  function normalizeHeader(header) {
76991
77636
  return header && String(header).trim().toLowerCase();
@@ -77207,7 +77852,7 @@ utils_default.reduceDescriptors(AxiosHeaders.prototype, ({ value }, key) => {
77207
77852
  utils_default.freezeMethods(AxiosHeaders);
77208
77853
  var AxiosHeaders_default = AxiosHeaders;
77209
77854
 
77210
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/transformData.js
77855
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/transformData.js
77211
77856
  function transformData(fns, response) {
77212
77857
  const config = this || defaults_default;
77213
77858
  const context = response || config;
@@ -77220,12 +77865,12 @@ function transformData(fns, response) {
77220
77865
  return data;
77221
77866
  }
77222
77867
 
77223
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/cancel/isCancel.js
77868
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/cancel/isCancel.js
77224
77869
  function isCancel(value) {
77225
77870
  return !!(value && value.__CANCEL__);
77226
77871
  }
77227
77872
 
77228
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/cancel/CanceledError.js
77873
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/cancel/CanceledError.js
77229
77874
  function CanceledError(message, config, request) {
77230
77875
  AxiosError_default.call(this, message == null ? "canceled" : message, AxiosError_default.ERR_CANCELED, config, request);
77231
77876
  this.name = "CanceledError";
@@ -77235,7 +77880,7 @@ utils_default.inherits(CanceledError, AxiosError_default, {
77235
77880
  });
77236
77881
  var CanceledError_default = CanceledError;
77237
77882
 
77238
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/settle.js
77883
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/settle.js
77239
77884
  function settle(resolve, reject, response) {
77240
77885
  const validateStatus2 = response.config.validateStatus;
77241
77886
  if (!response.status || !validateStatus2 || validateStatus2(response.status)) {
@@ -77251,17 +77896,17 @@ function settle(resolve, reject, response) {
77251
77896
  }
77252
77897
  }
77253
77898
 
77254
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/isAbsoluteURL.js
77899
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/isAbsoluteURL.js
77255
77900
  function isAbsoluteURL(url2) {
77256
77901
  return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url2);
77257
77902
  }
77258
77903
 
77259
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/combineURLs.js
77904
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/combineURLs.js
77260
77905
  function combineURLs(baseURL, relativeURL) {
77261
77906
  return relativeURL ? baseURL.replace(/\/?\/$/, "") + "/" + relativeURL.replace(/^\/+/, "") : baseURL;
77262
77907
  }
77263
77908
 
77264
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/buildFullPath.js
77909
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/buildFullPath.js
77265
77910
  function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
77266
77911
  let isRelativeUrl = !isAbsoluteURL(requestedURL);
77267
77912
  if (baseURL && isRelativeUrl || allowAbsoluteUrls == false) {
@@ -77270,7 +77915,7 @@ function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
77270
77915
  return requestedURL;
77271
77916
  }
77272
77917
 
77273
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/adapters/http.js
77918
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/adapters/http.js
77274
77919
  var import_proxy_from_env = __toESM(require_proxy_from_env());
77275
77920
  var import_http = __toESM(require("http"));
77276
77921
  var import_https = __toESM(require("https"));
@@ -77278,16 +77923,16 @@ var import_util2 = __toESM(require("util"));
77278
77923
  var import_follow_redirects = __toESM(require_follow_redirects());
77279
77924
  var import_zlib = __toESM(require("zlib"));
77280
77925
 
77281
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/env/data.js
77282
- var VERSION = "1.8.2";
77926
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/env/data.js
77927
+ var VERSION = "1.8.3";
77283
77928
 
77284
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/parseProtocol.js
77929
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/parseProtocol.js
77285
77930
  function parseProtocol(url2) {
77286
77931
  const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url2);
77287
77932
  return match && match[1] || "";
77288
77933
  }
77289
77934
 
77290
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/fromDataURI.js
77935
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/fromDataURI.js
77291
77936
  var DATA_URL_PATTERN = /^(?:([^;]+);)?(?:[^;]+;)?(base64|),([\s\S]*)$/;
77292
77937
  function fromDataURI(uri, asBlob, options) {
77293
77938
  const _Blob = options && options.Blob || platform_default.classes.Blob;
@@ -77316,10 +77961,10 @@ function fromDataURI(uri, asBlob, options) {
77316
77961
  throw new AxiosError_default("Unsupported protocol " + protocol, AxiosError_default.ERR_NOT_SUPPORT);
77317
77962
  }
77318
77963
 
77319
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/adapters/http.js
77964
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/adapters/http.js
77320
77965
  var import_stream4 = __toESM(require("stream"));
77321
77966
 
77322
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/AxiosTransformStream.js
77967
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/AxiosTransformStream.js
77323
77968
  var import_stream = __toESM(require("stream"));
77324
77969
  var kInternals = Symbol("internals");
77325
77970
  var AxiosTransformStream = class extends import_stream.default.Transform {
@@ -77434,14 +78079,14 @@ var AxiosTransformStream = class extends import_stream.default.Transform {
77434
78079
  };
77435
78080
  var AxiosTransformStream_default = AxiosTransformStream;
77436
78081
 
77437
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/adapters/http.js
78082
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/adapters/http.js
77438
78083
  var import_events = require("events");
77439
78084
 
77440
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js
78085
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js
77441
78086
  var import_util = __toESM(require("util"));
77442
78087
  var import_stream2 = require("stream");
77443
78088
 
77444
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/readBlob.js
78089
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/readBlob.js
77445
78090
  var { asyncIterator } = Symbol;
77446
78091
  var readBlob = function(blob) {
77447
78092
  return __asyncGenerator(this, null, function* () {
@@ -77458,7 +78103,7 @@ var readBlob = function(blob) {
77458
78103
  };
77459
78104
  var readBlob_default = readBlob;
77460
78105
 
77461
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js
78106
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js
77462
78107
  var BOUNDARY_ALPHABET = platform_default.ALPHABET.ALPHA_DIGIT + "-_";
77463
78108
  var textEncoder = typeof TextEncoder === "function" ? new TextEncoder() : new import_util.default.TextEncoder();
77464
78109
  var CRLF = "\r\n";
@@ -77541,7 +78186,7 @@ var formDataToStream = (form, headersHandler, options) => {
77541
78186
  };
77542
78187
  var formDataToStream_default = formDataToStream;
77543
78188
 
77544
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js
78189
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js
77545
78190
  var import_stream3 = __toESM(require("stream"));
77546
78191
  var ZlibHeaderTransformStream = class extends import_stream3.default.Transform {
77547
78192
  __transform(chunk, encoding, callback) {
@@ -77563,7 +78208,7 @@ var ZlibHeaderTransformStream = class extends import_stream3.default.Transform {
77563
78208
  };
77564
78209
  var ZlibHeaderTransformStream_default = ZlibHeaderTransformStream;
77565
78210
 
77566
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/callbackify.js
78211
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/callbackify.js
77567
78212
  var callbackify = (fn, reducer) => {
77568
78213
  return utils_default.isAsyncFn(fn) ? function(...args) {
77569
78214
  const cb = args.pop();
@@ -77578,7 +78223,7 @@ var callbackify = (fn, reducer) => {
77578
78223
  };
77579
78224
  var callbackify_default = callbackify;
77580
78225
 
77581
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/speedometer.js
78226
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/speedometer.js
77582
78227
  function speedometer(samplesCount, min) {
77583
78228
  samplesCount = samplesCount || 10;
77584
78229
  const bytes = new Array(samplesCount);
@@ -77614,7 +78259,7 @@ function speedometer(samplesCount, min) {
77614
78259
  }
77615
78260
  var speedometer_default = speedometer;
77616
78261
 
77617
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/throttle.js
78262
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/throttle.js
77618
78263
  function throttle(fn, freq) {
77619
78264
  let timestamp = 0;
77620
78265
  let threshold = 1e3 / freq;
@@ -77649,7 +78294,7 @@ function throttle(fn, freq) {
77649
78294
  }
77650
78295
  var throttle_default = throttle;
77651
78296
 
77652
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/progressEventReducer.js
78297
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/progressEventReducer.js
77653
78298
  var progressEventReducer = (listener, isDownloadStream, freq = 3) => {
77654
78299
  let bytesNotified = 0;
77655
78300
  const _speedometer = speedometer_default(50, 250);
@@ -77684,7 +78329,7 @@ var progressEventDecorator = (total, throttled) => {
77684
78329
  };
77685
78330
  var asyncDecorator = (fn) => (...args) => utils_default.asap(() => fn(...args));
77686
78331
 
77687
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/adapters/http.js
78332
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/adapters/http.js
77688
78333
  var zlibOptions = {
77689
78334
  flush: import_zlib.default.constants.Z_SYNC_FLUSH,
77690
78335
  finishFlush: import_zlib.default.constants.Z_SYNC_FLUSH
@@ -78190,7 +78835,7 @@ var http_default = isHttpAdapterSupported && function httpAdapter(config) {
78190
78835
  });
78191
78836
  };
78192
78837
 
78193
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/isURLSameOrigin.js
78838
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/isURLSameOrigin.js
78194
78839
  var isURLSameOrigin_default = platform_default.hasStandardBrowserEnv ? ((origin2, isMSIE) => (url2) => {
78195
78840
  url2 = new URL(url2, platform_default.origin);
78196
78841
  return origin2.protocol === url2.protocol && origin2.host === url2.host && (isMSIE || origin2.port === url2.port);
@@ -78199,7 +78844,7 @@ var isURLSameOrigin_default = platform_default.hasStandardBrowserEnv ? ((origin2
78199
78844
  platform_default.navigator && /(msie|trident)/i.test(platform_default.navigator.userAgent)
78200
78845
  ) : () => true;
78201
78846
 
78202
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/cookies.js
78847
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/cookies.js
78203
78848
  var cookies_default = platform_default.hasStandardBrowserEnv ? (
78204
78849
  // Standard browser envs support document.cookie
78205
78850
  {
@@ -78232,7 +78877,7 @@ var cookies_default = platform_default.hasStandardBrowserEnv ? (
78232
78877
  }
78233
78878
  );
78234
78879
 
78235
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/mergeConfig.js
78880
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/mergeConfig.js
78236
78881
  var headersToObject = (thing) => thing instanceof AxiosHeaders_default ? __spreadValues({}, thing) : thing;
78237
78882
  function mergeConfig(config1, config2) {
78238
78883
  config2 = config2 || {};
@@ -78312,12 +78957,12 @@ function mergeConfig(config1, config2) {
78312
78957
  return config;
78313
78958
  }
78314
78959
 
78315
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/resolveConfig.js
78960
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/resolveConfig.js
78316
78961
  var resolveConfig_default = (config) => {
78317
78962
  const newConfig = mergeConfig({}, config);
78318
78963
  let { data, withXSRFToken, xsrfHeaderName, xsrfCookieName, headers, auth } = newConfig;
78319
78964
  newConfig.headers = headers = AxiosHeaders_default.from(headers);
78320
- newConfig.url = buildURL(buildFullPath(newConfig.baseURL, newConfig.url), config.params, config.paramsSerializer);
78965
+ newConfig.url = buildURL(buildFullPath(newConfig.baseURL, newConfig.url, newConfig.allowAbsoluteUrls), config.params, config.paramsSerializer);
78321
78966
  if (auth) {
78322
78967
  headers.set(
78323
78968
  "Authorization",
@@ -78345,7 +78990,7 @@ var resolveConfig_default = (config) => {
78345
78990
  return newConfig;
78346
78991
  };
78347
78992
 
78348
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/adapters/xhr.js
78993
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/adapters/xhr.js
78349
78994
  var isXHRAdapterSupported = typeof XMLHttpRequest !== "undefined";
78350
78995
  var xhr_default = isXHRAdapterSupported && function(config) {
78351
78996
  return new Promise(function dispatchXhrRequest(resolve, reject) {
@@ -78472,7 +79117,7 @@ var xhr_default = isXHRAdapterSupported && function(config) {
78472
79117
  });
78473
79118
  };
78474
79119
 
78475
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/composeSignals.js
79120
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/composeSignals.js
78476
79121
  var composeSignals = (signals, timeout) => {
78477
79122
  const { length } = signals = signals ? signals.filter(Boolean) : [];
78478
79123
  if (timeout || length) {
@@ -78508,7 +79153,7 @@ var composeSignals = (signals, timeout) => {
78508
79153
  };
78509
79154
  var composeSignals_default = composeSignals;
78510
79155
 
78511
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/trackStream.js
79156
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/trackStream.js
78512
79157
  var streamChunk = function* (chunk, chunkSize) {
78513
79158
  let len = chunk.byteLength;
78514
79159
  if (!chunkSize || len < chunkSize) {
@@ -78603,7 +79248,7 @@ var trackStream = (stream4, chunkSize, onProgress, onFinish) => {
78603
79248
  });
78604
79249
  };
78605
79250
 
78606
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/adapters/fetch.js
79251
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/adapters/fetch.js
78607
79252
  var isFetchSupported = typeof fetch === "function" && typeof Request === "function" && typeof Response === "function";
78608
79253
  var isReadableStreamSupported = isFetchSupported && typeof ReadableStream === "function";
78609
79254
  var encodeText = isFetchSupported && (typeof TextEncoder === "function" ? ((encoder) => (str) => encoder.encode(str))(new TextEncoder()) : (str) => __async(void 0, null, function* () {
@@ -78768,7 +79413,7 @@ var fetch_default = isFetchSupported && ((config) => __async(void 0, null, funct
78768
79413
  }
78769
79414
  }));
78770
79415
 
78771
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/adapters/adapters.js
79416
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/adapters/adapters.js
78772
79417
  var knownAdapters = {
78773
79418
  http: http_default,
78774
79419
  xhr: xhr_default,
@@ -78822,7 +79467,7 @@ var adapters_default = {
78822
79467
  adapters: knownAdapters
78823
79468
  };
78824
79469
 
78825
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/dispatchRequest.js
79470
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/dispatchRequest.js
78826
79471
  function throwIfCancellationRequested(config) {
78827
79472
  if (config.cancelToken) {
78828
79473
  config.cancelToken.throwIfRequested();
@@ -78867,7 +79512,7 @@ function dispatchRequest(config) {
78867
79512
  });
78868
79513
  }
78869
79514
 
78870
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/validator.js
79515
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/validator.js
78871
79516
  var validators = {};
78872
79517
  ["object", "boolean", "number", "function", "string", "symbol"].forEach((type, i) => {
78873
79518
  validators[type] = function validator(thing) {
@@ -78931,7 +79576,7 @@ var validator_default = {
78931
79576
  validators
78932
79577
  };
78933
79578
 
78934
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/Axios.js
79579
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/Axios.js
78935
79580
  var validators2 = validator_default.validators;
78936
79581
  var Axios = class {
78937
79582
  constructor(instanceConfig) {
@@ -79106,7 +79751,7 @@ utils_default.forEach(["post", "put", "patch"], function forEachMethodWithData(m
79106
79751
  });
79107
79752
  var Axios_default = Axios;
79108
79753
 
79109
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/cancel/CancelToken.js
79754
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/cancel/CancelToken.js
79110
79755
  var CancelToken = class _CancelToken {
79111
79756
  constructor(executor) {
79112
79757
  if (typeof executor !== "function") {
@@ -79205,19 +79850,19 @@ var CancelToken = class _CancelToken {
79205
79850
  };
79206
79851
  var CancelToken_default = CancelToken;
79207
79852
 
79208
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/spread.js
79853
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/spread.js
79209
79854
  function spread(callback) {
79210
79855
  return function wrap(arr) {
79211
79856
  return callback.apply(null, arr);
79212
79857
  };
79213
79858
  }
79214
79859
 
79215
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/isAxiosError.js
79860
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/isAxiosError.js
79216
79861
  function isAxiosError(payload) {
79217
79862
  return utils_default.isObject(payload) && payload.isAxiosError === true;
79218
79863
  }
79219
79864
 
79220
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/HttpStatusCode.js
79865
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/HttpStatusCode.js
79221
79866
  var HttpStatusCode = {
79222
79867
  Continue: 100,
79223
79868
  SwitchingProtocols: 101,
@@ -79288,7 +79933,7 @@ Object.entries(HttpStatusCode).forEach(([key, value]) => {
79288
79933
  });
79289
79934
  var HttpStatusCode_default = HttpStatusCode;
79290
79935
 
79291
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/axios.js
79936
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/axios.js
79292
79937
  function createInstance(defaultConfig) {
79293
79938
  const context = new Axios_default(defaultConfig);
79294
79939
  const instance = bind(Axios_default.prototype.request, context);
@@ -79321,7 +79966,7 @@ axios.HttpStatusCode = HttpStatusCode_default;
79321
79966
  axios.default = axios;
79322
79967
  var axios_default = axios;
79323
79968
 
79324
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/index.js
79969
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/index.js
79325
79970
  var {
79326
79971
  Axios: Axios2,
79327
79972
  AxiosError: AxiosError2,
@@ -79341,7 +79986,7 @@ var {
79341
79986
  mergeConfig: mergeConfig2
79342
79987
  } = axios_default;
79343
79988
 
79344
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/utils/getNpmRegistry.js
79989
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/utils/getNpmRegistry.js
79345
79990
  function getNpmRegistry() {
79346
79991
  return __async(this, null, function* () {
79347
79992
  const { stdout } = yield (0, import_execa.default)("npm", [
@@ -79353,7 +79998,7 @@ function getNpmRegistry() {
79353
79998
  });
79354
79999
  }
79355
80000
 
79356
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/utils/getNpmPackageInfo.js
80001
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/utils/getNpmPackageInfo.js
79357
80002
  var NpmPackageInfoCache = /* @__PURE__ */ new Map();
79358
80003
  function getNpmPackageInfoWithCommand(pkgName, pkgVersion, options) {
79359
80004
  return __async(this, null, function* () {
@@ -79404,7 +80049,7 @@ function getNpmPackageInfo(pkgName, pkgVersion, options) {
79404
80049
  });
79405
80050
  }
79406
80051
 
79407
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/utils/getNpmVersion.js
80052
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/utils/getNpmVersion.js
79408
80053
  function getNpmVersion(packageName, options) {
79409
80054
  return __async(this, null, function* () {
79410
80055
  const { version = "latest" } = options || {};
@@ -79413,7 +80058,7 @@ function getNpmVersion(packageName, options) {
79413
80058
  });
79414
80059
  }
79415
80060
 
79416
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/utils/getPackageInfo.js
80061
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/utils/getPackageInfo.js
79417
80062
  function getPackageInfo(packageName) {
79418
80063
  if (!packageName) {
79419
80064
  throw new Error("package is not exisit");
@@ -79437,16 +80082,16 @@ function getPackageInfo(packageName) {
79437
80082
  };
79438
80083
  }
79439
80084
 
79440
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/ora.js
80085
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.7/node_modules/@modern-js/codesmith-utils/dist/esm/ora.js
79441
80086
  var import_ora = __toESM(require_ora());
79442
80087
 
79443
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-ejs@2.6.6_@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith-api-ejs/dist/esm-node/utils/renderString.js
80088
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-ejs@2.6.7_@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith-api-ejs/dist/esm-node/utils/renderString.js
79444
80089
  var import_ejs = __toESM(require_ejs());
79445
80090
  function renderString(template, fullData) {
79446
80091
  return import_ejs.default.render(template, fullData) || "";
79447
80092
  }
79448
80093
 
79449
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-ejs@2.6.6_@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith-api-ejs/dist/esm-node/index.js
80094
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-ejs@2.6.7_@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith-api-ejs/dist/esm-node/index.js
79450
80095
  var EjsAPI = class {
79451
80096
  renderTemplate(_0, _1) {
79452
80097
  return __async(this, arguments, function* (templateResource, target, parameters = {}) {
@@ -79481,7 +80126,7 @@ var EjsAPI = class {
79481
80126
  }
79482
80127
  };
79483
80128
 
79484
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-fs@2.6.6_@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith-api-fs/dist/esm-node/index.js
80129
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-fs@2.6.7_@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith-api-fs/dist/esm-node/index.js
79485
80130
  var import_path = __toESM(require("path"));
79486
80131
  var FsAPI = class {
79487
80132
  renderFile(resource, target) {
@@ -79510,7 +80155,7 @@ var FsAPI = class {
79510
80155
  }
79511
80156
  };
79512
80157
 
79513
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-git@2.6.6_@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith-api-git/dist/esm-node/utils/index.js
80158
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-git@2.6.7_@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith-api-git/dist/esm-node/utils/index.js
79514
80159
  function canUseGit() {
79515
80160
  return __async(this, null, function* () {
79516
80161
  try {
@@ -79594,7 +80239,7 @@ function gitCommit(cwd, commitMessage) {
79594
80239
  });
79595
80240
  }
79596
80241
 
79597
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-git@2.6.6_@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith-api-git/dist/esm-node/index.js
80242
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-git@2.6.7_@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith-api-git/dist/esm-node/index.js
79598
80243
  var GitAPI = class {
79599
80244
  isInGitRepo() {
79600
80245
  return __async(this, arguments, function* (cwd = this.generatorCore.outputPath) {
@@ -79650,7 +80295,7 @@ var GitAPI = class {
79650
80295
  }
79651
80296
  };
79652
80297
 
79653
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-handlebars@2.6.6_@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith-api-handlebars/dist/esm-node/utils/renderString.js
80298
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-handlebars@2.6.7_@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith-api-handlebars/dist/esm-node/utils/renderString.js
79654
80299
  var import_handlebars = __toESM(require_lib2());
79655
80300
  function renderString2(template, fullData, registers) {
79656
80301
  const helpers = __spreadValues({}, registers === null || registers === void 0 ? void 0 : registers.helpers);
@@ -79660,7 +80305,7 @@ function renderString2(template, fullData, registers) {
79660
80305
  return import_handlebars.default.compile(template)(fullData) || "";
79661
80306
  }
79662
80307
 
79663
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-handlebars@2.6.6_@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith-api-handlebars/dist/esm-node/index.js
80308
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-handlebars@2.6.7_@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith-api-handlebars/dist/esm-node/index.js
79664
80309
  var HandlebarsAPI = class {
79665
80310
  registerHelp(helpers) {
79666
80311
  return __async(this, null, function* () {
@@ -79817,7 +80462,7 @@ function __generator(thisArg, body) {
79817
80462
  }
79818
80463
  }
79819
80464
 
79820
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/npm.js
80465
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.7/node_modules/@modern-js/codesmith-utils/dist/esm/npm.js
79821
80466
  var import_execa5 = __toESM(require_execa());
79822
80467
  function canUseNvm() {
79823
80468
  return _canUseNvm.apply(this, arguments);
@@ -80038,7 +80683,7 @@ function _canUsePnpm() {
80038
80683
  return _canUsePnpm.apply(this, arguments);
80039
80684
  }
80040
80685
 
80041
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-npm@2.6.6_@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith-api-npm/dist/esm-node/utils/install.js
80686
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-npm@2.6.7_@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith-api-npm/dist/esm-node/utils/install.js
80042
80687
  function execaWithStreamLog(command, args, options) {
80043
80688
  const promise = (0, import_execa.default)(command, args, __spreadProps(__spreadValues({}, options), {
80044
80689
  stdin: "inherit",
@@ -80139,7 +80784,7 @@ function pnpmInstall(_0) {
80139
80784
  });
80140
80785
  }
80141
80786
 
80142
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-npm@2.6.6_@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith-api-npm/dist/esm-node/index.js
80787
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-npm@2.6.7_@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith-api-npm/dist/esm-node/index.js
80143
80788
  var NpmAPI = class {
80144
80789
  npmInstall({ cwd, registryUrl, ignoreScripts }) {
80145
80790
  return npmInstall({
@@ -80167,7 +80812,7 @@ var NpmAPI = class {
80167
80812
  }
80168
80813
  };
80169
80814
 
80170
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/lodash.js
80815
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.7/node_modules/@modern-js/codesmith-utils/dist/esm/lodash.js
80171
80816
  var import_lodash = __toESM(require_lodash());
80172
80817
  var import_lodash2 = __toESM(require_lodash2());
80173
80818
  var import_lodash3 = __toESM(require_lodash3());
@@ -85934,10 +86579,10 @@ var Schema = (
85934
86579
  }()
85935
86580
  );
85936
86581
 
85937
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-formily/dist/esm-node/prompt.js
86582
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.3.3/node_modules/@modern-js/codesmith-formily/dist/esm-node/prompt.js
85938
86583
  var import_inquirer = __toESM(require_inquirer());
85939
86584
 
85940
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-formily/dist/esm-node/transform.js
86585
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.3.3/node_modules/@modern-js/codesmith-formily/dist/esm-node/transform.js
85941
86586
  function validateSchema(schema) {
85942
86587
  const { type, properties } = schema;
85943
86588
  if (type !== "object") {
@@ -86024,7 +86669,7 @@ function transformForm(schema, configValue = {}, validateMap, initValue) {
86024
86669
  return getQuestionFromSchema(schema, configValue, validateMap, initValue);
86025
86670
  }
86026
86671
 
86027
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-formily/dist/esm-node/prompt.js
86672
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.3.3/node_modules/@modern-js/codesmith-formily/dist/esm-node/prompt.js
86028
86673
  var compileRule = (rule, scope) => {
86029
86674
  const state = Schema.compile(rule, __spreadValues({
86030
86675
  $self: {},
@@ -86124,7 +86769,7 @@ function prompt(_0) {
86124
86769
  });
86125
86770
  }
86126
86771
 
86127
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-formily/dist/esm-node/inquirer.js
86772
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.3.3/node_modules/@modern-js/codesmith-formily/dist/esm-node/inquirer.js
86128
86773
  var CLIReader = class {
86129
86774
  getAnswers() {
86130
86775
  return this.answers;
@@ -86152,7 +86797,7 @@ var CLIReader = class {
86152
86797
  }
86153
86798
  };
86154
86799
 
86155
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/index.js
86800
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/index.js
86156
86801
  var import_comment_json = __toESM(require_src3());
86157
86802
  var import_inquirer2 = __toESM(require_inquirer2());
86158
86803
 
@@ -86219,7 +86864,7 @@ var I18n = class {
86219
86864
  }
86220
86865
  };
86221
86866
 
86222
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/locale/en.js
86867
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/locale/en.js
86223
86868
  var EN_LOCALE = {
86224
86869
  environment: {
86225
86870
  node_version: "The version of Node.js is too low. Please upgrade to the LTS version: https://nodejs.org/",
@@ -86246,7 +86891,7 @@ var EN_LOCALE = {
86246
86891
  }
86247
86892
  };
86248
86893
 
86249
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/locale/zh.js
86894
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/locale/zh.js
86250
86895
  var ZH_LOCALE = {
86251
86896
  environment: {
86252
86897
  node_version: "Node.js 版本太低,请升级至 LTS 版本: https://nodejs.org/",
@@ -86273,14 +86918,14 @@ var ZH_LOCALE = {
86273
86918
  }
86274
86919
  };
86275
86920
 
86276
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/locale/index.js
86921
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/locale/index.js
86277
86922
  var i18n = new I18n();
86278
86923
  var localeKeys = i18n.init("zh", {
86279
86924
  zh: ZH_LOCALE,
86280
86925
  en: EN_LOCALE
86281
86926
  });
86282
86927
 
86283
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/utils/checkUseNvm.js
86928
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/utils/checkUseNvm.js
86284
86929
  var import_path3 = __toESM(require("path"));
86285
86930
  var NODE_MAJOR_VERSION_MAP = {
86286
86931
  "lts/*": 18,
@@ -86331,7 +86976,7 @@ function checkUseNvm(cwd, logger) {
86331
86976
  });
86332
86977
  }
86333
86978
 
86334
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/utils/transform.js
86979
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/utils/transform.js
86335
86980
  function transformInquirerSchema(questions, configValue = {}, validateMap = {}, initValue = {}) {
86336
86981
  for (const question of questions) {
86337
86982
  question.default = initValue[question.name] || question.default;
@@ -86358,7 +87003,7 @@ function transformInquirerSchema(questions, configValue = {}, validateMap = {},
86358
87003
  return questions;
86359
87004
  }
86360
87005
 
86361
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/index.js
87006
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/index.js
86362
87007
  var AppAPI = class {
86363
87008
  checkEnvironment(nodeVersion) {
86364
87009
  return __async(this, null, function* () {
@@ -86601,11 +87246,11 @@ var AppAPI = class {
86601
87246
  }
86602
87247
  };
86603
87248
 
86604
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.6.6/node_modules/@modern-js/codesmith-api-json/dist/esm-node/index.js
87249
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.6.7/node_modules/@modern-js/codesmith-api-json/dist/esm-node/index.js
86605
87250
  var import_comment_json2 = __toESM(require_src3());
86606
87251
  var declarationUpdate = __toESM(require_dist());
86607
87252
 
86608
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.6.6/node_modules/@modern-js/codesmith-api-json/dist/esm-node/utils/index.js
87253
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.6.7/node_modules/@modern-js/codesmith-api-json/dist/esm-node/utils/index.js
86609
87254
  function editJson(generatorCore, resource, getNewJsonValue) {
86610
87255
  return __async(this, null, function* () {
86611
87256
  const originJsonValue = yield resource.value();
@@ -86620,7 +87265,7 @@ function editJson(generatorCore, resource, getNewJsonValue) {
86620
87265
  });
86621
87266
  }
86622
87267
 
86623
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.6.6/node_modules/@modern-js/codesmith-api-json/dist/esm-node/index.js
87268
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.6.7/node_modules/@modern-js/codesmith-api-json/dist/esm-node/index.js
86624
87269
  var JsonAPI = class {
86625
87270
  get(resource) {
86626
87271
  return __async(this, null, function* () {