@kubb/cli 3.0.0-alpha.2 → 3.0.0-alpha.4

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.
@@ -1,4 +1,4 @@
1
- "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { newObj[key] = obj[key]; } } } newObj.default = obj; return newObj; } } function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }var __create = Object.create;
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }var __create = Object.create;
2
2
  var __defProp = Object.defineProperty;
3
3
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
4
  var __getOwnPropNames = Object.getOwnPropertyNames;
@@ -42,14 +42,6 @@ var __privateGet = (obj, member, getter) => (__accessCheck(obj, member, "read fr
42
42
  var __privateAdd = (obj, member, value) => member.has(obj) ? __typeError("Cannot add the same private member more than once") : member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
43
43
  var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "write to private field"), setter ? setter.call(obj, value) : member.set(obj, value), value);
44
44
  var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "access private method"), method);
45
- var __privateWrapper = (obj, member, setter, getter) => ({
46
- set _(value) {
47
- __privateSet(obj, member, value, setter);
48
- },
49
- get _() {
50
- return __privateGet(obj, member, getter);
51
- }
52
- });
53
45
 
54
46
  // ../../node_modules/.pnpm/tsup@8.2.4_@microsoft+api-extractor@7.47.7_@types+node@20.16.1__jiti@1.21.6_postcss@8.4.41_typescript@5.5.4_yaml@2.4.5/node_modules/tsup/assets/cjs_shims.js
55
47
  var init_cjs_shims = __esm({
@@ -58,1907 +50,6 @@ var init_cjs_shims = __esm({
58
50
  }
59
51
  });
60
52
 
61
- // ../../node_modules/.pnpm/mimic-fn@2.1.0/node_modules/mimic-fn/index.js
62
- var require_mimic_fn = __commonJS({
63
- "../../node_modules/.pnpm/mimic-fn@2.1.0/node_modules/mimic-fn/index.js"(exports, module) {
64
- "use strict";
65
- init_cjs_shims();
66
- var mimicFn = (to, from) => {
67
- for (const prop of Reflect.ownKeys(from)) {
68
- Object.defineProperty(to, prop, Object.getOwnPropertyDescriptor(from, prop));
69
- }
70
- return to;
71
- };
72
- module.exports = mimicFn;
73
- module.exports.default = mimicFn;
74
- }
75
- });
76
-
77
- // ../../node_modules/.pnpm/onetime@5.1.2/node_modules/onetime/index.js
78
- var require_onetime = __commonJS({
79
- "../../node_modules/.pnpm/onetime@5.1.2/node_modules/onetime/index.js"(exports, module) {
80
- "use strict";
81
- init_cjs_shims();
82
- var mimicFn = require_mimic_fn();
83
- var calledFunctions = /* @__PURE__ */ new WeakMap();
84
- var onetime2 = (function_, options = {}) => {
85
- if (typeof function_ !== "function") {
86
- throw new TypeError("Expected a function");
87
- }
88
- let returnValue;
89
- let callCount = 0;
90
- const functionName = function_.displayName || function_.name || "<anonymous>";
91
- const onetime3 = function(...arguments_) {
92
- calledFunctions.set(onetime3, ++callCount);
93
- if (callCount === 1) {
94
- returnValue = function_.apply(this, arguments_);
95
- function_ = null;
96
- } else if (options.throw === true) {
97
- throw new Error(`Function \`${functionName}\` can only be called once`);
98
- }
99
- return returnValue;
100
- };
101
- mimicFn(onetime3, function_);
102
- calledFunctions.set(onetime3, callCount);
103
- return onetime3;
104
- };
105
- module.exports = onetime2;
106
- module.exports.default = onetime2;
107
- module.exports.callCount = (function_) => {
108
- if (!calledFunctions.has(function_)) {
109
- throw new Error(`The given function \`${function_.name}\` is not wrapped by the \`onetime\` package`);
110
- }
111
- return calledFunctions.get(function_);
112
- };
113
- }
114
- });
115
-
116
- // ../../node_modules/.pnpm/signal-exit@3.0.7/node_modules/signal-exit/signals.js
117
- var require_signals = __commonJS({
118
- "../../node_modules/.pnpm/signal-exit@3.0.7/node_modules/signal-exit/signals.js"(exports, module) {
119
- "use strict";
120
- init_cjs_shims();
121
- module.exports = [
122
- "SIGABRT",
123
- "SIGALRM",
124
- "SIGHUP",
125
- "SIGINT",
126
- "SIGTERM"
127
- ];
128
- if (process.platform !== "win32") {
129
- module.exports.push(
130
- "SIGVTALRM",
131
- "SIGXCPU",
132
- "SIGXFSZ",
133
- "SIGUSR2",
134
- "SIGTRAP",
135
- "SIGSYS",
136
- "SIGQUIT",
137
- "SIGIOT"
138
- // should detect profiler and enable/disable accordingly.
139
- // see #21
140
- // 'SIGPROF'
141
- );
142
- }
143
- if (process.platform === "linux") {
144
- module.exports.push(
145
- "SIGIO",
146
- "SIGPOLL",
147
- "SIGPWR",
148
- "SIGSTKFLT",
149
- "SIGUNUSED"
150
- );
151
- }
152
- }
153
- });
154
-
155
- // ../../node_modules/.pnpm/signal-exit@3.0.7/node_modules/signal-exit/index.js
156
- var require_signal_exit = __commonJS({
157
- "../../node_modules/.pnpm/signal-exit@3.0.7/node_modules/signal-exit/index.js"(exports, module) {
158
- "use strict";
159
- init_cjs_shims();
160
- var process16 = global.process;
161
- var processOk2 = function(process17) {
162
- return process17 && typeof process17 === "object" && typeof process17.removeListener === "function" && typeof process17.emit === "function" && typeof process17.reallyExit === "function" && typeof process17.listeners === "function" && typeof process17.kill === "function" && typeof process17.pid === "number" && typeof process17.on === "function";
163
- };
164
- if (!processOk2(process16)) {
165
- module.exports = function() {
166
- return function() {
167
- };
168
- };
169
- } else {
170
- assert = __require("assert");
171
- signals2 = require_signals();
172
- isWin = /^win/i.test(process16.platform);
173
- EE = __require("events");
174
- if (typeof EE !== "function") {
175
- EE = EE.EventEmitter;
176
- }
177
- if (process16.__signal_exit_emitter__) {
178
- emitter = process16.__signal_exit_emitter__;
179
- } else {
180
- emitter = process16.__signal_exit_emitter__ = new EE();
181
- emitter.count = 0;
182
- emitter.emitted = {};
183
- }
184
- if (!emitter.infinite) {
185
- emitter.setMaxListeners(Infinity);
186
- emitter.infinite = true;
187
- }
188
- module.exports = function(cb, opts) {
189
- if (!processOk2(global.process)) {
190
- return function() {
191
- };
192
- }
193
- assert.equal(typeof cb, "function", "a callback must be provided for exit handler");
194
- if (loaded === false) {
195
- load2();
196
- }
197
- var ev = "exit";
198
- if (opts && opts.alwaysLast) {
199
- ev = "afterexit";
200
- }
201
- var remove = function() {
202
- emitter.removeListener(ev, cb);
203
- if (emitter.listeners("exit").length === 0 && emitter.listeners("afterexit").length === 0) {
204
- unload2();
205
- }
206
- };
207
- emitter.on(ev, cb);
208
- return remove;
209
- };
210
- unload2 = function unload3() {
211
- if (!loaded || !processOk2(global.process)) {
212
- return;
213
- }
214
- loaded = false;
215
- signals2.forEach(function(sig) {
216
- try {
217
- process16.removeListener(sig, sigListeners[sig]);
218
- } catch (er) {
219
- }
220
- });
221
- process16.emit = originalProcessEmit;
222
- process16.reallyExit = originalProcessReallyExit;
223
- emitter.count -= 1;
224
- };
225
- module.exports.unload = unload2;
226
- emit = function emit2(event, code, signal) {
227
- if (emitter.emitted[event]) {
228
- return;
229
- }
230
- emitter.emitted[event] = true;
231
- emitter.emit(event, code, signal);
232
- };
233
- sigListeners = {};
234
- signals2.forEach(function(sig) {
235
- sigListeners[sig] = function listener() {
236
- if (!processOk2(global.process)) {
237
- return;
238
- }
239
- var listeners = process16.listeners(sig);
240
- if (listeners.length === emitter.count) {
241
- unload2();
242
- emit("exit", null, sig);
243
- emit("afterexit", null, sig);
244
- if (isWin && sig === "SIGHUP") {
245
- sig = "SIGINT";
246
- }
247
- process16.kill(process16.pid, sig);
248
- }
249
- };
250
- });
251
- module.exports.signals = function() {
252
- return signals2;
253
- };
254
- loaded = false;
255
- load2 = function load3() {
256
- if (loaded || !processOk2(global.process)) {
257
- return;
258
- }
259
- loaded = true;
260
- emitter.count += 1;
261
- signals2 = signals2.filter(function(sig) {
262
- try {
263
- process16.on(sig, sigListeners[sig]);
264
- return true;
265
- } catch (er) {
266
- return false;
267
- }
268
- });
269
- process16.emit = processEmit;
270
- process16.reallyExit = processReallyExit;
271
- };
272
- module.exports.load = load2;
273
- originalProcessReallyExit = process16.reallyExit;
274
- processReallyExit = function processReallyExit2(code) {
275
- if (!processOk2(global.process)) {
276
- return;
277
- }
278
- process16.exitCode = code || /* istanbul ignore next */
279
- 0;
280
- emit("exit", process16.exitCode, null);
281
- emit("afterexit", process16.exitCode, null);
282
- originalProcessReallyExit.call(process16, process16.exitCode);
283
- };
284
- originalProcessEmit = process16.emit;
285
- processEmit = function processEmit2(ev, arg) {
286
- if (ev === "exit" && processOk2(global.process)) {
287
- if (arg !== void 0) {
288
- process16.exitCode = arg;
289
- }
290
- var ret = originalProcessEmit.apply(this, arguments);
291
- emit("exit", process16.exitCode, null);
292
- emit("afterexit", process16.exitCode, null);
293
- return ret;
294
- } else {
295
- return originalProcessEmit.apply(this, arguments);
296
- }
297
- };
298
- }
299
- var assert;
300
- var signals2;
301
- var isWin;
302
- var EE;
303
- var emitter;
304
- var unload2;
305
- var emit;
306
- var sigListeners;
307
- var loaded;
308
- var load2;
309
- var originalProcessReallyExit;
310
- var processReallyExit;
311
- var originalProcessEmit;
312
- var processEmit;
313
- }
314
- });
315
-
316
- // ../../node_modules/.pnpm/cli-spinners@2.9.2/node_modules/cli-spinners/spinners.json
317
- var require_spinners = __commonJS({
318
- "../../node_modules/.pnpm/cli-spinners@2.9.2/node_modules/cli-spinners/spinners.json"(exports, module) {
319
- module.exports = {
320
- dots: {
321
- interval: 80,
322
- frames: [
323
- "\u280B",
324
- "\u2819",
325
- "\u2839",
326
- "\u2838",
327
- "\u283C",
328
- "\u2834",
329
- "\u2826",
330
- "\u2827",
331
- "\u2807",
332
- "\u280F"
333
- ]
334
- },
335
- dots2: {
336
- interval: 80,
337
- frames: [
338
- "\u28FE",
339
- "\u28FD",
340
- "\u28FB",
341
- "\u28BF",
342
- "\u287F",
343
- "\u28DF",
344
- "\u28EF",
345
- "\u28F7"
346
- ]
347
- },
348
- dots3: {
349
- interval: 80,
350
- frames: [
351
- "\u280B",
352
- "\u2819",
353
- "\u281A",
354
- "\u281E",
355
- "\u2816",
356
- "\u2826",
357
- "\u2834",
358
- "\u2832",
359
- "\u2833",
360
- "\u2813"
361
- ]
362
- },
363
- dots4: {
364
- interval: 80,
365
- frames: [
366
- "\u2804",
367
- "\u2806",
368
- "\u2807",
369
- "\u280B",
370
- "\u2819",
371
- "\u2838",
372
- "\u2830",
373
- "\u2820",
374
- "\u2830",
375
- "\u2838",
376
- "\u2819",
377
- "\u280B",
378
- "\u2807",
379
- "\u2806"
380
- ]
381
- },
382
- dots5: {
383
- interval: 80,
384
- frames: [
385
- "\u280B",
386
- "\u2819",
387
- "\u281A",
388
- "\u2812",
389
- "\u2802",
390
- "\u2802",
391
- "\u2812",
392
- "\u2832",
393
- "\u2834",
394
- "\u2826",
395
- "\u2816",
396
- "\u2812",
397
- "\u2810",
398
- "\u2810",
399
- "\u2812",
400
- "\u2813",
401
- "\u280B"
402
- ]
403
- },
404
- dots6: {
405
- interval: 80,
406
- frames: [
407
- "\u2801",
408
- "\u2809",
409
- "\u2819",
410
- "\u281A",
411
- "\u2812",
412
- "\u2802",
413
- "\u2802",
414
- "\u2812",
415
- "\u2832",
416
- "\u2834",
417
- "\u2824",
418
- "\u2804",
419
- "\u2804",
420
- "\u2824",
421
- "\u2834",
422
- "\u2832",
423
- "\u2812",
424
- "\u2802",
425
- "\u2802",
426
- "\u2812",
427
- "\u281A",
428
- "\u2819",
429
- "\u2809",
430
- "\u2801"
431
- ]
432
- },
433
- dots7: {
434
- interval: 80,
435
- frames: [
436
- "\u2808",
437
- "\u2809",
438
- "\u280B",
439
- "\u2813",
440
- "\u2812",
441
- "\u2810",
442
- "\u2810",
443
- "\u2812",
444
- "\u2816",
445
- "\u2826",
446
- "\u2824",
447
- "\u2820",
448
- "\u2820",
449
- "\u2824",
450
- "\u2826",
451
- "\u2816",
452
- "\u2812",
453
- "\u2810",
454
- "\u2810",
455
- "\u2812",
456
- "\u2813",
457
- "\u280B",
458
- "\u2809",
459
- "\u2808"
460
- ]
461
- },
462
- dots8: {
463
- interval: 80,
464
- frames: [
465
- "\u2801",
466
- "\u2801",
467
- "\u2809",
468
- "\u2819",
469
- "\u281A",
470
- "\u2812",
471
- "\u2802",
472
- "\u2802",
473
- "\u2812",
474
- "\u2832",
475
- "\u2834",
476
- "\u2824",
477
- "\u2804",
478
- "\u2804",
479
- "\u2824",
480
- "\u2820",
481
- "\u2820",
482
- "\u2824",
483
- "\u2826",
484
- "\u2816",
485
- "\u2812",
486
- "\u2810",
487
- "\u2810",
488
- "\u2812",
489
- "\u2813",
490
- "\u280B",
491
- "\u2809",
492
- "\u2808",
493
- "\u2808"
494
- ]
495
- },
496
- dots9: {
497
- interval: 80,
498
- frames: [
499
- "\u28B9",
500
- "\u28BA",
501
- "\u28BC",
502
- "\u28F8",
503
- "\u28C7",
504
- "\u2867",
505
- "\u2857",
506
- "\u284F"
507
- ]
508
- },
509
- dots10: {
510
- interval: 80,
511
- frames: [
512
- "\u2884",
513
- "\u2882",
514
- "\u2881",
515
- "\u2841",
516
- "\u2848",
517
- "\u2850",
518
- "\u2860"
519
- ]
520
- },
521
- dots11: {
522
- interval: 100,
523
- frames: [
524
- "\u2801",
525
- "\u2802",
526
- "\u2804",
527
- "\u2840",
528
- "\u2880",
529
- "\u2820",
530
- "\u2810",
531
- "\u2808"
532
- ]
533
- },
534
- dots12: {
535
- interval: 80,
536
- frames: [
537
- "\u2880\u2800",
538
- "\u2840\u2800",
539
- "\u2804\u2800",
540
- "\u2882\u2800",
541
- "\u2842\u2800",
542
- "\u2805\u2800",
543
- "\u2883\u2800",
544
- "\u2843\u2800",
545
- "\u280D\u2800",
546
- "\u288B\u2800",
547
- "\u284B\u2800",
548
- "\u280D\u2801",
549
- "\u288B\u2801",
550
- "\u284B\u2801",
551
- "\u280D\u2809",
552
- "\u280B\u2809",
553
- "\u280B\u2809",
554
- "\u2809\u2819",
555
- "\u2809\u2819",
556
- "\u2809\u2829",
557
- "\u2808\u2899",
558
- "\u2808\u2859",
559
- "\u2888\u2829",
560
- "\u2840\u2899",
561
- "\u2804\u2859",
562
- "\u2882\u2829",
563
- "\u2842\u2898",
564
- "\u2805\u2858",
565
- "\u2883\u2828",
566
- "\u2843\u2890",
567
- "\u280D\u2850",
568
- "\u288B\u2820",
569
- "\u284B\u2880",
570
- "\u280D\u2841",
571
- "\u288B\u2801",
572
- "\u284B\u2801",
573
- "\u280D\u2809",
574
- "\u280B\u2809",
575
- "\u280B\u2809",
576
- "\u2809\u2819",
577
- "\u2809\u2819",
578
- "\u2809\u2829",
579
- "\u2808\u2899",
580
- "\u2808\u2859",
581
- "\u2808\u2829",
582
- "\u2800\u2899",
583
- "\u2800\u2859",
584
- "\u2800\u2829",
585
- "\u2800\u2898",
586
- "\u2800\u2858",
587
- "\u2800\u2828",
588
- "\u2800\u2890",
589
- "\u2800\u2850",
590
- "\u2800\u2820",
591
- "\u2800\u2880",
592
- "\u2800\u2840"
593
- ]
594
- },
595
- dots13: {
596
- interval: 80,
597
- frames: [
598
- "\u28FC",
599
- "\u28F9",
600
- "\u28BB",
601
- "\u283F",
602
- "\u285F",
603
- "\u28CF",
604
- "\u28E7",
605
- "\u28F6"
606
- ]
607
- },
608
- dots8Bit: {
609
- interval: 80,
610
- frames: [
611
- "\u2800",
612
- "\u2801",
613
- "\u2802",
614
- "\u2803",
615
- "\u2804",
616
- "\u2805",
617
- "\u2806",
618
- "\u2807",
619
- "\u2840",
620
- "\u2841",
621
- "\u2842",
622
- "\u2843",
623
- "\u2844",
624
- "\u2845",
625
- "\u2846",
626
- "\u2847",
627
- "\u2808",
628
- "\u2809",
629
- "\u280A",
630
- "\u280B",
631
- "\u280C",
632
- "\u280D",
633
- "\u280E",
634
- "\u280F",
635
- "\u2848",
636
- "\u2849",
637
- "\u284A",
638
- "\u284B",
639
- "\u284C",
640
- "\u284D",
641
- "\u284E",
642
- "\u284F",
643
- "\u2810",
644
- "\u2811",
645
- "\u2812",
646
- "\u2813",
647
- "\u2814",
648
- "\u2815",
649
- "\u2816",
650
- "\u2817",
651
- "\u2850",
652
- "\u2851",
653
- "\u2852",
654
- "\u2853",
655
- "\u2854",
656
- "\u2855",
657
- "\u2856",
658
- "\u2857",
659
- "\u2818",
660
- "\u2819",
661
- "\u281A",
662
- "\u281B",
663
- "\u281C",
664
- "\u281D",
665
- "\u281E",
666
- "\u281F",
667
- "\u2858",
668
- "\u2859",
669
- "\u285A",
670
- "\u285B",
671
- "\u285C",
672
- "\u285D",
673
- "\u285E",
674
- "\u285F",
675
- "\u2820",
676
- "\u2821",
677
- "\u2822",
678
- "\u2823",
679
- "\u2824",
680
- "\u2825",
681
- "\u2826",
682
- "\u2827",
683
- "\u2860",
684
- "\u2861",
685
- "\u2862",
686
- "\u2863",
687
- "\u2864",
688
- "\u2865",
689
- "\u2866",
690
- "\u2867",
691
- "\u2828",
692
- "\u2829",
693
- "\u282A",
694
- "\u282B",
695
- "\u282C",
696
- "\u282D",
697
- "\u282E",
698
- "\u282F",
699
- "\u2868",
700
- "\u2869",
701
- "\u286A",
702
- "\u286B",
703
- "\u286C",
704
- "\u286D",
705
- "\u286E",
706
- "\u286F",
707
- "\u2830",
708
- "\u2831",
709
- "\u2832",
710
- "\u2833",
711
- "\u2834",
712
- "\u2835",
713
- "\u2836",
714
- "\u2837",
715
- "\u2870",
716
- "\u2871",
717
- "\u2872",
718
- "\u2873",
719
- "\u2874",
720
- "\u2875",
721
- "\u2876",
722
- "\u2877",
723
- "\u2838",
724
- "\u2839",
725
- "\u283A",
726
- "\u283B",
727
- "\u283C",
728
- "\u283D",
729
- "\u283E",
730
- "\u283F",
731
- "\u2878",
732
- "\u2879",
733
- "\u287A",
734
- "\u287B",
735
- "\u287C",
736
- "\u287D",
737
- "\u287E",
738
- "\u287F",
739
- "\u2880",
740
- "\u2881",
741
- "\u2882",
742
- "\u2883",
743
- "\u2884",
744
- "\u2885",
745
- "\u2886",
746
- "\u2887",
747
- "\u28C0",
748
- "\u28C1",
749
- "\u28C2",
750
- "\u28C3",
751
- "\u28C4",
752
- "\u28C5",
753
- "\u28C6",
754
- "\u28C7",
755
- "\u2888",
756
- "\u2889",
757
- "\u288A",
758
- "\u288B",
759
- "\u288C",
760
- "\u288D",
761
- "\u288E",
762
- "\u288F",
763
- "\u28C8",
764
- "\u28C9",
765
- "\u28CA",
766
- "\u28CB",
767
- "\u28CC",
768
- "\u28CD",
769
- "\u28CE",
770
- "\u28CF",
771
- "\u2890",
772
- "\u2891",
773
- "\u2892",
774
- "\u2893",
775
- "\u2894",
776
- "\u2895",
777
- "\u2896",
778
- "\u2897",
779
- "\u28D0",
780
- "\u28D1",
781
- "\u28D2",
782
- "\u28D3",
783
- "\u28D4",
784
- "\u28D5",
785
- "\u28D6",
786
- "\u28D7",
787
- "\u2898",
788
- "\u2899",
789
- "\u289A",
790
- "\u289B",
791
- "\u289C",
792
- "\u289D",
793
- "\u289E",
794
- "\u289F",
795
- "\u28D8",
796
- "\u28D9",
797
- "\u28DA",
798
- "\u28DB",
799
- "\u28DC",
800
- "\u28DD",
801
- "\u28DE",
802
- "\u28DF",
803
- "\u28A0",
804
- "\u28A1",
805
- "\u28A2",
806
- "\u28A3",
807
- "\u28A4",
808
- "\u28A5",
809
- "\u28A6",
810
- "\u28A7",
811
- "\u28E0",
812
- "\u28E1",
813
- "\u28E2",
814
- "\u28E3",
815
- "\u28E4",
816
- "\u28E5",
817
- "\u28E6",
818
- "\u28E7",
819
- "\u28A8",
820
- "\u28A9",
821
- "\u28AA",
822
- "\u28AB",
823
- "\u28AC",
824
- "\u28AD",
825
- "\u28AE",
826
- "\u28AF",
827
- "\u28E8",
828
- "\u28E9",
829
- "\u28EA",
830
- "\u28EB",
831
- "\u28EC",
832
- "\u28ED",
833
- "\u28EE",
834
- "\u28EF",
835
- "\u28B0",
836
- "\u28B1",
837
- "\u28B2",
838
- "\u28B3",
839
- "\u28B4",
840
- "\u28B5",
841
- "\u28B6",
842
- "\u28B7",
843
- "\u28F0",
844
- "\u28F1",
845
- "\u28F2",
846
- "\u28F3",
847
- "\u28F4",
848
- "\u28F5",
849
- "\u28F6",
850
- "\u28F7",
851
- "\u28B8",
852
- "\u28B9",
853
- "\u28BA",
854
- "\u28BB",
855
- "\u28BC",
856
- "\u28BD",
857
- "\u28BE",
858
- "\u28BF",
859
- "\u28F8",
860
- "\u28F9",
861
- "\u28FA",
862
- "\u28FB",
863
- "\u28FC",
864
- "\u28FD",
865
- "\u28FE",
866
- "\u28FF"
867
- ]
868
- },
869
- sand: {
870
- interval: 80,
871
- frames: [
872
- "\u2801",
873
- "\u2802",
874
- "\u2804",
875
- "\u2840",
876
- "\u2848",
877
- "\u2850",
878
- "\u2860",
879
- "\u28C0",
880
- "\u28C1",
881
- "\u28C2",
882
- "\u28C4",
883
- "\u28CC",
884
- "\u28D4",
885
- "\u28E4",
886
- "\u28E5",
887
- "\u28E6",
888
- "\u28EE",
889
- "\u28F6",
890
- "\u28F7",
891
- "\u28FF",
892
- "\u287F",
893
- "\u283F",
894
- "\u289F",
895
- "\u281F",
896
- "\u285B",
897
- "\u281B",
898
- "\u282B",
899
- "\u288B",
900
- "\u280B",
901
- "\u280D",
902
- "\u2849",
903
- "\u2809",
904
- "\u2811",
905
- "\u2821",
906
- "\u2881"
907
- ]
908
- },
909
- line: {
910
- interval: 130,
911
- frames: [
912
- "-",
913
- "\\",
914
- "|",
915
- "/"
916
- ]
917
- },
918
- line2: {
919
- interval: 100,
920
- frames: [
921
- "\u2802",
922
- "-",
923
- "\u2013",
924
- "\u2014",
925
- "\u2013",
926
- "-"
927
- ]
928
- },
929
- pipe: {
930
- interval: 100,
931
- frames: [
932
- "\u2524",
933
- "\u2518",
934
- "\u2534",
935
- "\u2514",
936
- "\u251C",
937
- "\u250C",
938
- "\u252C",
939
- "\u2510"
940
- ]
941
- },
942
- simpleDots: {
943
- interval: 400,
944
- frames: [
945
- ". ",
946
- ".. ",
947
- "...",
948
- " "
949
- ]
950
- },
951
- simpleDotsScrolling: {
952
- interval: 200,
953
- frames: [
954
- ". ",
955
- ".. ",
956
- "...",
957
- " ..",
958
- " .",
959
- " "
960
- ]
961
- },
962
- star: {
963
- interval: 70,
964
- frames: [
965
- "\u2736",
966
- "\u2738",
967
- "\u2739",
968
- "\u273A",
969
- "\u2739",
970
- "\u2737"
971
- ]
972
- },
973
- star2: {
974
- interval: 80,
975
- frames: [
976
- "+",
977
- "x",
978
- "*"
979
- ]
980
- },
981
- flip: {
982
- interval: 70,
983
- frames: [
984
- "_",
985
- "_",
986
- "_",
987
- "-",
988
- "`",
989
- "`",
990
- "'",
991
- "\xB4",
992
- "-",
993
- "_",
994
- "_",
995
- "_"
996
- ]
997
- },
998
- hamburger: {
999
- interval: 100,
1000
- frames: [
1001
- "\u2631",
1002
- "\u2632",
1003
- "\u2634"
1004
- ]
1005
- },
1006
- growVertical: {
1007
- interval: 120,
1008
- frames: [
1009
- "\u2581",
1010
- "\u2583",
1011
- "\u2584",
1012
- "\u2585",
1013
- "\u2586",
1014
- "\u2587",
1015
- "\u2586",
1016
- "\u2585",
1017
- "\u2584",
1018
- "\u2583"
1019
- ]
1020
- },
1021
- growHorizontal: {
1022
- interval: 120,
1023
- frames: [
1024
- "\u258F",
1025
- "\u258E",
1026
- "\u258D",
1027
- "\u258C",
1028
- "\u258B",
1029
- "\u258A",
1030
- "\u2589",
1031
- "\u258A",
1032
- "\u258B",
1033
- "\u258C",
1034
- "\u258D",
1035
- "\u258E"
1036
- ]
1037
- },
1038
- balloon: {
1039
- interval: 140,
1040
- frames: [
1041
- " ",
1042
- ".",
1043
- "o",
1044
- "O",
1045
- "@",
1046
- "*",
1047
- " "
1048
- ]
1049
- },
1050
- balloon2: {
1051
- interval: 120,
1052
- frames: [
1053
- ".",
1054
- "o",
1055
- "O",
1056
- "\xB0",
1057
- "O",
1058
- "o",
1059
- "."
1060
- ]
1061
- },
1062
- noise: {
1063
- interval: 100,
1064
- frames: [
1065
- "\u2593",
1066
- "\u2592",
1067
- "\u2591"
1068
- ]
1069
- },
1070
- bounce: {
1071
- interval: 120,
1072
- frames: [
1073
- "\u2801",
1074
- "\u2802",
1075
- "\u2804",
1076
- "\u2802"
1077
- ]
1078
- },
1079
- boxBounce: {
1080
- interval: 120,
1081
- frames: [
1082
- "\u2596",
1083
- "\u2598",
1084
- "\u259D",
1085
- "\u2597"
1086
- ]
1087
- },
1088
- boxBounce2: {
1089
- interval: 100,
1090
- frames: [
1091
- "\u258C",
1092
- "\u2580",
1093
- "\u2590",
1094
- "\u2584"
1095
- ]
1096
- },
1097
- triangle: {
1098
- interval: 50,
1099
- frames: [
1100
- "\u25E2",
1101
- "\u25E3",
1102
- "\u25E4",
1103
- "\u25E5"
1104
- ]
1105
- },
1106
- binary: {
1107
- interval: 80,
1108
- frames: [
1109
- "010010",
1110
- "001100",
1111
- "100101",
1112
- "111010",
1113
- "111101",
1114
- "010111",
1115
- "101011",
1116
- "111000",
1117
- "110011",
1118
- "110101"
1119
- ]
1120
- },
1121
- arc: {
1122
- interval: 100,
1123
- frames: [
1124
- "\u25DC",
1125
- "\u25E0",
1126
- "\u25DD",
1127
- "\u25DE",
1128
- "\u25E1",
1129
- "\u25DF"
1130
- ]
1131
- },
1132
- circle: {
1133
- interval: 120,
1134
- frames: [
1135
- "\u25E1",
1136
- "\u2299",
1137
- "\u25E0"
1138
- ]
1139
- },
1140
- squareCorners: {
1141
- interval: 180,
1142
- frames: [
1143
- "\u25F0",
1144
- "\u25F3",
1145
- "\u25F2",
1146
- "\u25F1"
1147
- ]
1148
- },
1149
- circleQuarters: {
1150
- interval: 120,
1151
- frames: [
1152
- "\u25F4",
1153
- "\u25F7",
1154
- "\u25F6",
1155
- "\u25F5"
1156
- ]
1157
- },
1158
- circleHalves: {
1159
- interval: 50,
1160
- frames: [
1161
- "\u25D0",
1162
- "\u25D3",
1163
- "\u25D1",
1164
- "\u25D2"
1165
- ]
1166
- },
1167
- squish: {
1168
- interval: 100,
1169
- frames: [
1170
- "\u256B",
1171
- "\u256A"
1172
- ]
1173
- },
1174
- toggle: {
1175
- interval: 250,
1176
- frames: [
1177
- "\u22B6",
1178
- "\u22B7"
1179
- ]
1180
- },
1181
- toggle2: {
1182
- interval: 80,
1183
- frames: [
1184
- "\u25AB",
1185
- "\u25AA"
1186
- ]
1187
- },
1188
- toggle3: {
1189
- interval: 120,
1190
- frames: [
1191
- "\u25A1",
1192
- "\u25A0"
1193
- ]
1194
- },
1195
- toggle4: {
1196
- interval: 100,
1197
- frames: [
1198
- "\u25A0",
1199
- "\u25A1",
1200
- "\u25AA",
1201
- "\u25AB"
1202
- ]
1203
- },
1204
- toggle5: {
1205
- interval: 100,
1206
- frames: [
1207
- "\u25AE",
1208
- "\u25AF"
1209
- ]
1210
- },
1211
- toggle6: {
1212
- interval: 300,
1213
- frames: [
1214
- "\u101D",
1215
- "\u1040"
1216
- ]
1217
- },
1218
- toggle7: {
1219
- interval: 80,
1220
- frames: [
1221
- "\u29BE",
1222
- "\u29BF"
1223
- ]
1224
- },
1225
- toggle8: {
1226
- interval: 100,
1227
- frames: [
1228
- "\u25CD",
1229
- "\u25CC"
1230
- ]
1231
- },
1232
- toggle9: {
1233
- interval: 100,
1234
- frames: [
1235
- "\u25C9",
1236
- "\u25CE"
1237
- ]
1238
- },
1239
- toggle10: {
1240
- interval: 100,
1241
- frames: [
1242
- "\u3282",
1243
- "\u3280",
1244
- "\u3281"
1245
- ]
1246
- },
1247
- toggle11: {
1248
- interval: 50,
1249
- frames: [
1250
- "\u29C7",
1251
- "\u29C6"
1252
- ]
1253
- },
1254
- toggle12: {
1255
- interval: 120,
1256
- frames: [
1257
- "\u2617",
1258
- "\u2616"
1259
- ]
1260
- },
1261
- toggle13: {
1262
- interval: 80,
1263
- frames: [
1264
- "=",
1265
- "*",
1266
- "-"
1267
- ]
1268
- },
1269
- arrow: {
1270
- interval: 100,
1271
- frames: [
1272
- "\u2190",
1273
- "\u2196",
1274
- "\u2191",
1275
- "\u2197",
1276
- "\u2192",
1277
- "\u2198",
1278
- "\u2193",
1279
- "\u2199"
1280
- ]
1281
- },
1282
- arrow2: {
1283
- interval: 80,
1284
- frames: [
1285
- "\u2B06\uFE0F ",
1286
- "\u2197\uFE0F ",
1287
- "\u27A1\uFE0F ",
1288
- "\u2198\uFE0F ",
1289
- "\u2B07\uFE0F ",
1290
- "\u2199\uFE0F ",
1291
- "\u2B05\uFE0F ",
1292
- "\u2196\uFE0F "
1293
- ]
1294
- },
1295
- arrow3: {
1296
- interval: 120,
1297
- frames: [
1298
- "\u25B9\u25B9\u25B9\u25B9\u25B9",
1299
- "\u25B8\u25B9\u25B9\u25B9\u25B9",
1300
- "\u25B9\u25B8\u25B9\u25B9\u25B9",
1301
- "\u25B9\u25B9\u25B8\u25B9\u25B9",
1302
- "\u25B9\u25B9\u25B9\u25B8\u25B9",
1303
- "\u25B9\u25B9\u25B9\u25B9\u25B8"
1304
- ]
1305
- },
1306
- bouncingBar: {
1307
- interval: 80,
1308
- frames: [
1309
- "[ ]",
1310
- "[= ]",
1311
- "[== ]",
1312
- "[=== ]",
1313
- "[====]",
1314
- "[ ===]",
1315
- "[ ==]",
1316
- "[ =]",
1317
- "[ ]",
1318
- "[ =]",
1319
- "[ ==]",
1320
- "[ ===]",
1321
- "[====]",
1322
- "[=== ]",
1323
- "[== ]",
1324
- "[= ]"
1325
- ]
1326
- },
1327
- bouncingBall: {
1328
- interval: 80,
1329
- frames: [
1330
- "( \u25CF )",
1331
- "( \u25CF )",
1332
- "( \u25CF )",
1333
- "( \u25CF )",
1334
- "( \u25CF)",
1335
- "( \u25CF )",
1336
- "( \u25CF )",
1337
- "( \u25CF )",
1338
- "( \u25CF )",
1339
- "(\u25CF )"
1340
- ]
1341
- },
1342
- smiley: {
1343
- interval: 200,
1344
- frames: [
1345
- "\u{1F604} ",
1346
- "\u{1F61D} "
1347
- ]
1348
- },
1349
- monkey: {
1350
- interval: 300,
1351
- frames: [
1352
- "\u{1F648} ",
1353
- "\u{1F648} ",
1354
- "\u{1F649} ",
1355
- "\u{1F64A} "
1356
- ]
1357
- },
1358
- hearts: {
1359
- interval: 100,
1360
- frames: [
1361
- "\u{1F49B} ",
1362
- "\u{1F499} ",
1363
- "\u{1F49C} ",
1364
- "\u{1F49A} ",
1365
- "\u2764\uFE0F "
1366
- ]
1367
- },
1368
- clock: {
1369
- interval: 100,
1370
- frames: [
1371
- "\u{1F55B} ",
1372
- "\u{1F550} ",
1373
- "\u{1F551} ",
1374
- "\u{1F552} ",
1375
- "\u{1F553} ",
1376
- "\u{1F554} ",
1377
- "\u{1F555} ",
1378
- "\u{1F556} ",
1379
- "\u{1F557} ",
1380
- "\u{1F558} ",
1381
- "\u{1F559} ",
1382
- "\u{1F55A} "
1383
- ]
1384
- },
1385
- earth: {
1386
- interval: 180,
1387
- frames: [
1388
- "\u{1F30D} ",
1389
- "\u{1F30E} ",
1390
- "\u{1F30F} "
1391
- ]
1392
- },
1393
- material: {
1394
- interval: 17,
1395
- frames: [
1396
- "\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
1397
- "\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
1398
- "\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
1399
- "\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
1400
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
1401
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
1402
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
1403
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
1404
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
1405
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
1406
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
1407
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
1408
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
1409
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581",
1410
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581",
1411
- "\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581",
1412
- "\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581",
1413
- "\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581",
1414
- "\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581",
1415
- "\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581",
1416
- "\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581",
1417
- "\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581",
1418
- "\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581",
1419
- "\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581",
1420
- "\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581",
1421
- "\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581",
1422
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
1423
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
1424
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
1425
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
1426
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
1427
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
1428
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
1429
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
1430
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
1431
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
1432
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
1433
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
1434
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588",
1435
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588",
1436
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588",
1437
- "\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588",
1438
- "\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588",
1439
- "\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588",
1440
- "\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588",
1441
- "\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588",
1442
- "\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588",
1443
- "\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588",
1444
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588",
1445
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
1446
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
1447
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
1448
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
1449
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
1450
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
1451
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
1452
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
1453
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581",
1454
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581",
1455
- "\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581",
1456
- "\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581",
1457
- "\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581",
1458
- "\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581",
1459
- "\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581",
1460
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581",
1461
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581",
1462
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581",
1463
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581",
1464
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581",
1465
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581",
1466
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581",
1467
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581",
1468
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581",
1469
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581",
1470
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
1471
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
1472
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588",
1473
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588",
1474
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588",
1475
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588",
1476
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588",
1477
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588",
1478
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588",
1479
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588",
1480
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588",
1481
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588",
1482
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588",
1483
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588",
1484
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
1485
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
1486
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
1487
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581"
1488
- ]
1489
- },
1490
- moon: {
1491
- interval: 80,
1492
- frames: [
1493
- "\u{1F311} ",
1494
- "\u{1F312} ",
1495
- "\u{1F313} ",
1496
- "\u{1F314} ",
1497
- "\u{1F315} ",
1498
- "\u{1F316} ",
1499
- "\u{1F317} ",
1500
- "\u{1F318} "
1501
- ]
1502
- },
1503
- runner: {
1504
- interval: 140,
1505
- frames: [
1506
- "\u{1F6B6} ",
1507
- "\u{1F3C3} "
1508
- ]
1509
- },
1510
- pong: {
1511
- interval: 80,
1512
- frames: [
1513
- "\u2590\u2802 \u258C",
1514
- "\u2590\u2808 \u258C",
1515
- "\u2590 \u2802 \u258C",
1516
- "\u2590 \u2820 \u258C",
1517
- "\u2590 \u2840 \u258C",
1518
- "\u2590 \u2820 \u258C",
1519
- "\u2590 \u2802 \u258C",
1520
- "\u2590 \u2808 \u258C",
1521
- "\u2590 \u2802 \u258C",
1522
- "\u2590 \u2820 \u258C",
1523
- "\u2590 \u2840 \u258C",
1524
- "\u2590 \u2820 \u258C",
1525
- "\u2590 \u2802 \u258C",
1526
- "\u2590 \u2808 \u258C",
1527
- "\u2590 \u2802\u258C",
1528
- "\u2590 \u2820\u258C",
1529
- "\u2590 \u2840\u258C",
1530
- "\u2590 \u2820 \u258C",
1531
- "\u2590 \u2802 \u258C",
1532
- "\u2590 \u2808 \u258C",
1533
- "\u2590 \u2802 \u258C",
1534
- "\u2590 \u2820 \u258C",
1535
- "\u2590 \u2840 \u258C",
1536
- "\u2590 \u2820 \u258C",
1537
- "\u2590 \u2802 \u258C",
1538
- "\u2590 \u2808 \u258C",
1539
- "\u2590 \u2802 \u258C",
1540
- "\u2590 \u2820 \u258C",
1541
- "\u2590 \u2840 \u258C",
1542
- "\u2590\u2820 \u258C"
1543
- ]
1544
- },
1545
- shark: {
1546
- interval: 120,
1547
- frames: [
1548
- "\u2590|\\____________\u258C",
1549
- "\u2590_|\\___________\u258C",
1550
- "\u2590__|\\__________\u258C",
1551
- "\u2590___|\\_________\u258C",
1552
- "\u2590____|\\________\u258C",
1553
- "\u2590_____|\\_______\u258C",
1554
- "\u2590______|\\______\u258C",
1555
- "\u2590_______|\\_____\u258C",
1556
- "\u2590________|\\____\u258C",
1557
- "\u2590_________|\\___\u258C",
1558
- "\u2590__________|\\__\u258C",
1559
- "\u2590___________|\\_\u258C",
1560
- "\u2590____________|\\\u258C",
1561
- "\u2590____________/|\u258C",
1562
- "\u2590___________/|_\u258C",
1563
- "\u2590__________/|__\u258C",
1564
- "\u2590_________/|___\u258C",
1565
- "\u2590________/|____\u258C",
1566
- "\u2590_______/|_____\u258C",
1567
- "\u2590______/|______\u258C",
1568
- "\u2590_____/|_______\u258C",
1569
- "\u2590____/|________\u258C",
1570
- "\u2590___/|_________\u258C",
1571
- "\u2590__/|__________\u258C",
1572
- "\u2590_/|___________\u258C",
1573
- "\u2590/|____________\u258C"
1574
- ]
1575
- },
1576
- dqpb: {
1577
- interval: 100,
1578
- frames: [
1579
- "d",
1580
- "q",
1581
- "p",
1582
- "b"
1583
- ]
1584
- },
1585
- weather: {
1586
- interval: 100,
1587
- frames: [
1588
- "\u2600\uFE0F ",
1589
- "\u2600\uFE0F ",
1590
- "\u2600\uFE0F ",
1591
- "\u{1F324} ",
1592
- "\u26C5\uFE0F ",
1593
- "\u{1F325} ",
1594
- "\u2601\uFE0F ",
1595
- "\u{1F327} ",
1596
- "\u{1F328} ",
1597
- "\u{1F327} ",
1598
- "\u{1F328} ",
1599
- "\u{1F327} ",
1600
- "\u{1F328} ",
1601
- "\u26C8 ",
1602
- "\u{1F328} ",
1603
- "\u{1F327} ",
1604
- "\u{1F328} ",
1605
- "\u2601\uFE0F ",
1606
- "\u{1F325} ",
1607
- "\u26C5\uFE0F ",
1608
- "\u{1F324} ",
1609
- "\u2600\uFE0F ",
1610
- "\u2600\uFE0F "
1611
- ]
1612
- },
1613
- christmas: {
1614
- interval: 400,
1615
- frames: [
1616
- "\u{1F332}",
1617
- "\u{1F384}"
1618
- ]
1619
- },
1620
- grenade: {
1621
- interval: 80,
1622
- frames: [
1623
- "\u060C ",
1624
- "\u2032 ",
1625
- " \xB4 ",
1626
- " \u203E ",
1627
- " \u2E0C",
1628
- " \u2E0A",
1629
- " |",
1630
- " \u204E",
1631
- " \u2055",
1632
- " \u0DF4 ",
1633
- " \u2053",
1634
- " ",
1635
- " ",
1636
- " "
1637
- ]
1638
- },
1639
- point: {
1640
- interval: 125,
1641
- frames: [
1642
- "\u2219\u2219\u2219",
1643
- "\u25CF\u2219\u2219",
1644
- "\u2219\u25CF\u2219",
1645
- "\u2219\u2219\u25CF",
1646
- "\u2219\u2219\u2219"
1647
- ]
1648
- },
1649
- layer: {
1650
- interval: 150,
1651
- frames: [
1652
- "-",
1653
- "=",
1654
- "\u2261"
1655
- ]
1656
- },
1657
- betaWave: {
1658
- interval: 80,
1659
- frames: [
1660
- "\u03C1\u03B2\u03B2\u03B2\u03B2\u03B2\u03B2",
1661
- "\u03B2\u03C1\u03B2\u03B2\u03B2\u03B2\u03B2",
1662
- "\u03B2\u03B2\u03C1\u03B2\u03B2\u03B2\u03B2",
1663
- "\u03B2\u03B2\u03B2\u03C1\u03B2\u03B2\u03B2",
1664
- "\u03B2\u03B2\u03B2\u03B2\u03C1\u03B2\u03B2",
1665
- "\u03B2\u03B2\u03B2\u03B2\u03B2\u03C1\u03B2",
1666
- "\u03B2\u03B2\u03B2\u03B2\u03B2\u03B2\u03C1"
1667
- ]
1668
- },
1669
- fingerDance: {
1670
- interval: 160,
1671
- frames: [
1672
- "\u{1F918} ",
1673
- "\u{1F91F} ",
1674
- "\u{1F596} ",
1675
- "\u270B ",
1676
- "\u{1F91A} ",
1677
- "\u{1F446} "
1678
- ]
1679
- },
1680
- fistBump: {
1681
- interval: 80,
1682
- frames: [
1683
- "\u{1F91C}\u3000\u3000\u3000\u3000\u{1F91B} ",
1684
- "\u{1F91C}\u3000\u3000\u3000\u3000\u{1F91B} ",
1685
- "\u{1F91C}\u3000\u3000\u3000\u3000\u{1F91B} ",
1686
- "\u3000\u{1F91C}\u3000\u3000\u{1F91B}\u3000 ",
1687
- "\u3000\u3000\u{1F91C}\u{1F91B}\u3000\u3000 ",
1688
- "\u3000\u{1F91C}\u2728\u{1F91B}\u3000\u3000 ",
1689
- "\u{1F91C}\u3000\u2728\u3000\u{1F91B}\u3000 "
1690
- ]
1691
- },
1692
- soccerHeader: {
1693
- interval: 80,
1694
- frames: [
1695
- " \u{1F9D1}\u26BD\uFE0F \u{1F9D1} ",
1696
- "\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ",
1697
- "\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ",
1698
- "\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ",
1699
- "\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ",
1700
- "\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ",
1701
- "\u{1F9D1} \u26BD\uFE0F\u{1F9D1} ",
1702
- "\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ",
1703
- "\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ",
1704
- "\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ",
1705
- "\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ",
1706
- "\u{1F9D1} \u26BD\uFE0F \u{1F9D1} "
1707
- ]
1708
- },
1709
- mindblown: {
1710
- interval: 160,
1711
- frames: [
1712
- "\u{1F610} ",
1713
- "\u{1F610} ",
1714
- "\u{1F62E} ",
1715
- "\u{1F62E} ",
1716
- "\u{1F626} ",
1717
- "\u{1F626} ",
1718
- "\u{1F627} ",
1719
- "\u{1F627} ",
1720
- "\u{1F92F} ",
1721
- "\u{1F4A5} ",
1722
- "\u2728 ",
1723
- "\u3000 ",
1724
- "\u3000 ",
1725
- "\u3000 "
1726
- ]
1727
- },
1728
- speaker: {
1729
- interval: 160,
1730
- frames: [
1731
- "\u{1F508} ",
1732
- "\u{1F509} ",
1733
- "\u{1F50A} ",
1734
- "\u{1F509} "
1735
- ]
1736
- },
1737
- orangePulse: {
1738
- interval: 100,
1739
- frames: [
1740
- "\u{1F538} ",
1741
- "\u{1F536} ",
1742
- "\u{1F7E0} ",
1743
- "\u{1F7E0} ",
1744
- "\u{1F536} "
1745
- ]
1746
- },
1747
- bluePulse: {
1748
- interval: 100,
1749
- frames: [
1750
- "\u{1F539} ",
1751
- "\u{1F537} ",
1752
- "\u{1F535} ",
1753
- "\u{1F535} ",
1754
- "\u{1F537} "
1755
- ]
1756
- },
1757
- orangeBluePulse: {
1758
- interval: 100,
1759
- frames: [
1760
- "\u{1F538} ",
1761
- "\u{1F536} ",
1762
- "\u{1F7E0} ",
1763
- "\u{1F7E0} ",
1764
- "\u{1F536} ",
1765
- "\u{1F539} ",
1766
- "\u{1F537} ",
1767
- "\u{1F535} ",
1768
- "\u{1F535} ",
1769
- "\u{1F537} "
1770
- ]
1771
- },
1772
- timeTravel: {
1773
- interval: 100,
1774
- frames: [
1775
- "\u{1F55B} ",
1776
- "\u{1F55A} ",
1777
- "\u{1F559} ",
1778
- "\u{1F558} ",
1779
- "\u{1F557} ",
1780
- "\u{1F556} ",
1781
- "\u{1F555} ",
1782
- "\u{1F554} ",
1783
- "\u{1F553} ",
1784
- "\u{1F552} ",
1785
- "\u{1F551} ",
1786
- "\u{1F550} "
1787
- ]
1788
- },
1789
- aesthetic: {
1790
- interval: 80,
1791
- frames: [
1792
- "\u25B0\u25B1\u25B1\u25B1\u25B1\u25B1\u25B1",
1793
- "\u25B0\u25B0\u25B1\u25B1\u25B1\u25B1\u25B1",
1794
- "\u25B0\u25B0\u25B0\u25B1\u25B1\u25B1\u25B1",
1795
- "\u25B0\u25B0\u25B0\u25B0\u25B1\u25B1\u25B1",
1796
- "\u25B0\u25B0\u25B0\u25B0\u25B0\u25B1\u25B1",
1797
- "\u25B0\u25B0\u25B0\u25B0\u25B0\u25B0\u25B1",
1798
- "\u25B0\u25B0\u25B0\u25B0\u25B0\u25B0\u25B0",
1799
- "\u25B0\u25B1\u25B1\u25B1\u25B1\u25B1\u25B1"
1800
- ]
1801
- },
1802
- dwarfFortress: {
1803
- interval: 80,
1804
- frames: [
1805
- " \u2588\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1806
- "\u263A\u2588\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1807
- "\u263A\u2588\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1808
- "\u263A\u2593\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1809
- "\u263A\u2593\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1810
- "\u263A\u2592\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1811
- "\u263A\u2592\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1812
- "\u263A\u2591\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1813
- "\u263A\u2591\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1814
- "\u263A \u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1815
- " \u263A\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1816
- " \u263A\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1817
- " \u263A\u2593\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1818
- " \u263A\u2593\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1819
- " \u263A\u2592\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1820
- " \u263A\u2592\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1821
- " \u263A\u2591\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1822
- " \u263A\u2591\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1823
- " \u263A \u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1824
- " \u263A\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1825
- " \u263A\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1826
- " \u263A\u2593\u2588\u2588\u2588\xA3\xA3\xA3 ",
1827
- " \u263A\u2593\u2588\u2588\u2588\xA3\xA3\xA3 ",
1828
- " \u263A\u2592\u2588\u2588\u2588\xA3\xA3\xA3 ",
1829
- " \u263A\u2592\u2588\u2588\u2588\xA3\xA3\xA3 ",
1830
- " \u263A\u2591\u2588\u2588\u2588\xA3\xA3\xA3 ",
1831
- " \u263A\u2591\u2588\u2588\u2588\xA3\xA3\xA3 ",
1832
- " \u263A \u2588\u2588\u2588\xA3\xA3\xA3 ",
1833
- " \u263A\u2588\u2588\u2588\xA3\xA3\xA3 ",
1834
- " \u263A\u2588\u2588\u2588\xA3\xA3\xA3 ",
1835
- " \u263A\u2593\u2588\u2588\xA3\xA3\xA3 ",
1836
- " \u263A\u2593\u2588\u2588\xA3\xA3\xA3 ",
1837
- " \u263A\u2592\u2588\u2588\xA3\xA3\xA3 ",
1838
- " \u263A\u2592\u2588\u2588\xA3\xA3\xA3 ",
1839
- " \u263A\u2591\u2588\u2588\xA3\xA3\xA3 ",
1840
- " \u263A\u2591\u2588\u2588\xA3\xA3\xA3 ",
1841
- " \u263A \u2588\u2588\xA3\xA3\xA3 ",
1842
- " \u263A\u2588\u2588\xA3\xA3\xA3 ",
1843
- " \u263A\u2588\u2588\xA3\xA3\xA3 ",
1844
- " \u263A\u2593\u2588\xA3\xA3\xA3 ",
1845
- " \u263A\u2593\u2588\xA3\xA3\xA3 ",
1846
- " \u263A\u2592\u2588\xA3\xA3\xA3 ",
1847
- " \u263A\u2592\u2588\xA3\xA3\xA3 ",
1848
- " \u263A\u2591\u2588\xA3\xA3\xA3 ",
1849
- " \u263A\u2591\u2588\xA3\xA3\xA3 ",
1850
- " \u263A \u2588\xA3\xA3\xA3 ",
1851
- " \u263A\u2588\xA3\xA3\xA3 ",
1852
- " \u263A\u2588\xA3\xA3\xA3 ",
1853
- " \u263A\u2593\xA3\xA3\xA3 ",
1854
- " \u263A\u2593\xA3\xA3\xA3 ",
1855
- " \u263A\u2592\xA3\xA3\xA3 ",
1856
- " \u263A\u2592\xA3\xA3\xA3 ",
1857
- " \u263A\u2591\xA3\xA3\xA3 ",
1858
- " \u263A\u2591\xA3\xA3\xA3 ",
1859
- " \u263A \xA3\xA3\xA3 ",
1860
- " \u263A\xA3\xA3\xA3 ",
1861
- " \u263A\xA3\xA3\xA3 ",
1862
- " \u263A\u2593\xA3\xA3 ",
1863
- " \u263A\u2593\xA3\xA3 ",
1864
- " \u263A\u2592\xA3\xA3 ",
1865
- " \u263A\u2592\xA3\xA3 ",
1866
- " \u263A\u2591\xA3\xA3 ",
1867
- " \u263A\u2591\xA3\xA3 ",
1868
- " \u263A \xA3\xA3 ",
1869
- " \u263A\xA3\xA3 ",
1870
- " \u263A\xA3\xA3 ",
1871
- " \u263A\u2593\xA3 ",
1872
- " \u263A\u2593\xA3 ",
1873
- " \u263A\u2592\xA3 ",
1874
- " \u263A\u2592\xA3 ",
1875
- " \u263A\u2591\xA3 ",
1876
- " \u263A\u2591\xA3 ",
1877
- " \u263A \xA3 ",
1878
- " \u263A\xA3 ",
1879
- " \u263A\xA3 ",
1880
- " \u263A\u2593 ",
1881
- " \u263A\u2593 ",
1882
- " \u263A\u2592 ",
1883
- " \u263A\u2592 ",
1884
- " \u263A\u2591 ",
1885
- " \u263A\u2591 ",
1886
- " \u263A ",
1887
- " \u263A &",
1888
- " \u263A \u263C&",
1889
- " \u263A \u263C &",
1890
- " \u263A\u263C &",
1891
- " \u263A\u263C & ",
1892
- " \u203C & ",
1893
- " \u263A & ",
1894
- " \u203C & ",
1895
- " \u263A & ",
1896
- " \u203C & ",
1897
- " \u263A & ",
1898
- "\u203C & ",
1899
- " & ",
1900
- " & ",
1901
- " & \u2591 ",
1902
- " & \u2592 ",
1903
- " & \u2593 ",
1904
- " & \xA3 ",
1905
- " & \u2591\xA3 ",
1906
- " & \u2592\xA3 ",
1907
- " & \u2593\xA3 ",
1908
- " & \xA3\xA3 ",
1909
- " & \u2591\xA3\xA3 ",
1910
- " & \u2592\xA3\xA3 ",
1911
- "& \u2593\xA3\xA3 ",
1912
- "& \xA3\xA3\xA3 ",
1913
- " \u2591\xA3\xA3\xA3 ",
1914
- " \u2592\xA3\xA3\xA3 ",
1915
- " \u2593\xA3\xA3\xA3 ",
1916
- " \u2588\xA3\xA3\xA3 ",
1917
- " \u2591\u2588\xA3\xA3\xA3 ",
1918
- " \u2592\u2588\xA3\xA3\xA3 ",
1919
- " \u2593\u2588\xA3\xA3\xA3 ",
1920
- " \u2588\u2588\xA3\xA3\xA3 ",
1921
- " \u2591\u2588\u2588\xA3\xA3\xA3 ",
1922
- " \u2592\u2588\u2588\xA3\xA3\xA3 ",
1923
- " \u2593\u2588\u2588\xA3\xA3\xA3 ",
1924
- " \u2588\u2588\u2588\xA3\xA3\xA3 ",
1925
- " \u2591\u2588\u2588\u2588\xA3\xA3\xA3 ",
1926
- " \u2592\u2588\u2588\u2588\xA3\xA3\xA3 ",
1927
- " \u2593\u2588\u2588\u2588\xA3\xA3\xA3 ",
1928
- " \u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1929
- " \u2591\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1930
- " \u2592\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1931
- " \u2593\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1932
- " \u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1933
- " \u2591\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1934
- " \u2592\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1935
- " \u2593\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1936
- " \u2588\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
1937
- " \u2588\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "
1938
- ]
1939
- }
1940
- };
1941
- }
1942
- });
1943
-
1944
- // ../../node_modules/.pnpm/cli-spinners@2.9.2/node_modules/cli-spinners/index.js
1945
- var require_cli_spinners = __commonJS({
1946
- "../../node_modules/.pnpm/cli-spinners@2.9.2/node_modules/cli-spinners/index.js"(exports, module) {
1947
- "use strict";
1948
- init_cjs_shims();
1949
- var spinners = Object.assign({}, require_spinners());
1950
- var spinnersList = Object.keys(spinners);
1951
- Object.defineProperty(spinners, "random", {
1952
- get() {
1953
- const randomIndex = Math.floor(Math.random() * spinnersList.length);
1954
- const spinnerName = spinnersList[randomIndex];
1955
- return spinners[spinnerName];
1956
- }
1957
- });
1958
- module.exports = spinners;
1959
- }
1960
- });
1961
-
1962
53
  // ../../node_modules/.pnpm/isexe@2.0.0/node_modules/isexe/windows.js
1963
54
  var require_windows = __commonJS({
1964
55
  "../../node_modules/.pnpm/isexe@2.0.0/node_modules/isexe/windows.js"(exports, module) {
@@ -2218,7 +309,7 @@ var require_resolveCommand = __commonJS({
2218
309
  var which = require_which();
2219
310
  var getPathKey = require_path_key();
2220
311
  function resolveCommandAttempt(parsed, withoutPathExt) {
2221
- const env2 = parsed.options.env || process.env;
312
+ const env = parsed.options.env || process.env;
2222
313
  const cwd = process.cwd();
2223
314
  const hasCustomCwd = parsed.options.cwd != null;
2224
315
  const shouldSwitchCwd = hasCustomCwd && process.chdir !== void 0 && !process.chdir.disabled;
@@ -2231,7 +322,7 @@ var require_resolveCommand = __commonJS({
2231
322
  let resolved;
2232
323
  try {
2233
324
  resolved = which.sync(parsed.command, {
2234
- path: env2[getPathKey({ env: env2 })],
325
+ path: env[getPathKey({ env })],
2235
326
  pathExt: withoutPathExt ? path6.delimiter : void 0
2236
327
  });
2237
328
  } catch (e) {
@@ -2560,1060 +651,6 @@ function p(n2 = false) {
2560
651
  var _tty = require('tty'); var _tty2 = _interopRequireDefault(_tty);
2561
652
  var p2 = p(_tty.isatty.call(void 0, 1));
2562
653
 
2563
- // src/utils/spinner.ts
2564
- init_cjs_shims();
2565
-
2566
- // ../../node_modules/.pnpm/ora@8.0.1/node_modules/ora/index.js
2567
- init_cjs_shims();
2568
- var _process2 = require('process'); var _process3 = _interopRequireDefault(_process2);
2569
-
2570
- // ../../node_modules/.pnpm/chalk@5.3.0/node_modules/chalk/source/index.js
2571
- init_cjs_shims();
2572
-
2573
- // ../../node_modules/.pnpm/chalk@5.3.0/node_modules/chalk/source/vendor/ansi-styles/index.js
2574
- init_cjs_shims();
2575
- var ANSI_BACKGROUND_OFFSET = 10;
2576
- var wrapAnsi16 = (offset = 0) => (code) => `\x1B[${code + offset}m`;
2577
- var wrapAnsi256 = (offset = 0) => (code) => `\x1B[${38 + offset};5;${code}m`;
2578
- var wrapAnsi16m = (offset = 0) => (red2, green2, blue2) => `\x1B[${38 + offset};2;${red2};${green2};${blue2}m`;
2579
- var styles = {
2580
- modifier: {
2581
- reset: [0, 0],
2582
- // 21 isn't widely supported and 22 does the same thing
2583
- bold: [1, 22],
2584
- dim: [2, 22],
2585
- italic: [3, 23],
2586
- underline: [4, 24],
2587
- overline: [53, 55],
2588
- inverse: [7, 27],
2589
- hidden: [8, 28],
2590
- strikethrough: [9, 29]
2591
- },
2592
- color: {
2593
- black: [30, 39],
2594
- red: [31, 39],
2595
- green: [32, 39],
2596
- yellow: [33, 39],
2597
- blue: [34, 39],
2598
- magenta: [35, 39],
2599
- cyan: [36, 39],
2600
- white: [37, 39],
2601
- // Bright color
2602
- blackBright: [90, 39],
2603
- gray: [90, 39],
2604
- // Alias of `blackBright`
2605
- grey: [90, 39],
2606
- // Alias of `blackBright`
2607
- redBright: [91, 39],
2608
- greenBright: [92, 39],
2609
- yellowBright: [93, 39],
2610
- blueBright: [94, 39],
2611
- magentaBright: [95, 39],
2612
- cyanBright: [96, 39],
2613
- whiteBright: [97, 39]
2614
- },
2615
- bgColor: {
2616
- bgBlack: [40, 49],
2617
- bgRed: [41, 49],
2618
- bgGreen: [42, 49],
2619
- bgYellow: [43, 49],
2620
- bgBlue: [44, 49],
2621
- bgMagenta: [45, 49],
2622
- bgCyan: [46, 49],
2623
- bgWhite: [47, 49],
2624
- // Bright color
2625
- bgBlackBright: [100, 49],
2626
- bgGray: [100, 49],
2627
- // Alias of `bgBlackBright`
2628
- bgGrey: [100, 49],
2629
- // Alias of `bgBlackBright`
2630
- bgRedBright: [101, 49],
2631
- bgGreenBright: [102, 49],
2632
- bgYellowBright: [103, 49],
2633
- bgBlueBright: [104, 49],
2634
- bgMagentaBright: [105, 49],
2635
- bgCyanBright: [106, 49],
2636
- bgWhiteBright: [107, 49]
2637
- }
2638
- };
2639
- var modifierNames = Object.keys(styles.modifier);
2640
- var foregroundColorNames = Object.keys(styles.color);
2641
- var backgroundColorNames = Object.keys(styles.bgColor);
2642
- var colorNames = [...foregroundColorNames, ...backgroundColorNames];
2643
- function assembleStyles() {
2644
- const codes = /* @__PURE__ */ new Map();
2645
- for (const [groupName, group] of Object.entries(styles)) {
2646
- for (const [styleName, style] of Object.entries(group)) {
2647
- styles[styleName] = {
2648
- open: `\x1B[${style[0]}m`,
2649
- close: `\x1B[${style[1]}m`
2650
- };
2651
- group[styleName] = styles[styleName];
2652
- codes.set(style[0], style[1]);
2653
- }
2654
- Object.defineProperty(styles, groupName, {
2655
- value: group,
2656
- enumerable: false
2657
- });
2658
- }
2659
- Object.defineProperty(styles, "codes", {
2660
- value: codes,
2661
- enumerable: false
2662
- });
2663
- styles.color.close = "\x1B[39m";
2664
- styles.bgColor.close = "\x1B[49m";
2665
- styles.color.ansi = wrapAnsi16();
2666
- styles.color.ansi256 = wrapAnsi256();
2667
- styles.color.ansi16m = wrapAnsi16m();
2668
- styles.bgColor.ansi = wrapAnsi16(ANSI_BACKGROUND_OFFSET);
2669
- styles.bgColor.ansi256 = wrapAnsi256(ANSI_BACKGROUND_OFFSET);
2670
- styles.bgColor.ansi16m = wrapAnsi16m(ANSI_BACKGROUND_OFFSET);
2671
- Object.defineProperties(styles, {
2672
- rgbToAnsi256: {
2673
- value(red2, green2, blue2) {
2674
- if (red2 === green2 && green2 === blue2) {
2675
- if (red2 < 8) {
2676
- return 16;
2677
- }
2678
- if (red2 > 248) {
2679
- return 231;
2680
- }
2681
- return Math.round((red2 - 8) / 247 * 24) + 232;
2682
- }
2683
- return 16 + 36 * Math.round(red2 / 255 * 5) + 6 * Math.round(green2 / 255 * 5) + Math.round(blue2 / 255 * 5);
2684
- },
2685
- enumerable: false
2686
- },
2687
- hexToRgb: {
2688
- value(hex) {
2689
- const matches = /[a-f\d]{6}|[a-f\d]{3}/i.exec(hex.toString(16));
2690
- if (!matches) {
2691
- return [0, 0, 0];
2692
- }
2693
- let [colorString] = matches;
2694
- if (colorString.length === 3) {
2695
- colorString = [...colorString].map((character) => character + character).join("");
2696
- }
2697
- const integer = Number.parseInt(colorString, 16);
2698
- return [
2699
- /* eslint-disable no-bitwise */
2700
- integer >> 16 & 255,
2701
- integer >> 8 & 255,
2702
- integer & 255
2703
- /* eslint-enable no-bitwise */
2704
- ];
2705
- },
2706
- enumerable: false
2707
- },
2708
- hexToAnsi256: {
2709
- value: (hex) => styles.rgbToAnsi256(...styles.hexToRgb(hex)),
2710
- enumerable: false
2711
- },
2712
- ansi256ToAnsi: {
2713
- value(code) {
2714
- if (code < 8) {
2715
- return 30 + code;
2716
- }
2717
- if (code < 16) {
2718
- return 90 + (code - 8);
2719
- }
2720
- let red2;
2721
- let green2;
2722
- let blue2;
2723
- if (code >= 232) {
2724
- red2 = ((code - 232) * 10 + 8) / 255;
2725
- green2 = red2;
2726
- blue2 = red2;
2727
- } else {
2728
- code -= 16;
2729
- const remainder = code % 36;
2730
- red2 = Math.floor(code / 36) / 5;
2731
- green2 = Math.floor(remainder / 6) / 5;
2732
- blue2 = remainder % 6 / 5;
2733
- }
2734
- const value = Math.max(red2, green2, blue2) * 2;
2735
- if (value === 0) {
2736
- return 30;
2737
- }
2738
- let result = 30 + (Math.round(blue2) << 2 | Math.round(green2) << 1 | Math.round(red2));
2739
- if (value === 2) {
2740
- result += 60;
2741
- }
2742
- return result;
2743
- },
2744
- enumerable: false
2745
- },
2746
- rgbToAnsi: {
2747
- value: (red2, green2, blue2) => styles.ansi256ToAnsi(styles.rgbToAnsi256(red2, green2, blue2)),
2748
- enumerable: false
2749
- },
2750
- hexToAnsi: {
2751
- value: (hex) => styles.ansi256ToAnsi(styles.hexToAnsi256(hex)),
2752
- enumerable: false
2753
- }
2754
- });
2755
- return styles;
2756
- }
2757
- var ansiStyles = assembleStyles();
2758
- var ansi_styles_default = ansiStyles;
2759
-
2760
- // ../../node_modules/.pnpm/chalk@5.3.0/node_modules/chalk/source/vendor/supports-color/index.js
2761
- init_cjs_shims();
2762
-
2763
- var _os = require('os'); var _os2 = _interopRequireDefault(_os);
2764
-
2765
- function hasFlag(flag, argv = globalThis.Deno ? globalThis.Deno.args : _process3.default.argv) {
2766
- const prefix = flag.startsWith("-") ? "" : flag.length === 1 ? "-" : "--";
2767
- const position = argv.indexOf(prefix + flag);
2768
- const terminatorPosition = argv.indexOf("--");
2769
- return position !== -1 && (terminatorPosition === -1 || position < terminatorPosition);
2770
- }
2771
- var { env } = _process3.default;
2772
- var flagForceColor;
2773
- if (hasFlag("no-color") || hasFlag("no-colors") || hasFlag("color=false") || hasFlag("color=never")) {
2774
- flagForceColor = 0;
2775
- } else if (hasFlag("color") || hasFlag("colors") || hasFlag("color=true") || hasFlag("color=always")) {
2776
- flagForceColor = 1;
2777
- }
2778
- function envForceColor() {
2779
- if ("FORCE_COLOR" in env) {
2780
- if (env.FORCE_COLOR === "true") {
2781
- return 1;
2782
- }
2783
- if (env.FORCE_COLOR === "false") {
2784
- return 0;
2785
- }
2786
- return env.FORCE_COLOR.length === 0 ? 1 : Math.min(Number.parseInt(env.FORCE_COLOR, 10), 3);
2787
- }
2788
- }
2789
- function translateLevel(level) {
2790
- if (level === 0) {
2791
- return false;
2792
- }
2793
- return {
2794
- level,
2795
- hasBasic: true,
2796
- has256: level >= 2,
2797
- has16m: level >= 3
2798
- };
2799
- }
2800
- function _supportsColor(haveStream, { streamIsTTY, sniffFlags = true } = {}) {
2801
- const noFlagForceColor = envForceColor();
2802
- if (noFlagForceColor !== void 0) {
2803
- flagForceColor = noFlagForceColor;
2804
- }
2805
- const forceColor = sniffFlags ? flagForceColor : noFlagForceColor;
2806
- if (forceColor === 0) {
2807
- return 0;
2808
- }
2809
- if (sniffFlags) {
2810
- if (hasFlag("color=16m") || hasFlag("color=full") || hasFlag("color=truecolor")) {
2811
- return 3;
2812
- }
2813
- if (hasFlag("color=256")) {
2814
- return 2;
2815
- }
2816
- }
2817
- if ("TF_BUILD" in env && "AGENT_NAME" in env) {
2818
- return 1;
2819
- }
2820
- if (haveStream && !streamIsTTY && forceColor === void 0) {
2821
- return 0;
2822
- }
2823
- const min = forceColor || 0;
2824
- if (env.TERM === "dumb") {
2825
- return min;
2826
- }
2827
- if (_process3.default.platform === "win32") {
2828
- const osRelease = _os2.default.release().split(".");
2829
- if (Number(osRelease[0]) >= 10 && Number(osRelease[2]) >= 10586) {
2830
- return Number(osRelease[2]) >= 14931 ? 3 : 2;
2831
- }
2832
- return 1;
2833
- }
2834
- if ("CI" in env) {
2835
- if ("GITHUB_ACTIONS" in env || "GITEA_ACTIONS" in env) {
2836
- return 3;
2837
- }
2838
- if (["TRAVIS", "CIRCLECI", "APPVEYOR", "GITLAB_CI", "BUILDKITE", "DRONE"].some((sign) => sign in env) || env.CI_NAME === "codeship") {
2839
- return 1;
2840
- }
2841
- return min;
2842
- }
2843
- if ("TEAMCITY_VERSION" in env) {
2844
- return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;
2845
- }
2846
- if (env.COLORTERM === "truecolor") {
2847
- return 3;
2848
- }
2849
- if (env.TERM === "xterm-kitty") {
2850
- return 3;
2851
- }
2852
- if ("TERM_PROGRAM" in env) {
2853
- const version = Number.parseInt((env.TERM_PROGRAM_VERSION || "").split(".")[0], 10);
2854
- switch (env.TERM_PROGRAM) {
2855
- case "iTerm.app": {
2856
- return version >= 3 ? 3 : 2;
2857
- }
2858
- case "Apple_Terminal": {
2859
- return 2;
2860
- }
2861
- }
2862
- }
2863
- if (/-256(color)?$/i.test(env.TERM)) {
2864
- return 2;
2865
- }
2866
- if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) {
2867
- return 1;
2868
- }
2869
- if ("COLORTERM" in env) {
2870
- return 1;
2871
- }
2872
- return min;
2873
- }
2874
- function createSupportsColor(stream, options = {}) {
2875
- const level = _supportsColor(stream, {
2876
- streamIsTTY: stream && stream.isTTY,
2877
- ...options
2878
- });
2879
- return translateLevel(level);
2880
- }
2881
- var supportsColor = {
2882
- stdout: createSupportsColor({ isTTY: _tty2.default.isatty(1) }),
2883
- stderr: createSupportsColor({ isTTY: _tty2.default.isatty(2) })
2884
- };
2885
- var supports_color_default = supportsColor;
2886
-
2887
- // ../../node_modules/.pnpm/chalk@5.3.0/node_modules/chalk/source/utilities.js
2888
- init_cjs_shims();
2889
- function stringReplaceAll(string, substring, replacer) {
2890
- let index = string.indexOf(substring);
2891
- if (index === -1) {
2892
- return string;
2893
- }
2894
- const substringLength = substring.length;
2895
- let endIndex = 0;
2896
- let returnValue = "";
2897
- do {
2898
- returnValue += string.slice(endIndex, index) + substring + replacer;
2899
- endIndex = index + substringLength;
2900
- index = string.indexOf(substring, endIndex);
2901
- } while (index !== -1);
2902
- returnValue += string.slice(endIndex);
2903
- return returnValue;
2904
- }
2905
- function stringEncaseCRLFWithFirstIndex(string, prefix, postfix, index) {
2906
- let endIndex = 0;
2907
- let returnValue = "";
2908
- do {
2909
- const gotCR = string[index - 1] === "\r";
2910
- returnValue += string.slice(endIndex, gotCR ? index - 1 : index) + prefix + (gotCR ? "\r\n" : "\n") + postfix;
2911
- endIndex = index + 1;
2912
- index = string.indexOf("\n", endIndex);
2913
- } while (index !== -1);
2914
- returnValue += string.slice(endIndex);
2915
- return returnValue;
2916
- }
2917
-
2918
- // ../../node_modules/.pnpm/chalk@5.3.0/node_modules/chalk/source/index.js
2919
- var { stdout: stdoutColor, stderr: stderrColor } = supports_color_default;
2920
- var GENERATOR = Symbol("GENERATOR");
2921
- var STYLER = Symbol("STYLER");
2922
- var IS_EMPTY = Symbol("IS_EMPTY");
2923
- var levelMapping = [
2924
- "ansi",
2925
- "ansi",
2926
- "ansi256",
2927
- "ansi16m"
2928
- ];
2929
- var styles2 = /* @__PURE__ */ Object.create(null);
2930
- var applyOptions = (object, options = {}) => {
2931
- if (options.level && !(Number.isInteger(options.level) && options.level >= 0 && options.level <= 3)) {
2932
- throw new Error("The `level` option should be an integer from 0 to 3");
2933
- }
2934
- const colorLevel = stdoutColor ? stdoutColor.level : 0;
2935
- object.level = options.level === void 0 ? colorLevel : options.level;
2936
- };
2937
- var chalkFactory = (options) => {
2938
- const chalk2 = (...strings) => strings.join(" ");
2939
- applyOptions(chalk2, options);
2940
- Object.setPrototypeOf(chalk2, createChalk.prototype);
2941
- return chalk2;
2942
- };
2943
- function createChalk(options) {
2944
- return chalkFactory(options);
2945
- }
2946
- Object.setPrototypeOf(createChalk.prototype, Function.prototype);
2947
- for (const [styleName, style] of Object.entries(ansi_styles_default)) {
2948
- styles2[styleName] = {
2949
- get() {
2950
- const builder = createBuilder(this, createStyler(style.open, style.close, this[STYLER]), this[IS_EMPTY]);
2951
- Object.defineProperty(this, styleName, { value: builder });
2952
- return builder;
2953
- }
2954
- };
2955
- }
2956
- styles2.visible = {
2957
- get() {
2958
- const builder = createBuilder(this, this[STYLER], true);
2959
- Object.defineProperty(this, "visible", { value: builder });
2960
- return builder;
2961
- }
2962
- };
2963
- var getModelAnsi = (model, level, type, ...arguments_) => {
2964
- if (model === "rgb") {
2965
- if (level === "ansi16m") {
2966
- return ansi_styles_default[type].ansi16m(...arguments_);
2967
- }
2968
- if (level === "ansi256") {
2969
- return ansi_styles_default[type].ansi256(ansi_styles_default.rgbToAnsi256(...arguments_));
2970
- }
2971
- return ansi_styles_default[type].ansi(ansi_styles_default.rgbToAnsi(...arguments_));
2972
- }
2973
- if (model === "hex") {
2974
- return getModelAnsi("rgb", level, type, ...ansi_styles_default.hexToRgb(...arguments_));
2975
- }
2976
- return ansi_styles_default[type][model](...arguments_);
2977
- };
2978
- var usedModels = ["rgb", "hex", "ansi256"];
2979
- for (const model of usedModels) {
2980
- styles2[model] = {
2981
- get() {
2982
- const { level } = this;
2983
- return function(...arguments_) {
2984
- const styler = createStyler(getModelAnsi(model, levelMapping[level], "color", ...arguments_), ansi_styles_default.color.close, this[STYLER]);
2985
- return createBuilder(this, styler, this[IS_EMPTY]);
2986
- };
2987
- }
2988
- };
2989
- const bgModel = "bg" + model[0].toUpperCase() + model.slice(1);
2990
- styles2[bgModel] = {
2991
- get() {
2992
- const { level } = this;
2993
- return function(...arguments_) {
2994
- const styler = createStyler(getModelAnsi(model, levelMapping[level], "bgColor", ...arguments_), ansi_styles_default.bgColor.close, this[STYLER]);
2995
- return createBuilder(this, styler, this[IS_EMPTY]);
2996
- };
2997
- }
2998
- };
2999
- }
3000
- var proto = Object.defineProperties(() => {
3001
- }, {
3002
- ...styles2,
3003
- level: {
3004
- enumerable: true,
3005
- get() {
3006
- return this[GENERATOR].level;
3007
- },
3008
- set(level) {
3009
- this[GENERATOR].level = level;
3010
- }
3011
- }
3012
- });
3013
- var createStyler = (open, close, parent) => {
3014
- let openAll;
3015
- let closeAll;
3016
- if (parent === void 0) {
3017
- openAll = open;
3018
- closeAll = close;
3019
- } else {
3020
- openAll = parent.openAll + open;
3021
- closeAll = close + parent.closeAll;
3022
- }
3023
- return {
3024
- open,
3025
- close,
3026
- openAll,
3027
- closeAll,
3028
- parent
3029
- };
3030
- };
3031
- var createBuilder = (self, _styler, _isEmpty) => {
3032
- const builder = (...arguments_) => applyStyle(builder, arguments_.length === 1 ? "" + arguments_[0] : arguments_.join(" "));
3033
- Object.setPrototypeOf(builder, proto);
3034
- builder[GENERATOR] = self;
3035
- builder[STYLER] = _styler;
3036
- builder[IS_EMPTY] = _isEmpty;
3037
- return builder;
3038
- };
3039
- var applyStyle = (self, string) => {
3040
- if (self.level <= 0 || !string) {
3041
- return self[IS_EMPTY] ? "" : string;
3042
- }
3043
- let styler = self[STYLER];
3044
- if (styler === void 0) {
3045
- return string;
3046
- }
3047
- const { openAll, closeAll } = styler;
3048
- if (string.includes("\x1B")) {
3049
- while (styler !== void 0) {
3050
- string = stringReplaceAll(string, styler.close, styler.open);
3051
- styler = styler.parent;
3052
- }
3053
- }
3054
- const lfIndex = string.indexOf("\n");
3055
- if (lfIndex !== -1) {
3056
- string = stringEncaseCRLFWithFirstIndex(string, closeAll, openAll, lfIndex);
3057
- }
3058
- return openAll + string + closeAll;
3059
- };
3060
- Object.defineProperties(createChalk.prototype, styles2);
3061
- var chalk = createChalk();
3062
- var chalkStderr = createChalk({ level: stderrColor ? stderrColor.level : 0 });
3063
- var source_default = chalk;
3064
-
3065
- // ../../node_modules/.pnpm/cli-cursor@4.0.0/node_modules/cli-cursor/index.js
3066
- init_cjs_shims();
3067
-
3068
-
3069
- // ../../node_modules/.pnpm/restore-cursor@4.0.0/node_modules/restore-cursor/index.js
3070
- init_cjs_shims();
3071
- var import_onetime = __toESM(require_onetime(), 1);
3072
- var import_signal_exit = __toESM(require_signal_exit(), 1);
3073
-
3074
- var restoreCursor = (0, import_onetime.default)(() => {
3075
- (0, import_signal_exit.default)(() => {
3076
- _process3.default.stderr.write("\x1B[?25h");
3077
- }, { alwaysLast: true });
3078
- });
3079
- var restore_cursor_default = restoreCursor;
3080
-
3081
- // ../../node_modules/.pnpm/cli-cursor@4.0.0/node_modules/cli-cursor/index.js
3082
- var isHidden = false;
3083
- var cliCursor = {};
3084
- cliCursor.show = (writableStream = _process3.default.stderr) => {
3085
- if (!writableStream.isTTY) {
3086
- return;
3087
- }
3088
- isHidden = false;
3089
- writableStream.write("\x1B[?25h");
3090
- };
3091
- cliCursor.hide = (writableStream = _process3.default.stderr) => {
3092
- if (!writableStream.isTTY) {
3093
- return;
3094
- }
3095
- restore_cursor_default();
3096
- isHidden = true;
3097
- writableStream.write("\x1B[?25l");
3098
- };
3099
- cliCursor.toggle = (force, writableStream) => {
3100
- if (force !== void 0) {
3101
- isHidden = force;
3102
- }
3103
- if (isHidden) {
3104
- cliCursor.show(writableStream);
3105
- } else {
3106
- cliCursor.hide(writableStream);
3107
- }
3108
- };
3109
- var cli_cursor_default = cliCursor;
3110
-
3111
- // ../../node_modules/.pnpm/ora@8.0.1/node_modules/ora/index.js
3112
- var import_cli_spinners = __toESM(require_cli_spinners(), 1);
3113
-
3114
- // ../../node_modules/.pnpm/log-symbols@6.0.0/node_modules/log-symbols/index.js
3115
- init_cjs_shims();
3116
-
3117
- // ../../node_modules/.pnpm/is-unicode-supported@1.3.0/node_modules/is-unicode-supported/index.js
3118
- init_cjs_shims();
3119
-
3120
- function isUnicodeSupported() {
3121
- if (_process3.default.platform !== "win32") {
3122
- return _process3.default.env.TERM !== "linux";
3123
- }
3124
- return Boolean(_process3.default.env.CI) || Boolean(_process3.default.env.WT_SESSION) || Boolean(_process3.default.env.TERMINUS_SUBLIME) || _process3.default.env.ConEmuTask === "{cmd::Cmder}" || _process3.default.env.TERM_PROGRAM === "Terminus-Sublime" || _process3.default.env.TERM_PROGRAM === "vscode" || _process3.default.env.TERM === "xterm-256color" || _process3.default.env.TERM === "alacritty" || _process3.default.env.TERMINAL_EMULATOR === "JetBrains-JediTerm";
3125
- }
3126
-
3127
- // ../../node_modules/.pnpm/log-symbols@6.0.0/node_modules/log-symbols/index.js
3128
- var main = {
3129
- info: source_default.blue("\u2139"),
3130
- success: source_default.green("\u2714"),
3131
- warning: source_default.yellow("\u26A0"),
3132
- error: source_default.red("\u2716")
3133
- };
3134
- var fallback = {
3135
- info: source_default.blue("i"),
3136
- success: source_default.green("\u221A"),
3137
- warning: source_default.yellow("\u203C"),
3138
- error: source_default.red("\xD7")
3139
- };
3140
- var logSymbols = isUnicodeSupported() ? main : fallback;
3141
- var log_symbols_default = logSymbols;
3142
-
3143
- // ../../node_modules/.pnpm/strip-ansi@7.1.0/node_modules/strip-ansi/index.js
3144
- init_cjs_shims();
3145
-
3146
- // ../../node_modules/.pnpm/ansi-regex@6.0.1/node_modules/ansi-regex/index.js
3147
- init_cjs_shims();
3148
- function ansiRegex({ onlyFirst = false } = {}) {
3149
- const pattern = [
3150
- "[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)",
3151
- "(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~]))"
3152
- ].join("|");
3153
- return new RegExp(pattern, onlyFirst ? void 0 : "g");
3154
- }
3155
-
3156
- // ../../node_modules/.pnpm/strip-ansi@7.1.0/node_modules/strip-ansi/index.js
3157
- var regex = ansiRegex();
3158
- function stripAnsi(string) {
3159
- if (typeof string !== "string") {
3160
- throw new TypeError(`Expected a \`string\`, got \`${typeof string}\``);
3161
- }
3162
- return string.replace(regex, "");
3163
- }
3164
-
3165
- // ../../node_modules/.pnpm/string-width@7.1.0/node_modules/string-width/index.js
3166
- init_cjs_shims();
3167
-
3168
- // ../../node_modules/.pnpm/get-east-asian-width@1.2.0/node_modules/get-east-asian-width/index.js
3169
- init_cjs_shims();
3170
-
3171
- // ../../node_modules/.pnpm/get-east-asian-width@1.2.0/node_modules/get-east-asian-width/lookup.js
3172
- init_cjs_shims();
3173
- function isAmbiguous(x) {
3174
- return x === 161 || x === 164 || x === 167 || x === 168 || x === 170 || x === 173 || x === 174 || x >= 176 && x <= 180 || x >= 182 && x <= 186 || x >= 188 && x <= 191 || x === 198 || x === 208 || x === 215 || x === 216 || x >= 222 && x <= 225 || x === 230 || x >= 232 && x <= 234 || x === 236 || x === 237 || x === 240 || x === 242 || x === 243 || x >= 247 && x <= 250 || x === 252 || x === 254 || x === 257 || x === 273 || x === 275 || x === 283 || x === 294 || x === 295 || x === 299 || x >= 305 && x <= 307 || x === 312 || x >= 319 && x <= 322 || x === 324 || x >= 328 && x <= 331 || x === 333 || x === 338 || x === 339 || x === 358 || x === 359 || x === 363 || x === 462 || x === 464 || x === 466 || x === 468 || x === 470 || x === 472 || x === 474 || x === 476 || x === 593 || x === 609 || x === 708 || x === 711 || x >= 713 && x <= 715 || x === 717 || x === 720 || x >= 728 && x <= 731 || x === 733 || x === 735 || x >= 768 && x <= 879 || x >= 913 && x <= 929 || x >= 931 && x <= 937 || x >= 945 && x <= 961 || x >= 963 && x <= 969 || x === 1025 || x >= 1040 && x <= 1103 || x === 1105 || x === 8208 || x >= 8211 && x <= 8214 || x === 8216 || x === 8217 || x === 8220 || x === 8221 || x >= 8224 && x <= 8226 || x >= 8228 && x <= 8231 || x === 8240 || x === 8242 || x === 8243 || x === 8245 || x === 8251 || x === 8254 || x === 8308 || x === 8319 || x >= 8321 && x <= 8324 || x === 8364 || x === 8451 || x === 8453 || x === 8457 || x === 8467 || x === 8470 || x === 8481 || x === 8482 || x === 8486 || x === 8491 || x === 8531 || x === 8532 || x >= 8539 && x <= 8542 || x >= 8544 && x <= 8555 || x >= 8560 && x <= 8569 || x === 8585 || x >= 8592 && x <= 8601 || x === 8632 || x === 8633 || x === 8658 || x === 8660 || x === 8679 || x === 8704 || x === 8706 || x === 8707 || x === 8711 || x === 8712 || x === 8715 || x === 8719 || x === 8721 || x === 8725 || x === 8730 || x >= 8733 && x <= 8736 || x === 8739 || x === 8741 || x >= 8743 && x <= 8748 || x === 8750 || x >= 8756 && x <= 8759 || x === 8764 || x === 8765 || x === 8776 || x === 8780 || x === 8786 || x === 8800 || x === 8801 || x >= 8804 && x <= 8807 || x === 8810 || x === 8811 || x === 8814 || x === 8815 || x === 8834 || x === 8835 || x === 8838 || x === 8839 || x === 8853 || x === 8857 || x === 8869 || x === 8895 || x === 8978 || x >= 9312 && x <= 9449 || x >= 9451 && x <= 9547 || x >= 9552 && x <= 9587 || x >= 9600 && x <= 9615 || x >= 9618 && x <= 9621 || x === 9632 || x === 9633 || x >= 9635 && x <= 9641 || x === 9650 || x === 9651 || x === 9654 || x === 9655 || x === 9660 || x === 9661 || x === 9664 || x === 9665 || x >= 9670 && x <= 9672 || x === 9675 || x >= 9678 && x <= 9681 || x >= 9698 && x <= 9701 || x === 9711 || x === 9733 || x === 9734 || x === 9737 || x === 9742 || x === 9743 || x === 9756 || x === 9758 || x === 9792 || x === 9794 || x === 9824 || x === 9825 || x >= 9827 && x <= 9829 || x >= 9831 && x <= 9834 || x === 9836 || x === 9837 || x === 9839 || x === 9886 || x === 9887 || x === 9919 || x >= 9926 && x <= 9933 || x >= 9935 && x <= 9939 || x >= 9941 && x <= 9953 || x === 9955 || x === 9960 || x === 9961 || x >= 9963 && x <= 9969 || x === 9972 || x >= 9974 && x <= 9977 || x === 9979 || x === 9980 || x === 9982 || x === 9983 || x === 10045 || x >= 10102 && x <= 10111 || x >= 11094 && x <= 11097 || x >= 12872 && x <= 12879 || x >= 57344 && x <= 63743 || x >= 65024 && x <= 65039 || x === 65533 || x >= 127232 && x <= 127242 || x >= 127248 && x <= 127277 || x >= 127280 && x <= 127337 || x >= 127344 && x <= 127373 || x === 127375 || x === 127376 || x >= 127387 && x <= 127404 || x >= 917760 && x <= 917999 || x >= 983040 && x <= 1048573 || x >= 1048576 && x <= 1114109;
3175
- }
3176
- function isFullWidth(x) {
3177
- return x === 12288 || x >= 65281 && x <= 65376 || x >= 65504 && x <= 65510;
3178
- }
3179
- function isWide(x) {
3180
- return x >= 4352 && x <= 4447 || x === 8986 || x === 8987 || x === 9001 || x === 9002 || x >= 9193 && x <= 9196 || x === 9200 || x === 9203 || x === 9725 || x === 9726 || x === 9748 || x === 9749 || x >= 9800 && x <= 9811 || x === 9855 || x === 9875 || x === 9889 || x === 9898 || x === 9899 || x === 9917 || x === 9918 || x === 9924 || x === 9925 || x === 9934 || x === 9940 || x === 9962 || x === 9970 || x === 9971 || x === 9973 || x === 9978 || x === 9981 || x === 9989 || x === 9994 || x === 9995 || x === 10024 || x === 10060 || x === 10062 || x >= 10067 && x <= 10069 || x === 10071 || x >= 10133 && x <= 10135 || x === 10160 || x === 10175 || x === 11035 || x === 11036 || x === 11088 || x === 11093 || x >= 11904 && x <= 11929 || x >= 11931 && x <= 12019 || x >= 12032 && x <= 12245 || x >= 12272 && x <= 12287 || x >= 12289 && x <= 12350 || x >= 12353 && x <= 12438 || x >= 12441 && x <= 12543 || x >= 12549 && x <= 12591 || x >= 12593 && x <= 12686 || x >= 12688 && x <= 12771 || x >= 12783 && x <= 12830 || x >= 12832 && x <= 12871 || x >= 12880 && x <= 19903 || x >= 19968 && x <= 42124 || x >= 42128 && x <= 42182 || x >= 43360 && x <= 43388 || x >= 44032 && x <= 55203 || x >= 63744 && x <= 64255 || x >= 65040 && x <= 65049 || x >= 65072 && x <= 65106 || x >= 65108 && x <= 65126 || x >= 65128 && x <= 65131 || x >= 94176 && x <= 94180 || x === 94192 || x === 94193 || x >= 94208 && x <= 100343 || x >= 100352 && x <= 101589 || x >= 101632 && x <= 101640 || x >= 110576 && x <= 110579 || x >= 110581 && x <= 110587 || x === 110589 || x === 110590 || x >= 110592 && x <= 110882 || x === 110898 || x >= 110928 && x <= 110930 || x === 110933 || x >= 110948 && x <= 110951 || x >= 110960 && x <= 111355 || x === 126980 || x === 127183 || x === 127374 || x >= 127377 && x <= 127386 || x >= 127488 && x <= 127490 || x >= 127504 && x <= 127547 || x >= 127552 && x <= 127560 || x === 127568 || x === 127569 || x >= 127584 && x <= 127589 || x >= 127744 && x <= 127776 || x >= 127789 && x <= 127797 || x >= 127799 && x <= 127868 || x >= 127870 && x <= 127891 || x >= 127904 && x <= 127946 || x >= 127951 && x <= 127955 || x >= 127968 && x <= 127984 || x === 127988 || x >= 127992 && x <= 128062 || x === 128064 || x >= 128066 && x <= 128252 || x >= 128255 && x <= 128317 || x >= 128331 && x <= 128334 || x >= 128336 && x <= 128359 || x === 128378 || x === 128405 || x === 128406 || x === 128420 || x >= 128507 && x <= 128591 || x >= 128640 && x <= 128709 || x === 128716 || x >= 128720 && x <= 128722 || x >= 128725 && x <= 128727 || x >= 128732 && x <= 128735 || x === 128747 || x === 128748 || x >= 128756 && x <= 128764 || x >= 128992 && x <= 129003 || x === 129008 || x >= 129292 && x <= 129338 || x >= 129340 && x <= 129349 || x >= 129351 && x <= 129535 || x >= 129648 && x <= 129660 || x >= 129664 && x <= 129672 || x >= 129680 && x <= 129725 || x >= 129727 && x <= 129733 || x >= 129742 && x <= 129755 || x >= 129760 && x <= 129768 || x >= 129776 && x <= 129784 || x >= 131072 && x <= 196605 || x >= 196608 && x <= 262141;
3181
- }
3182
-
3183
- // ../../node_modules/.pnpm/get-east-asian-width@1.2.0/node_modules/get-east-asian-width/index.js
3184
- function validate(codePoint) {
3185
- if (!Number.isSafeInteger(codePoint)) {
3186
- throw new TypeError(`Expected a code point, got \`${typeof codePoint}\`.`);
3187
- }
3188
- }
3189
- function eastAsianWidth(codePoint, { ambiguousAsWide = false } = {}) {
3190
- validate(codePoint);
3191
- if (isFullWidth(codePoint) || isWide(codePoint) || ambiguousAsWide && isAmbiguous(codePoint)) {
3192
- return 2;
3193
- }
3194
- return 1;
3195
- }
3196
-
3197
- // ../../node_modules/.pnpm/emoji-regex@10.3.0/node_modules/emoji-regex/index.mjs
3198
- init_cjs_shims();
3199
- var emoji_regex_default = () => {
3200
- return /[#*0-9]\uFE0F?\u20E3|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26AA\u26B0\u26B1\u26BD\u26BE\u26C4\u26C8\u26CF\u26D1\u26E9\u26F0-\u26F5\u26F7\u26F8\u26FA\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2757\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B55\u3030\u303D\u3297\u3299]\uFE0F?|[\u261D\u270C\u270D](?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?|[\u270A\u270B](?:\uD83C[\uDFFB-\uDFFF])?|[\u23E9-\u23EC\u23F0\u23F3\u25FD\u2693\u26A1\u26AB\u26C5\u26CE\u26D4\u26EA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2795-\u2797\u27B0\u27BF\u2B50]|\u26D3\uFE0F?(?:\u200D\uD83D\uDCA5)?|\u26F9(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|\u2764\uFE0F?(?:\u200D(?:\uD83D\uDD25|\uD83E\uDE79))?|\uD83C(?:[\uDC04\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]\uFE0F?|[\uDF85\uDFC2\uDFC7](?:\uD83C[\uDFFB-\uDFFF])?|[\uDFC4\uDFCA](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDFCB\uDFCC](?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF43\uDF45-\uDF4A\uDF4C-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uDDE6\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF]|\uDDE7\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF]|\uDDE8\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF5\uDDF7\uDDFA-\uDDFF]|\uDDE9\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF]|\uDDEA\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA]|\uDDEB\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7]|\uDDEC\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE]|\uDDED\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA]|\uDDEE\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9]|\uDDEF\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5]|\uDDF0\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF]|\uDDF1\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE]|\uDDF2\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF]|\uDDF3\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF]|\uDDF4\uD83C\uDDF2|\uDDF5\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE]|\uDDF6\uD83C\uDDE6|\uDDF7\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC]|\uDDF8\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF]|\uDDF9\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF]|\uDDFA\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF]|\uDDFB\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA]|\uDDFC\uD83C[\uDDEB\uDDF8]|\uDDFD\uD83C\uDDF0|\uDDFE\uD83C[\uDDEA\uDDF9]|\uDDFF\uD83C[\uDDE6\uDDF2\uDDFC]|\uDF44(?:\u200D\uD83D\uDFEB)?|\uDF4B(?:\u200D\uD83D\uDFE9)?|\uDFC3(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDFF3\uFE0F?(?:\u200D(?:\u26A7\uFE0F?|\uD83C\uDF08))?|\uDFF4(?:\u200D\u2620\uFE0F?|\uDB40\uDC67\uDB40\uDC62\uDB40(?:\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDC73\uDB40\uDC63\uDB40\uDC74|\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F)?)|\uD83D(?:[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3]\uFE0F?|[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC](?:\uD83C[\uDFFB-\uDFFF])?|[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4\uDEB5](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD74\uDD90](?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?|[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC25\uDC27-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE41\uDE43\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED7\uDEDC-\uDEDF\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB\uDFF0]|\uDC08(?:\u200D\u2B1B)?|\uDC15(?:\u200D\uD83E\uDDBA)?|\uDC26(?:\u200D(?:\u2B1B|\uD83D\uDD25))?|\uDC3B(?:\u200D\u2744\uFE0F?)?|\uDC41\uFE0F?(?:\u200D\uD83D\uDDE8\uFE0F?)?|\uDC68(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDC68\uDC69]\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFE])))?))?|\uDC69(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?[\uDC68\uDC69]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?|\uDC69\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?))|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFE])))?))?|\uDC6F(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDD75(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDE2E(?:\u200D\uD83D\uDCA8)?|\uDE35(?:\u200D\uD83D\uDCAB)?|\uDE36(?:\u200D\uD83C\uDF2B\uFE0F?)?|\uDE42(?:\u200D[\u2194\u2195]\uFE0F?)?|\uDEB6(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?)|\uD83E(?:[\uDD0C\uDD0F\uDD18-\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5\uDEC3-\uDEC5\uDEF0\uDEF2-\uDEF8](?:\uD83C[\uDFFB-\uDFFF])?|[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD\uDDCF\uDDD4\uDDD6-\uDDDD](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDDDE\uDDDF](?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD0D\uDD0E\uDD10-\uDD17\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCC\uDDD0\uDDE0-\uDDFF\uDE70-\uDE7C\uDE80-\uDE88\uDE90-\uDEBD\uDEBF-\uDEC2\uDECE-\uDEDB\uDEE0-\uDEE8]|\uDD3C(?:\u200D[\u2640\u2642]\uFE0F?|\uD83C[\uDFFB-\uDFFF])?|\uDDCE(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDDD1(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1|\uDDD1\u200D\uD83E\uDDD2(?:\u200D\uD83E\uDDD2)?|\uDDD2(?:\u200D\uD83E\uDDD2)?))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?))?|\uDEF1(?:\uD83C(?:\uDFFB(?:\u200D\uD83E\uDEF2\uD83C[\uDFFC-\uDFFF])?|\uDFFC(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFD-\uDFFF])?|\uDFFD(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])?|\uDFFE(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFD\uDFFF])?|\uDFFF(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFE])?))?)/g;
3201
- };
3202
-
3203
- // ../../node_modules/.pnpm/string-width@7.1.0/node_modules/string-width/index.js
3204
- var segmenter = new Intl.Segmenter();
3205
- function stringWidth(string, options = {}) {
3206
- if (typeof string !== "string" || string.length === 0) {
3207
- return 0;
3208
- }
3209
- const {
3210
- ambiguousIsNarrow = true,
3211
- countAnsiEscapeCodes = false
3212
- } = options;
3213
- if (!countAnsiEscapeCodes) {
3214
- string = stripAnsi(string);
3215
- }
3216
- if (string.length === 0) {
3217
- return 0;
3218
- }
3219
- let width = 0;
3220
- const eastAsianWidthOptions = { ambiguousAsWide: !ambiguousIsNarrow };
3221
- for (const { segment: character } of segmenter.segment(string)) {
3222
- const codePoint = character.codePointAt(0);
3223
- if (codePoint <= 31 || codePoint >= 127 && codePoint <= 159) {
3224
- continue;
3225
- }
3226
- if (codePoint >= 768 && codePoint <= 879) {
3227
- continue;
3228
- }
3229
- if (emoji_regex_default().test(character)) {
3230
- width += 2;
3231
- continue;
3232
- }
3233
- width += eastAsianWidth(codePoint, eastAsianWidthOptions);
3234
- }
3235
- return width;
3236
- }
3237
-
3238
- // ../../node_modules/.pnpm/is-interactive@2.0.0/node_modules/is-interactive/index.js
3239
- init_cjs_shims();
3240
- function isInteractive({ stream = process.stdout } = {}) {
3241
- return Boolean(
3242
- stream && stream.isTTY && process.env.TERM !== "dumb" && !("CI" in process.env)
3243
- );
3244
- }
3245
-
3246
- // ../../node_modules/.pnpm/is-unicode-supported@2.0.0/node_modules/is-unicode-supported/index.js
3247
- init_cjs_shims();
3248
-
3249
- function isUnicodeSupported2() {
3250
- if (_process3.default.platform !== "win32") {
3251
- return _process3.default.env.TERM !== "linux";
3252
- }
3253
- return Boolean(_process3.default.env.WT_SESSION) || Boolean(_process3.default.env.TERMINUS_SUBLIME) || _process3.default.env.ConEmuTask === "{cmd::Cmder}" || _process3.default.env.TERM_PROGRAM === "Terminus-Sublime" || _process3.default.env.TERM_PROGRAM === "vscode" || _process3.default.env.TERM === "xterm-256color" || _process3.default.env.TERM === "alacritty" || _process3.default.env.TERMINAL_EMULATOR === "JetBrains-JediTerm";
3254
- }
3255
-
3256
- // ../../node_modules/.pnpm/stdin-discarder@0.2.2/node_modules/stdin-discarder/index.js
3257
- init_cjs_shims();
3258
-
3259
- var ASCII_ETX_CODE = 3;
3260
- var _activeCount, _StdinDiscarder_instances, realStart_fn, realStop_fn, handleInput_fn;
3261
- var StdinDiscarder = class {
3262
- constructor() {
3263
- __privateAdd(this, _StdinDiscarder_instances);
3264
- __privateAdd(this, _activeCount, 0);
3265
- }
3266
- start() {
3267
- __privateWrapper(this, _activeCount)._++;
3268
- if (__privateGet(this, _activeCount) === 1) {
3269
- __privateMethod(this, _StdinDiscarder_instances, realStart_fn).call(this);
3270
- }
3271
- }
3272
- stop() {
3273
- if (__privateGet(this, _activeCount) <= 0) {
3274
- throw new Error("`stop` called more times than `start`");
3275
- }
3276
- __privateWrapper(this, _activeCount)._--;
3277
- if (__privateGet(this, _activeCount) === 0) {
3278
- __privateMethod(this, _StdinDiscarder_instances, realStop_fn).call(this);
3279
- }
3280
- }
3281
- };
3282
- _activeCount = new WeakMap();
3283
- _StdinDiscarder_instances = new WeakSet();
3284
- realStart_fn = function() {
3285
- if (_process3.default.platform === "win32" || !_process3.default.stdin.isTTY) {
3286
- return;
3287
- }
3288
- _process3.default.stdin.setRawMode(true);
3289
- _process3.default.stdin.on("data", __privateMethod(this, _StdinDiscarder_instances, handleInput_fn));
3290
- _process3.default.stdin.resume();
3291
- };
3292
- realStop_fn = function() {
3293
- if (!_process3.default.stdin.isTTY) {
3294
- return;
3295
- }
3296
- _process3.default.stdin.off("data", __privateMethod(this, _StdinDiscarder_instances, handleInput_fn));
3297
- _process3.default.stdin.pause();
3298
- _process3.default.stdin.setRawMode(false);
3299
- };
3300
- handleInput_fn = function(chunk) {
3301
- if (chunk[0] === ASCII_ETX_CODE) {
3302
- _process3.default.emit("SIGINT");
3303
- }
3304
- };
3305
- var stdinDiscarder = new StdinDiscarder();
3306
- var stdin_discarder_default = stdinDiscarder;
3307
-
3308
- // ../../node_modules/.pnpm/ora@8.0.1/node_modules/ora/index.js
3309
- var import_cli_spinners2 = __toESM(require_cli_spinners(), 1);
3310
- var _linesToClear, _isDiscardingStdin, _lineCount, _frameIndex, _options, _spinner, _stream, _id, _initialInterval, _isEnabled, _isSilent, _indent, _text, _prefixText, _suffixText, _Ora_instances, getFullPrefixText_fn, getFullSuffixText_fn, updateLineCount_fn;
3311
- var Ora = class {
3312
- constructor(options) {
3313
- __privateAdd(this, _Ora_instances);
3314
- __privateAdd(this, _linesToClear, 0);
3315
- __privateAdd(this, _isDiscardingStdin, false);
3316
- __privateAdd(this, _lineCount, 0);
3317
- __privateAdd(this, _frameIndex, 0);
3318
- __privateAdd(this, _options);
3319
- __privateAdd(this, _spinner);
3320
- __privateAdd(this, _stream);
3321
- __privateAdd(this, _id);
3322
- __privateAdd(this, _initialInterval);
3323
- __privateAdd(this, _isEnabled);
3324
- __privateAdd(this, _isSilent);
3325
- __privateAdd(this, _indent);
3326
- __privateAdd(this, _text);
3327
- __privateAdd(this, _prefixText);
3328
- __privateAdd(this, _suffixText);
3329
- __publicField(this, "color");
3330
- if (typeof options === "string") {
3331
- options = {
3332
- text: options
3333
- };
3334
- }
3335
- __privateSet(this, _options, {
3336
- color: "cyan",
3337
- stream: _process3.default.stderr,
3338
- discardStdin: true,
3339
- hideCursor: true,
3340
- ...options
3341
- });
3342
- this.color = __privateGet(this, _options).color;
3343
- this.spinner = __privateGet(this, _options).spinner;
3344
- __privateSet(this, _initialInterval, __privateGet(this, _options).interval);
3345
- __privateSet(this, _stream, __privateGet(this, _options).stream);
3346
- __privateSet(this, _isEnabled, typeof __privateGet(this, _options).isEnabled === "boolean" ? __privateGet(this, _options).isEnabled : isInteractive({ stream: __privateGet(this, _stream) }));
3347
- __privateSet(this, _isSilent, typeof __privateGet(this, _options).isSilent === "boolean" ? __privateGet(this, _options).isSilent : false);
3348
- this.text = __privateGet(this, _options).text;
3349
- this.prefixText = __privateGet(this, _options).prefixText;
3350
- this.suffixText = __privateGet(this, _options).suffixText;
3351
- this.indent = __privateGet(this, _options).indent;
3352
- if (_process3.default.env.NODE_ENV === "test") {
3353
- this._stream = __privateGet(this, _stream);
3354
- this._isEnabled = __privateGet(this, _isEnabled);
3355
- Object.defineProperty(this, "_linesToClear", {
3356
- get() {
3357
- return __privateGet(this, _linesToClear);
3358
- },
3359
- set(newValue) {
3360
- __privateSet(this, _linesToClear, newValue);
3361
- }
3362
- });
3363
- Object.defineProperty(this, "_frameIndex", {
3364
- get() {
3365
- return __privateGet(this, _frameIndex);
3366
- }
3367
- });
3368
- Object.defineProperty(this, "_lineCount", {
3369
- get() {
3370
- return __privateGet(this, _lineCount);
3371
- }
3372
- });
3373
- }
3374
- }
3375
- get indent() {
3376
- return __privateGet(this, _indent);
3377
- }
3378
- set indent(indent = 0) {
3379
- if (!(indent >= 0 && Number.isInteger(indent))) {
3380
- throw new Error("The `indent` option must be an integer from 0 and up");
3381
- }
3382
- __privateSet(this, _indent, indent);
3383
- __privateMethod(this, _Ora_instances, updateLineCount_fn).call(this);
3384
- }
3385
- get interval() {
3386
- return _nullishCoalesce(_nullishCoalesce(__privateGet(this, _initialInterval), () => ( __privateGet(this, _spinner).interval)), () => ( 100));
3387
- }
3388
- get spinner() {
3389
- return __privateGet(this, _spinner);
3390
- }
3391
- set spinner(spinner2) {
3392
- __privateSet(this, _frameIndex, 0);
3393
- __privateSet(this, _initialInterval, void 0);
3394
- if (typeof spinner2 === "object") {
3395
- if (spinner2.frames === void 0) {
3396
- throw new Error("The given spinner must have a `frames` property");
3397
- }
3398
- __privateSet(this, _spinner, spinner2);
3399
- } else if (!isUnicodeSupported2()) {
3400
- __privateSet(this, _spinner, import_cli_spinners.default.line);
3401
- } else if (spinner2 === void 0) {
3402
- __privateSet(this, _spinner, import_cli_spinners.default.dots);
3403
- } else if (spinner2 !== "default" && import_cli_spinners.default[spinner2]) {
3404
- __privateSet(this, _spinner, import_cli_spinners.default[spinner2]);
3405
- } else {
3406
- throw new Error(`There is no built-in spinner named '${spinner2}'. See https://github.com/sindresorhus/cli-spinners/blob/main/spinners.json for a full list.`);
3407
- }
3408
- }
3409
- get text() {
3410
- return __privateGet(this, _text);
3411
- }
3412
- set text(value = "") {
3413
- __privateSet(this, _text, value);
3414
- __privateMethod(this, _Ora_instances, updateLineCount_fn).call(this);
3415
- }
3416
- get prefixText() {
3417
- return __privateGet(this, _prefixText);
3418
- }
3419
- set prefixText(value = "") {
3420
- __privateSet(this, _prefixText, value);
3421
- __privateMethod(this, _Ora_instances, updateLineCount_fn).call(this);
3422
- }
3423
- get suffixText() {
3424
- return __privateGet(this, _suffixText);
3425
- }
3426
- set suffixText(value = "") {
3427
- __privateSet(this, _suffixText, value);
3428
- __privateMethod(this, _Ora_instances, updateLineCount_fn).call(this);
3429
- }
3430
- get isSpinning() {
3431
- return __privateGet(this, _id) !== void 0;
3432
- }
3433
- get isEnabled() {
3434
- return __privateGet(this, _isEnabled) && !__privateGet(this, _isSilent);
3435
- }
3436
- set isEnabled(value) {
3437
- if (typeof value !== "boolean") {
3438
- throw new TypeError("The `isEnabled` option must be a boolean");
3439
- }
3440
- __privateSet(this, _isEnabled, value);
3441
- }
3442
- get isSilent() {
3443
- return __privateGet(this, _isSilent);
3444
- }
3445
- set isSilent(value) {
3446
- if (typeof value !== "boolean") {
3447
- throw new TypeError("The `isSilent` option must be a boolean");
3448
- }
3449
- __privateSet(this, _isSilent, value);
3450
- }
3451
- frame() {
3452
- const { frames } = __privateGet(this, _spinner);
3453
- let frame = frames[__privateGet(this, _frameIndex)];
3454
- if (this.color) {
3455
- frame = source_default[this.color](frame);
3456
- }
3457
- __privateSet(this, _frameIndex, ++__privateWrapper(this, _frameIndex)._ % frames.length);
3458
- const fullPrefixText = typeof __privateGet(this, _prefixText) === "string" && __privateGet(this, _prefixText) !== "" ? __privateGet(this, _prefixText) + " " : "";
3459
- const fullText = typeof this.text === "string" ? " " + this.text : "";
3460
- const fullSuffixText = typeof __privateGet(this, _suffixText) === "string" && __privateGet(this, _suffixText) !== "" ? " " + __privateGet(this, _suffixText) : "";
3461
- return fullPrefixText + frame + fullText + fullSuffixText;
3462
- }
3463
- clear() {
3464
- if (!__privateGet(this, _isEnabled) || !__privateGet(this, _stream).isTTY) {
3465
- return this;
3466
- }
3467
- __privateGet(this, _stream).cursorTo(0);
3468
- for (let index = 0; index < __privateGet(this, _linesToClear); index++) {
3469
- if (index > 0) {
3470
- __privateGet(this, _stream).moveCursor(0, -1);
3471
- }
3472
- __privateGet(this, _stream).clearLine(1);
3473
- }
3474
- if (__privateGet(this, _indent) || this.lastIndent !== __privateGet(this, _indent)) {
3475
- __privateGet(this, _stream).cursorTo(__privateGet(this, _indent));
3476
- }
3477
- this.lastIndent = __privateGet(this, _indent);
3478
- __privateSet(this, _linesToClear, 0);
3479
- return this;
3480
- }
3481
- render() {
3482
- if (__privateGet(this, _isSilent)) {
3483
- return this;
3484
- }
3485
- this.clear();
3486
- __privateGet(this, _stream).write(this.frame());
3487
- __privateSet(this, _linesToClear, __privateGet(this, _lineCount));
3488
- return this;
3489
- }
3490
- start(text) {
3491
- if (text) {
3492
- this.text = text;
3493
- }
3494
- if (__privateGet(this, _isSilent)) {
3495
- return this;
3496
- }
3497
- if (!__privateGet(this, _isEnabled)) {
3498
- if (this.text) {
3499
- __privateGet(this, _stream).write(`- ${this.text}
3500
- `);
3501
- }
3502
- return this;
3503
- }
3504
- if (this.isSpinning) {
3505
- return this;
3506
- }
3507
- if (__privateGet(this, _options).hideCursor) {
3508
- cli_cursor_default.hide(__privateGet(this, _stream));
3509
- }
3510
- if (__privateGet(this, _options).discardStdin && _process3.default.stdin.isTTY) {
3511
- __privateSet(this, _isDiscardingStdin, true);
3512
- stdin_discarder_default.start();
3513
- }
3514
- this.render();
3515
- __privateSet(this, _id, setInterval(this.render.bind(this), this.interval));
3516
- return this;
3517
- }
3518
- stop() {
3519
- if (!__privateGet(this, _isEnabled)) {
3520
- return this;
3521
- }
3522
- clearInterval(__privateGet(this, _id));
3523
- __privateSet(this, _id, void 0);
3524
- __privateSet(this, _frameIndex, 0);
3525
- this.clear();
3526
- if (__privateGet(this, _options).hideCursor) {
3527
- cli_cursor_default.show(__privateGet(this, _stream));
3528
- }
3529
- if (__privateGet(this, _options).discardStdin && _process3.default.stdin.isTTY && __privateGet(this, _isDiscardingStdin)) {
3530
- stdin_discarder_default.stop();
3531
- __privateSet(this, _isDiscardingStdin, false);
3532
- }
3533
- return this;
3534
- }
3535
- succeed(text) {
3536
- return this.stopAndPersist({ symbol: log_symbols_default.success, text });
3537
- }
3538
- fail(text) {
3539
- return this.stopAndPersist({ symbol: log_symbols_default.error, text });
3540
- }
3541
- warn(text) {
3542
- return this.stopAndPersist({ symbol: log_symbols_default.warning, text });
3543
- }
3544
- info(text) {
3545
- return this.stopAndPersist({ symbol: log_symbols_default.info, text });
3546
- }
3547
- stopAndPersist(options = {}) {
3548
- if (__privateGet(this, _isSilent)) {
3549
- return this;
3550
- }
3551
- const prefixText = _nullishCoalesce(options.prefixText, () => ( __privateGet(this, _prefixText)));
3552
- const fullPrefixText = __privateMethod(this, _Ora_instances, getFullPrefixText_fn).call(this, prefixText, " ");
3553
- const symbolText = _nullishCoalesce(options.symbol, () => ( " "));
3554
- const text = _nullishCoalesce(options.text, () => ( this.text));
3555
- const fullText = typeof text === "string" ? " " + text : "";
3556
- const suffixText = _nullishCoalesce(options.suffixText, () => ( __privateGet(this, _suffixText)));
3557
- const fullSuffixText = __privateMethod(this, _Ora_instances, getFullSuffixText_fn).call(this, suffixText, " ");
3558
- const textToWrite = fullPrefixText + symbolText + fullText + fullSuffixText + "\n";
3559
- this.stop();
3560
- __privateGet(this, _stream).write(textToWrite);
3561
- return this;
3562
- }
3563
- };
3564
- _linesToClear = new WeakMap();
3565
- _isDiscardingStdin = new WeakMap();
3566
- _lineCount = new WeakMap();
3567
- _frameIndex = new WeakMap();
3568
- _options = new WeakMap();
3569
- _spinner = new WeakMap();
3570
- _stream = new WeakMap();
3571
- _id = new WeakMap();
3572
- _initialInterval = new WeakMap();
3573
- _isEnabled = new WeakMap();
3574
- _isSilent = new WeakMap();
3575
- _indent = new WeakMap();
3576
- _text = new WeakMap();
3577
- _prefixText = new WeakMap();
3578
- _suffixText = new WeakMap();
3579
- _Ora_instances = new WeakSet();
3580
- getFullPrefixText_fn = function(prefixText = __privateGet(this, _prefixText), postfix = " ") {
3581
- if (typeof prefixText === "string" && prefixText !== "") {
3582
- return prefixText + postfix;
3583
- }
3584
- if (typeof prefixText === "function") {
3585
- return prefixText() + postfix;
3586
- }
3587
- return "";
3588
- };
3589
- getFullSuffixText_fn = function(suffixText = __privateGet(this, _suffixText), prefix = " ") {
3590
- if (typeof suffixText === "string" && suffixText !== "") {
3591
- return prefix + suffixText;
3592
- }
3593
- if (typeof suffixText === "function") {
3594
- return prefix + suffixText();
3595
- }
3596
- return "";
3597
- };
3598
- updateLineCount_fn = function() {
3599
- const columns = _nullishCoalesce(__privateGet(this, _stream).columns, () => ( 80));
3600
- const fullPrefixText = __privateMethod(this, _Ora_instances, getFullPrefixText_fn).call(this, __privateGet(this, _prefixText), "-");
3601
- const fullSuffixText = __privateMethod(this, _Ora_instances, getFullSuffixText_fn).call(this, __privateGet(this, _suffixText), "-");
3602
- const fullText = " ".repeat(__privateGet(this, _indent)) + fullPrefixText + "--" + __privateGet(this, _text) + "--" + fullSuffixText;
3603
- __privateSet(this, _lineCount, 0);
3604
- for (const line of stripAnsi(fullText).split("\n")) {
3605
- __privateSet(this, _lineCount, __privateGet(this, _lineCount) + Math.max(1, Math.ceil(stringWidth(line, { countAnsiEscapeCodes: true }) / columns)));
3606
- }
3607
- };
3608
- function ora(options) {
3609
- return new Ora(options);
3610
- }
3611
-
3612
- // src/utils/spinner.ts
3613
- var spinner = ora({
3614
- spinner: "clock"
3615
- });
3616
-
3617
654
  // ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/index.js
3618
655
  init_cjs_shims();
3619
656
 
@@ -3834,7 +871,7 @@ var _util = require('util');
3834
871
 
3835
872
  // ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/utils/standard-stream.js
3836
873
  init_cjs_shims();
3837
-
874
+ var _process2 = require('process'); var _process3 = _interopRequireDefault(_process2);
3838
875
  var isStandardStream = (stream) => STANDARD_STREAMS.includes(stream);
3839
876
  var STANDARD_STREAMS = [_process3.default.stdin, _process3.default.stdout, _process3.default.stderr];
3840
877
  var STANDARD_STREAMS_ALIASES = ["stdin", "stdout", "stderr"];
@@ -3978,6 +1015,18 @@ init_cjs_shims();
3978
1015
 
3979
1016
  // ../../node_modules/.pnpm/figures@6.1.0/node_modules/figures/index.js
3980
1017
  init_cjs_shims();
1018
+
1019
+ // ../../node_modules/.pnpm/is-unicode-supported@2.0.0/node_modules/is-unicode-supported/index.js
1020
+ init_cjs_shims();
1021
+
1022
+ function isUnicodeSupported() {
1023
+ if (_process3.default.platform !== "win32") {
1024
+ return _process3.default.env.TERM !== "linux";
1025
+ }
1026
+ return Boolean(_process3.default.env.WT_SESSION) || Boolean(_process3.default.env.TERMINUS_SUBLIME) || _process3.default.env.ConEmuTask === "{cmd::Cmder}" || _process3.default.env.TERM_PROGRAM === "Terminus-Sublime" || _process3.default.env.TERM_PROGRAM === "vscode" || _process3.default.env.TERM === "xterm-256color" || _process3.default.env.TERM === "alacritty" || _process3.default.env.TERMINAL_EMULATOR === "JetBrains-JediTerm";
1027
+ }
1028
+
1029
+ // ../../node_modules/.pnpm/figures@6.1.0/node_modules/figures/index.js
3981
1030
  var common = {
3982
1031
  circleQuestionMark: "(?)",
3983
1032
  questionMarkPrefix: "(?)",
@@ -4248,7 +1297,7 @@ var specialFallbackSymbols = {
4248
1297
  };
4249
1298
  var mainSymbols = { ...common, ...specialMainSymbols };
4250
1299
  var fallbackSymbols = { ...common, ...specialFallbackSymbols };
4251
- var shouldUseMain = isUnicodeSupported2();
1300
+ var shouldUseMain = isUnicodeSupported();
4252
1301
  var figures = shouldUseMain ? mainSymbols : fallbackSymbols;
4253
1302
  var figures_default = figures;
4254
1303
  var replacements = Object.entries(specialMainSymbols);
@@ -4490,13 +1539,13 @@ init_cjs_shims();
4490
1539
  init_cjs_shims();
4491
1540
  function pathKey(options = {}) {
4492
1541
  const {
4493
- env: env2 = process.env,
1542
+ env = process.env,
4494
1543
  platform: platform2 = process.platform
4495
1544
  } = options;
4496
1545
  if (platform2 !== "win32") {
4497
1546
  return "PATH";
4498
1547
  }
4499
- return Object.keys(env2).reverse().find((key) => key.toUpperCase() === "PATH") || "Path";
1548
+ return Object.keys(env).reverse().find((key) => key.toUpperCase() === "PATH") || "Path";
4500
1549
  }
4501
1550
 
4502
1551
  // ../../node_modules/.pnpm/npm-run-path@5.3.0/node_modules/npm-run-path/index.js
@@ -4530,12 +1579,12 @@ var applyExecPath = (result, execPath2, cwdPath) => {
4530
1579
  const execPathString = execPath2 instanceof URL ? _url.fileURLToPath.call(void 0, execPath2) : execPath2;
4531
1580
  result.push(_path2.default.resolve(cwdPath, execPathString, ".."));
4532
1581
  };
4533
- var npmRunPathEnv = ({ env: env2 = _process3.default.env, ...options } = {}) => {
4534
- env2 = { ...env2 };
4535
- const pathName = pathKey({ env: env2 });
4536
- options.path = env2[pathName];
4537
- env2[pathName] = npmRunPath(options);
4538
- return env2;
1582
+ var npmRunPathEnv = ({ env = _process3.default.env, ...options } = {}) => {
1583
+ env = { ...env };
1584
+ const pathName = pathKey({ env });
1585
+ options.path = env[pathName];
1586
+ env[pathName] = npmRunPath(options);
1587
+ return env;
4539
1588
  };
4540
1589
 
4541
1590
  // ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/terminate/kill.js
@@ -4577,7 +1626,7 @@ setErrorName(ExecaSyncError, ExecaSyncError.name);
4577
1626
 
4578
1627
  // ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/terminate/signal.js
4579
1628
  init_cjs_shims();
4580
-
1629
+ var _os = require('os');
4581
1630
 
4582
1631
  // ../../node_modules/.pnpm/human-signals@8.0.0/node_modules/human-signals/build/src/main.js
4583
1632
  init_cjs_shims();
@@ -5923,17 +2972,17 @@ var addDefaultOptions = ({
5923
2972
  serialization
5924
2973
  });
5925
2974
  var getEnv = ({ env: envOption, extendEnv, preferLocal, node, localDirectory, nodePath }) => {
5926
- const env2 = extendEnv ? { ..._process3.default.env, ...envOption } : envOption;
2975
+ const env = extendEnv ? { ..._process3.default.env, ...envOption } : envOption;
5927
2976
  if (preferLocal || node) {
5928
2977
  return npmRunPathEnv({
5929
- env: env2,
2978
+ env,
5930
2979
  cwd: localDirectory,
5931
2980
  execPath: nodePath,
5932
2981
  preferLocal,
5933
2982
  addExecPath: node
5934
2983
  });
5935
2984
  }
5936
- return env2;
2985
+ return env;
5937
2986
  };
5938
2987
 
5939
2988
  // ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/return/result.js
@@ -7631,7 +4680,7 @@ init_cjs_shims();
7631
4680
 
7632
4681
  // ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/transform/generator.js
7633
4682
  init_cjs_shims();
7634
- var _stream2 = require('stream');
4683
+ var _stream = require('stream');
7635
4684
 
7636
4685
  // ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/transform/split.js
7637
4686
  init_cjs_shims();
@@ -7885,11 +4934,11 @@ var generatorToStream = ({
7885
4934
  const transformMethod = transformAsync ? pushChunks.bind(void 0, transformChunk, state) : pushChunksSync.bind(void 0, transformChunkSync);
7886
4935
  const finalMethod = transformAsync || finalAsync ? pushChunks.bind(void 0, finalChunks, state) : pushChunksSync.bind(void 0, finalChunksSync);
7887
4936
  const destroyMethod = transformAsync || finalAsync ? destroyTransform.bind(void 0, state) : void 0;
7888
- const stream = new (0, _stream2.Transform)({
4937
+ const stream = new (0, _stream.Transform)({
7889
4938
  writableObjectMode,
7890
- writableHighWaterMark: _stream2.getDefaultHighWaterMark.call(void 0, writableObjectMode),
4939
+ writableHighWaterMark: _stream.getDefaultHighWaterMark.call(void 0, writableObjectMode),
7891
4940
  readableObjectMode,
7892
- readableHighWaterMark: _stream2.getDefaultHighWaterMark.call(void 0, readableObjectMode),
4941
+ readableHighWaterMark: _stream.getDefaultHighWaterMark.call(void 0, readableObjectMode),
7893
4942
  transform(chunk, encoding2, done) {
7894
4943
  transformMethod([chunk, generators, 0], this, done);
7895
4944
  },
@@ -8534,15 +5583,15 @@ var createDummyStreams = (subprocess, fileDescriptors) => {
8534
5583
  });
8535
5584
  };
8536
5585
  var createDummyStream = () => {
8537
- const stream = new (0, _stream2.PassThrough)();
5586
+ const stream = new (0, _stream.PassThrough)();
8538
5587
  stream.end();
8539
5588
  return stream;
8540
5589
  };
8541
- var readable = () => new (0, _stream2.Readable)({ read() {
5590
+ var readable = () => new (0, _stream.Readable)({ read() {
8542
5591
  } });
8543
- var writable = () => new (0, _stream2.Writable)({ write() {
5592
+ var writable = () => new (0, _stream.Writable)({ write() {
8544
5593
  } });
8545
- var duplex = () => new (0, _stream2.Duplex)({ read() {
5594
+ var duplex = () => new (0, _stream.Duplex)({ read() {
8546
5595
  }, write() {
8547
5596
  } });
8548
5597
  var handleDummyPromise = async (error, verboseInfo, options) => handleResult(error, verboseInfo, options);
@@ -8563,7 +5612,7 @@ var addProperties2 = {
8563
5612
  nodeStream: ({ value }) => ({ stream: value }),
8564
5613
  webTransform({ value: { transform, writableObjectMode, readableObjectMode } }) {
8565
5614
  const objectMode = writableObjectMode || readableObjectMode;
8566
- const stream = _stream2.Duplex.fromWeb(transform, { objectMode });
5615
+ const stream = _stream.Duplex.fromWeb(transform, { objectMode });
8567
5616
  return { stream };
8568
5617
  },
8569
5618
  duplex: ({ value: { transform } }) => ({ stream: transform }),
@@ -8575,17 +5624,17 @@ var addPropertiesAsync = {
8575
5624
  ...addProperties2,
8576
5625
  fileUrl: ({ value }) => ({ stream: _fs.createReadStream.call(void 0, value) }),
8577
5626
  filePath: ({ value: { file } }) => ({ stream: _fs.createReadStream.call(void 0, file) }),
8578
- webStream: ({ value }) => ({ stream: _stream2.Readable.fromWeb(value) }),
8579
- iterable: ({ value }) => ({ stream: _stream2.Readable.from(value) }),
8580
- asyncIterable: ({ value }) => ({ stream: _stream2.Readable.from(value) }),
8581
- string: ({ value }) => ({ stream: _stream2.Readable.from(value) }),
8582
- uint8Array: ({ value }) => ({ stream: _stream2.Readable.from(_buffer.Buffer.from(value)) })
5627
+ webStream: ({ value }) => ({ stream: _stream.Readable.fromWeb(value) }),
5628
+ iterable: ({ value }) => ({ stream: _stream.Readable.from(value) }),
5629
+ asyncIterable: ({ value }) => ({ stream: _stream.Readable.from(value) }),
5630
+ string: ({ value }) => ({ stream: _stream.Readable.from(value) }),
5631
+ uint8Array: ({ value }) => ({ stream: _stream.Readable.from(_buffer.Buffer.from(value)) })
8583
5632
  },
8584
5633
  output: {
8585
5634
  ...addProperties2,
8586
5635
  fileUrl: ({ value }) => ({ stream: _fs.createWriteStream.call(void 0, value) }),
8587
5636
  filePath: ({ value: { file } }) => ({ stream: _fs.createWriteStream.call(void 0, file) }),
8588
- webStream: ({ value }) => ({ stream: _stream2.Writable.fromWeb(value) }),
5637
+ webStream: ({ value }) => ({ stream: _stream.Writable.fromWeb(value) }),
8589
5638
  iterable: forbiddenIfAsync,
8590
5639
  asyncIterable: forbiddenIfAsync,
8591
5640
  string: forbiddenIfAsync,
@@ -8622,13 +5671,13 @@ function mergeStreams(streams) {
8622
5671
  }
8623
5672
  var getHighWaterMark = (streams, objectMode) => {
8624
5673
  if (streams.length === 0) {
8625
- return _stream2.getDefaultHighWaterMark.call(void 0, objectMode);
5674
+ return _stream.getDefaultHighWaterMark.call(void 0, objectMode);
8626
5675
  }
8627
5676
  const highWaterMarks = streams.filter(({ readableObjectMode }) => readableObjectMode === objectMode).map(({ readableHighWaterMark }) => readableHighWaterMark);
8628
5677
  return Math.max(...highWaterMarks);
8629
5678
  };
8630
5679
  var _streams, _ended, _aborted, _onFinished, _unpipeEvent, _streamPromises;
8631
- var MergedStream = class extends _stream2.PassThrough {
5680
+ var MergedStream = class extends _stream.PassThrough {
8632
5681
  constructor() {
8633
5682
  super(...arguments);
8634
5683
  __privateAdd(this, _streams, /* @__PURE__ */ new Set([]));
@@ -8948,7 +5997,7 @@ if (process.platform === "linux") {
8948
5997
  }
8949
5998
 
8950
5999
  // ../../node_modules/.pnpm/signal-exit@4.1.0/node_modules/signal-exit/dist/mjs/index.js
8951
- var processOk = (process16) => !!process16 && typeof process16 === "object" && typeof process16.removeListener === "function" && typeof process16.emit === "function" && typeof process16.reallyExit === "function" && typeof process16.listeners === "function" && typeof process16.kill === "function" && typeof process16.pid === "number" && typeof process16.on === "function";
6000
+ var processOk = (process10) => !!process10 && typeof process10 === "object" && typeof process10.removeListener === "function" && typeof process10.emit === "function" && typeof process10.reallyExit === "function" && typeof process10.listeners === "function" && typeof process10.kill === "function" && typeof process10.pid === "number" && typeof process10.on === "function";
8952
6001
  var kExitEmitter = Symbol.for("signal-exit emitter");
8953
6002
  var global2 = globalThis;
8954
6003
  var ObjectDefineProperty = Object.defineProperty.bind(Object);
@@ -9031,13 +6080,13 @@ var SignalExitFallback = class extends SignalExitBase {
9031
6080
  };
9032
6081
  var _hupSig, _emitter, _process, _originalProcessEmit, _originalProcessReallyExit, _sigListeners, _loaded, _SignalExit_instances, processReallyExit_fn, processEmit_fn;
9033
6082
  var SignalExit = class extends SignalExitBase {
9034
- constructor(process16) {
6083
+ constructor(process10) {
9035
6084
  super();
9036
6085
  __privateAdd(this, _SignalExit_instances);
9037
6086
  // "SIGHUP" throws an `ENOSYS` error on Windows,
9038
6087
  // so use a supported signal instead
9039
6088
  /* c8 ignore start */
9040
- __privateAdd(this, _hupSig, process15.platform === "win32" ? "SIGINT" : "SIGHUP");
6089
+ __privateAdd(this, _hupSig, process9.platform === "win32" ? "SIGINT" : "SIGHUP");
9041
6090
  /* c8 ignore stop */
9042
6091
  __privateAdd(this, _emitter, new Emitter());
9043
6092
  __privateAdd(this, _process);
@@ -9045,13 +6094,13 @@ var SignalExit = class extends SignalExitBase {
9045
6094
  __privateAdd(this, _originalProcessReallyExit);
9046
6095
  __privateAdd(this, _sigListeners, {});
9047
6096
  __privateAdd(this, _loaded, false);
9048
- __privateSet(this, _process, process16);
6097
+ __privateSet(this, _process, process10);
9049
6098
  __privateSet(this, _sigListeners, {});
9050
6099
  for (const sig of signals) {
9051
6100
  __privateGet(this, _sigListeners)[sig] = () => {
9052
6101
  const listeners = __privateGet(this, _process).listeners(sig);
9053
6102
  let { count: count2 } = __privateGet(this, _emitter);
9054
- const p3 = process16;
6103
+ const p3 = process10;
9055
6104
  if (typeof p3.__signal_exit_emitter__ === "object" && typeof p3.__signal_exit_emitter__.count === "number") {
9056
6105
  count2 += p3.__signal_exit_emitter__.count;
9057
6106
  }
@@ -9060,12 +6109,12 @@ var SignalExit = class extends SignalExitBase {
9060
6109
  const ret = __privateGet(this, _emitter).emit("exit", null, sig);
9061
6110
  const s = sig === "SIGHUP" ? __privateGet(this, _hupSig) : sig;
9062
6111
  if (!ret)
9063
- process16.kill(process16.pid, s);
6112
+ process10.kill(process10.pid, s);
9064
6113
  }
9065
6114
  };
9066
6115
  }
9067
- __privateSet(this, _originalProcessReallyExit, process16.reallyExit);
9068
- __privateSet(this, _originalProcessEmit, process16.emit);
6116
+ __privateSet(this, _originalProcessReallyExit, process10.reallyExit);
6117
+ __privateSet(this, _originalProcessEmit, process10.emit);
9069
6118
  }
9070
6119
  onExit(cb, opts) {
9071
6120
  if (!processOk(__privateGet(this, _process))) {
@@ -9154,7 +6203,7 @@ processEmit_fn = function(ev, ...args) {
9154
6203
  return og.call(__privateGet(this, _process), ev, ...args);
9155
6204
  }
9156
6205
  };
9157
- var process15 = globalThis.process;
6206
+ var process9 = globalThis.process;
9158
6207
  var {
9159
6208
  /**
9160
6209
  * Called when the process is exiting, whether via signal, explicit
@@ -9182,7 +6231,7 @@ var {
9182
6231
  * @internal
9183
6232
  */
9184
6233
  unload
9185
- } = signalExitWrap(processOk(process15) ? new SignalExit(process15) : new SignalExitFallback());
6234
+ } = signalExitWrap(processOk(process9) ? new SignalExit(process9) : new SignalExitFallback());
9186
6235
 
9187
6236
  // ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/terminate/cleanup.js
9188
6237
  var cleanupOnExit = (subprocess, { cleanup, detached }, { signal }) => {
@@ -9527,7 +6576,7 @@ var iterateOnStream = ({ stream, controller, binary, shouldEncode, encoding, sho
9527
6576
  preserveNewlines
9528
6577
  });
9529
6578
  };
9530
- var DEFAULT_OBJECT_HIGH_WATER_MARK = _stream2.getDefaultHighWaterMark.call(void 0, true);
6579
+ var DEFAULT_OBJECT_HIGH_WATER_MARK = _stream.getDefaultHighWaterMark.call(void 0, true);
9531
6580
  var HIGH_WATER_MARK = DEFAULT_OBJECT_HIGH_WATER_MARK;
9532
6581
  var iterateOnData = async function* ({ onStdoutChunk, controller, binary, shouldEncode, encoding, shouldSplit, preserveNewlines }) {
9533
6582
  const generators = getGenerators({
@@ -10030,7 +7079,7 @@ var createReadable = ({ subprocess, concurrentStreams, encoding }, { from, binar
10030
7079
  encoding,
10031
7080
  preserveNewlines
10032
7081
  });
10033
- const readable2 = new (0, _stream2.Readable)({
7082
+ const readable2 = new (0, _stream.Readable)({
10034
7083
  read: read2,
10035
7084
  destroy: _util.callbackify.call(void 0, onReadableDestroy.bind(void 0, { subprocessStdout, subprocess, waitReadableDestroy })),
10036
7085
  highWaterMark: readableHighWaterMark,
@@ -10109,7 +7158,7 @@ init_cjs_shims();
10109
7158
 
10110
7159
  var createWritable = ({ subprocess, concurrentStreams }, { to } = {}) => {
10111
7160
  const { subprocessStdin, waitWritableFinal, waitWritableDestroy } = getSubprocessStdin(subprocess, to, concurrentStreams);
10112
- const writable2 = new (0, _stream2.Writable)({
7161
+ const writable2 = new (0, _stream.Writable)({
10113
7162
  ...getWritableMethods(subprocessStdin, subprocess, waitWritableFinal),
10114
7163
  destroy: _util.callbackify.call(void 0, onWritableDestroy.bind(void 0, {
10115
7164
  subprocessStdin,
@@ -10186,7 +7235,7 @@ var createDuplex = ({ subprocess, concurrentStreams, encoding }, { from, to, bin
10186
7235
  encoding,
10187
7236
  preserveNewlines
10188
7237
  });
10189
- const duplex2 = new (0, _stream2.Duplex)({
7238
+ const duplex2 = new (0, _stream.Duplex)({
10190
7239
  read: read2,
10191
7240
  ...getWritableMethods(subprocessStdin, subprocess, waitWritableFinal),
10192
7241
  destroy: _util.callbackify.call(void 0, onDuplexDestroy.bind(void 0, {
@@ -10562,73 +7611,64 @@ var {
10562
7611
  init_cjs_shims();
10563
7612
  var _logger = require('@kubb/core/logger');
10564
7613
  var _core = require('@kubb/core');
10565
- var _consola = require('consola');
10566
7614
 
10567
7615
  // src/utils/executeHooks.ts
10568
7616
  init_cjs_shims();
10569
-
10570
7617
  var _stringargv = require('string-argv');
10571
7618
 
10572
- // src/utils/OraWritable.ts
7619
+ // src/utils/Writables.ts
10573
7620
  init_cjs_shims();
10574
7621
 
10575
- var OraWritable = class extends _stream2.Writable {
10576
- constructor(spinner2, command, opts) {
7622
+ var ConsolaWritable = class extends _stream.Writable {
7623
+ constructor(consola, command, opts) {
10577
7624
  super(opts);
10578
7625
  this.command = command;
10579
- this.spinner = spinner2;
7626
+ this.consola = consola;
10580
7627
  }
10581
7628
  _write(chunk, _encoding, callback) {
10582
- this.spinner.suffixText = `
10583
-
10584
- ${p2.bold(p2.blue(this.command))}: ${_optionalChain([chunk, 'optionalAccess', _38 => _38.toString, 'call', _39 => _39()])}`;
7629
+ if (this.command) {
7630
+ this.consola.log(`${p2.bold(p2.blue(this.command))}: ${_optionalChain([chunk, 'optionalAccess', _38 => _38.toString, 'call', _39 => _39()])}`);
7631
+ } else {
7632
+ this.consola.log(`${p2.bold(p2.blue(this.command))}: ${_optionalChain([chunk, 'optionalAccess', _40 => _40.toString, 'call', _41 => _41()])}`);
7633
+ }
10585
7634
  callback();
10586
7635
  }
10587
7636
  };
10588
7637
 
10589
7638
  // src/utils/executeHooks.ts
10590
- async function executeHooks({ hooks, logLevel }) {
10591
- if (!_optionalChain([hooks, 'optionalAccess', _40 => _40.done])) {
10592
- return;
10593
- }
10594
- const commands = Array.isArray(hooks.done) ? hooks.done : [hooks.done];
10595
- if (logLevel === _logger.LogLevel.silent) {
10596
- spinner.start("Executing hooks");
10597
- }
10598
- const executers = commands.map(async (command) => {
10599
- const oraWritable = new OraWritable(spinner, command);
7639
+
7640
+ async function executeHooks({ hooks, logger }) {
7641
+ const commands = Array.isArray(hooks.done) ? hooks.done : [hooks.done].filter(Boolean);
7642
+ const executors = commands.map(async (command) => {
7643
+ const consolaWritable = new ConsolaWritable(logger.consola, command);
10600
7644
  const abortController = new AbortController();
10601
7645
  const [cmd, ..._args] = [..._stringargv.parseArgsStringToArgv.call(void 0, command)];
10602
7646
  if (!cmd) {
10603
7647
  return null;
10604
7648
  }
10605
- spinner.start(`Executing hook ${logLevel !== "silent" ? p2.dim(command) : ""}`);
7649
+ logger.emit("start", `Executing hook ${logger.logLevel !== _logger.LogMapper.silent ? p2.dim(command) : ""}`);
10606
7650
  const subProcess = await execa(cmd, _args, {
10607
7651
  detached: true,
10608
7652
  cancelSignal: abortController.signal,
10609
- stdout: ["pipe", oraWritable]
7653
+ stdout: logger.logLevel === _logger.LogMapper.silent ? void 0 : ["pipe", consolaWritable]
10610
7654
  });
10611
- spinner.suffixText = "";
10612
- if (logLevel === _logger.LogLevel.silent) {
10613
- spinner.succeed(`Executing hook ${logLevel !== "silent" ? p2.dim(command) : ""}`);
10614
- if (subProcess) {
10615
- console.log(subProcess.stdout);
10616
- }
7655
+ logger.emit("success", `Executing hook ${logger.logLevel !== _logger.LogMapper.silent ? p2.dim(command) : ""}`);
7656
+ if (subProcess) {
7657
+ logger.emit("info", `Executing hooks
7658
+ ${subProcess.stdout}`);
10617
7659
  }
10618
- oraWritable.destroy();
7660
+ consolaWritable.destroy();
10619
7661
  return { subProcess, abort: abortController.abort.bind(abortController) };
10620
7662
  }).filter(Boolean);
10621
- await Promise.all(executers);
10622
- if (logLevel === _logger.LogLevel.silent) {
10623
- spinner.succeed("Executing hooks");
10624
- }
7663
+ await Promise.all(executors);
7664
+ logger.emit("success", "Executing hooks");
10625
7665
  }
10626
7666
 
10627
7667
  // src/utils/getErrorCauses.ts
10628
7668
  init_cjs_shims();
10629
7669
  function getErrorCauses(errors) {
10630
7670
  return errors.reduce((prev, error) => {
10631
- const causedError = _optionalChain([error, 'optionalAccess', _41 => _41.cause]);
7671
+ const causedError = _optionalChain([error, 'optionalAccess', _42 => _42.cause]);
10632
7672
  if (causedError) {
10633
7673
  prev = [...prev, ...getErrorCauses([causedError])];
10634
7674
  return prev;
@@ -10651,50 +7691,44 @@ function parseHrtimeToSeconds(hrtime2) {
10651
7691
  }
10652
7692
 
10653
7693
  // src/utils/getSummary.ts
10654
- function getSummary({ pluginManager, status, hrstart, config, logger }) {
10655
- const { logLevel } = logger;
7694
+ function getSummary({ pluginManager, status, hrStart, config, logger }) {
10656
7695
  const logs = [];
10657
- const elapsedSeconds = parseHrtimeToSeconds(process.hrtime(hrstart));
7696
+ const elapsedSeconds = parseHrtimeToSeconds(process.hrtime(hrStart));
10658
7697
  const buildStartPlugins = pluginManager.executed.filter((item) => item.hookName === "buildStart" && item.plugin.name !== "core").map((item) => item.plugin.name);
10659
7698
  const buildEndPlugins = pluginManager.executed.filter((item) => item.hookName === "buildEnd" && item.plugin.name !== "core").map((item) => item.plugin.name);
10660
- const failedPlugins = _optionalChain([config, 'access', _42 => _42.plugins, 'optionalAccess', _43 => _43.filter, 'call', _44 => _44((plugin) => !buildEndPlugins.includes(plugin.name)), 'optionalAccess', _45 => _45.map, 'call', _46 => _46((plugin) => plugin.name)]);
10661
- const pluginsCount = _optionalChain([config, 'access', _47 => _47.plugins, 'optionalAccess', _48 => _48.length]) || 0;
7699
+ const failedPlugins = _optionalChain([config, 'access', _43 => _43.plugins, 'optionalAccess', _44 => _44.filter, 'call', _45 => _45((plugin) => !buildEndPlugins.includes(plugin.name)), 'optionalAccess', _46 => _46.map, 'call', _47 => _47((plugin) => plugin.name)]);
7700
+ const pluginsCount = _optionalChain([config, 'access', _48 => _48.plugins, 'optionalAccess', _49 => _49.length]) || 0;
10662
7701
  const files = pluginManager.fileManager.files.sort((a3, b) => {
10663
- if (!_optionalChain([a3, 'access', _49 => _49.meta, 'optionalAccess', _50 => _50.pluginKey, 'optionalAccess', _51 => _51[0]]) || !_optionalChain([b, 'access', _52 => _52.meta, 'optionalAccess', _53 => _53.pluginKey, 'optionalAccess', _54 => _54[0]])) {
7702
+ if (!_optionalChain([a3, 'access', _50 => _50.meta, 'optionalAccess', _51 => _51.pluginKey, 'optionalAccess', _52 => _52[0]]) || !_optionalChain([b, 'access', _53 => _53.meta, 'optionalAccess', _54 => _54.pluginKey, 'optionalAccess', _55 => _55[0]])) {
10664
7703
  return 0;
10665
7704
  }
10666
- if (_optionalChain([a3, 'access', _55 => _55.meta, 'optionalAccess', _56 => _56.pluginKey, 'optionalAccess', _57 => _57[0], 'optionalAccess', _58 => _58.length]) < _optionalChain([b, 'access', _59 => _59.meta, 'optionalAccess', _60 => _60.pluginKey, 'optionalAccess', _61 => _61[0], 'optionalAccess', _62 => _62.length])) {
7705
+ if (_optionalChain([a3, 'access', _56 => _56.meta, 'optionalAccess', _57 => _57.pluginKey, 'optionalAccess', _58 => _58[0], 'optionalAccess', _59 => _59.length]) < _optionalChain([b, 'access', _60 => _60.meta, 'optionalAccess', _61 => _61.pluginKey, 'optionalAccess', _62 => _62[0], 'optionalAccess', _63 => _63.length])) {
10667
7706
  return 1;
10668
7707
  }
10669
- if (_optionalChain([a3, 'access', _63 => _63.meta, 'optionalAccess', _64 => _64.pluginKey, 'optionalAccess', _65 => _65[0], 'optionalAccess', _66 => _66.length]) > _optionalChain([b, 'access', _67 => _67.meta, 'optionalAccess', _68 => _68.pluginKey, 'optionalAccess', _69 => _69[0], 'optionalAccess', _70 => _70.length])) {
7708
+ if (_optionalChain([a3, 'access', _64 => _64.meta, 'optionalAccess', _65 => _65.pluginKey, 'optionalAccess', _66 => _66[0], 'optionalAccess', _67 => _67.length]) > _optionalChain([b, 'access', _68 => _68.meta, 'optionalAccess', _69 => _69.pluginKey, 'optionalAccess', _70 => _70[0], 'optionalAccess', _71 => _71.length])) {
10670
7709
  return -1;
10671
7710
  }
10672
7711
  return 0;
10673
7712
  });
10674
7713
  const meta = {
10675
- name: config.name,
10676
- plugins: status === "success" ? `${p2.green(`${buildStartPlugins.length} successful`)}, ${pluginsCount} total` : `${p2.red(`${_nullishCoalesce(_optionalChain([failedPlugins, 'optionalAccess', _71 => _71.length]), () => ( 1))} failed`)}, ${pluginsCount} total`,
10677
- pluginsFailed: status === "failed" ? _optionalChain([failedPlugins, 'optionalAccess', _72 => _72.map, 'call', _73 => _73((name) => _logger.randomCliColour.call(void 0, name)), 'optionalAccess', _74 => _74.join, 'call', _75 => _75(", ")]) : void 0,
7714
+ plugins: status === "success" ? `${p2.green(`${buildStartPlugins.length} successful`)}, ${pluginsCount} total` : `${p2.red(`${_nullishCoalesce(_optionalChain([failedPlugins, 'optionalAccess', _72 => _72.length]), () => ( 1))} failed`)}, ${pluginsCount} total`,
7715
+ pluginsFailed: status === "failed" ? _optionalChain([failedPlugins, 'optionalAccess', _73 => _73.map, 'call', _74 => _74((name) => _logger.randomCliColour.call(void 0, name)), 'optionalAccess', _75 => _75.join, 'call', _76 => _76(", ")]) : void 0,
10678
7716
  filesCreated: files.length,
10679
- time: p2.yellow(`${elapsedSeconds}s`),
10680
- endTime: p2.yellow(Date()),
7717
+ time: `${p2.yellow(`${elapsedSeconds}s`)} - finished at ${p2.yellow((/* @__PURE__ */ new Date()).toLocaleString("en-GB", { timeZone: "UTC" }))}`,
10681
7718
  output: _path2.default.isAbsolute(config.root) ? _path2.default.resolve(config.root, config.output.path) : config.root
10682
7719
  };
10683
7720
  logger.emit("debug", ["\nGenerated files:\n"]);
10684
7721
  logger.emit(
10685
7722
  "debug",
10686
- files.map((file) => `${_logger.randomCliColour.call(void 0, JSON.stringify(_optionalChain([file, 'access', _76 => _76.meta, 'optionalAccess', _77 => _77.pluginKey])))} ${file.path}`)
7723
+ files.map((file) => `${_logger.randomCliColour.call(void 0, JSON.stringify(_optionalChain([file, 'access', _77 => _77.meta, 'optionalAccess', _78 => _78.pluginKey])))} ${file.path}`)
10687
7724
  );
10688
7725
  logs.push(
10689
7726
  [
10690
- ["\n", true],
10691
- [` ${p2.bold("Name:")} ${meta.name}`, !!meta.name],
10692
- [` ${p2.bold("Plugins:")} ${meta.plugins}`, true],
10693
- [` ${p2.dim("Failed:")} ${meta.pluginsFailed || "none"}`, !!meta.pluginsFailed],
7727
+ [`${p2.bold("Plugins:")} ${meta.plugins}`, true],
7728
+ [`${p2.dim("Failed:")} ${meta.pluginsFailed || "none"}`, !!meta.pluginsFailed],
10694
7729
  [`${p2.bold("Generated:")} ${meta.filesCreated} files`, true],
10695
- [` ${p2.bold("Time:")} ${meta.time}`, true],
10696
- [` ${p2.bold("Ended:")} ${meta.endTime}`, true],
10697
- [` ${p2.bold("Output:")} ${meta.output}`, true]
7730
+ [`${p2.bold("Time:")} ${meta.time}`, true],
7731
+ [`${p2.bold("Output:")} ${meta.output}`, true]
10698
7732
  ].map((item) => {
10699
7733
  if (item.at(1)) {
10700
7734
  return item.at(0);
@@ -10723,38 +7757,20 @@ async function writeLog(data) {
10723
7757
  }
10724
7758
 
10725
7759
  // src/generate.ts
7760
+
7761
+ var _cliprogress = require('cli-progress');
10726
7762
  async function generate({ input, config, args }) {
10727
- const logLevel = args.logLevel || _logger.LogLevel.silent;
7763
+ const logLevel = _logger.LogMapper[args.logLevel] || 3;
10728
7764
  const logger = _logger.createLogger.call(void 0, {
10729
7765
  logLevel,
10730
- name: config.name,
10731
- spinner,
10732
- consola: _consola.createConsola.call(void 0, {
10733
- level: _logger.LogMapper[logLevel] || 3
10734
- })
7766
+ name: config.name
10735
7767
  });
10736
7768
  logger.on("debug", async (messages) => {
10737
- if (logLevel === _logger.LogLevel.debug) {
10738
- await writeLog(messages.join("\n"));
10739
- }
7769
+ await writeLog(messages.join("\n"));
10740
7770
  });
10741
- _optionalChain([logger, 'access', _78 => _78.consola, 'optionalAccess', _79 => _79.wrapConsole, 'call', _80 => _80()]);
10742
- if (logger.name) {
10743
- spinner.prefixText = _logger.randomCliColour.call(void 0, logger.name);
10744
- }
10745
- const hrstart = process.hrtime();
10746
- if (args.logLevel === _logger.LogLevel.debug) {
10747
- const { performance, PerformanceObserver } = await Promise.resolve().then(() => _interopRequireWildcard(require("perf_hooks")));
10748
- const performanceOpserver = new PerformanceObserver((items) => {
10749
- const message = `${_optionalChain([items, 'access', _81 => _81.getEntries, 'call', _82 => _82(), 'access', _83 => _83[0], 'optionalAccess', _84 => _84.duration, 'access', _85 => _85.toFixed, 'call', _86 => _86(0)])}ms`;
10750
- spinner.suffixText = p2.yellow(message);
10751
- performance.clearMarks();
10752
- });
10753
- performanceOpserver.observe({ type: "measure" });
10754
- }
10755
7771
  const { root = process.cwd(), ...userConfig } = config;
10756
7772
  const inputPath = _nullishCoalesce(input, () => ( ("path" in userConfig.input ? userConfig.input.path : void 0)));
10757
- spinner.start(`\u{1F680} Building ${logLevel !== "silent" ? p2.dim(inputPath) : ""}`);
7773
+ logger.emit("start", `\u{1F680} Building ${logLevel !== _logger.LogMapper.silent ? p2.dim(inputPath) : ""}`);
10758
7774
  const definedConfig = {
10759
7775
  root,
10760
7776
  ...userConfig,
@@ -10767,6 +7783,7 @@ async function generate({ input, config, args }) {
10767
7783
  ...userConfig.output
10768
7784
  }
10769
7785
  };
7786
+ const hrStart = process.hrtime();
10770
7787
  const { pluginManager, error } = await _core.safeBuild.call(void 0, {
10771
7788
  config: definedConfig,
10772
7789
  logger
@@ -10775,30 +7792,42 @@ async function generate({ input, config, args }) {
10775
7792
  pluginManager,
10776
7793
  config: definedConfig,
10777
7794
  status: error ? "failed" : "success",
10778
- hrstart,
7795
+ hrStart,
10779
7796
  logger
10780
7797
  });
10781
- if (error) {
10782
- spinner.suffixText = "";
10783
- spinner.fail(`\u{1F680} Build failed ${logLevel !== "silent" ? p2.dim(inputPath) : ""}`);
10784
- console.log(summary.join(""));
10785
- if (error instanceof _core.Warning) {
10786
- spinner.warn(p2.yellow(error.message));
10787
- process.exit(0);
10788
- }
7798
+ if (error && logger.consola) {
7799
+ logger.consola.error(`\u{1F680} Build failed ${logLevel !== _logger.LogMapper.silent ? p2.dim(inputPath) : ""}`);
7800
+ logger.consola.box({
7801
+ title: `${config.name || ""}`,
7802
+ message: summary.join(""),
7803
+ style: {
7804
+ padding: 2,
7805
+ borderColor: "red",
7806
+ borderStyle: "rounded"
7807
+ }
7808
+ });
10789
7809
  const errors = getErrorCauses([error]);
10790
- if (logger.consola && errors.length && logLevel === _logger.LogLevel.debug) {
7810
+ if (logger.consola && errors.length && logLevel === _logger.LogMapper.debug) {
10791
7811
  errors.forEach((err) => {
10792
- logger.consola.error(err);
7812
+ _optionalChain([logger, 'access', _79 => _79.consola, 'optionalAccess', _80 => _80.error, 'call', _81 => _81(err)]);
10793
7813
  });
10794
7814
  }
10795
- _optionalChain([logger, 'access', _87 => _87.consola, 'optionalAccess', _88 => _88.error, 'call', _89 => _89(error)]);
7815
+ _optionalChain([logger, 'access', _82 => _82.consola, 'optionalAccess', _83 => _83.error, 'call', _84 => _84(error)]);
10796
7816
  process.exit(0);
10797
7817
  }
10798
- await executeHooks({ hooks: config.hooks, logLevel });
10799
- spinner.suffixText = "";
10800
- spinner.succeed(`\u{1F680} Build completed ${logLevel !== "silent" ? p2.dim(inputPath) : ""}`);
10801
- console.log(summary.join(""));
7818
+ if (config.hooks) {
7819
+ await executeHooks({ hooks: config.hooks, logger });
7820
+ }
7821
+ _optionalChain([logger, 'access', _85 => _85.consola, 'optionalAccess', _86 => _86.success, 'call', _87 => _87(`\u{1F680} Build completed ${logLevel !== _logger.LogMapper.silent ? p2.dim(inputPath) : ""}`)]);
7822
+ _optionalChain([logger, 'access', _88 => _88.consola, 'optionalAccess', _89 => _89.box, 'call', _90 => _90({
7823
+ title: `${config.name || ""}`,
7824
+ message: summary.join(""),
7825
+ style: {
7826
+ padding: 2,
7827
+ borderColor: "green",
7828
+ borderStyle: "rounded"
7829
+ }
7830
+ })]);
10802
7831
  }
10803
7832
 
10804
7833
 
@@ -10806,6 +7835,5 @@ async function generate({ input, config, args }) {
10806
7835
 
10807
7836
 
10808
7837
 
10809
-
10810
- exports.init_cjs_shims = init_cjs_shims; exports.p = p2; exports.spinner = spinner; exports.execa = execa; exports.generate = generate;
10811
- //# sourceMappingURL=chunk-NKSXZ2SM.cjs.map
7838
+ exports.init_cjs_shims = init_cjs_shims; exports.p = p2; exports.execa = execa; exports.generate = generate;
7839
+ //# sourceMappingURL=chunk-7CMTKETP.cjs.map