@kubb/cli 3.0.0-alpha.3 → 3.0.0-alpha.5

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.
@@ -58,1907 +58,6 @@ var init_cjs_shims = __esm({
58
58
  }
59
59
  });
60
60
 
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
61
  // ../../node_modules/.pnpm/isexe@2.0.0/node_modules/isexe/windows.js
1963
62
  var require_windows = __commonJS({
1964
63
  "../../node_modules/.pnpm/isexe@2.0.0/node_modules/isexe/windows.js"(exports, module) {
@@ -2218,7 +317,7 @@ var require_resolveCommand = __commonJS({
2218
317
  var which = require_which();
2219
318
  var getPathKey = require_path_key();
2220
319
  function resolveCommandAttempt(parsed, withoutPathExt) {
2221
- const env2 = parsed.options.env || process.env;
320
+ const env = parsed.options.env || process.env;
2222
321
  const cwd = process.cwd();
2223
322
  const hasCustomCwd = parsed.options.cwd != null;
2224
323
  const shouldSwitchCwd = hasCustomCwd && process.chdir !== void 0 && !process.chdir.disabled;
@@ -2231,7 +330,7 @@ var require_resolveCommand = __commonJS({
2231
330
  let resolved;
2232
331
  try {
2233
332
  resolved = which.sync(parsed.command, {
2234
- path: env2[getPathKey({ env: env2 })],
333
+ path: env[getPathKey({ env })],
2235
334
  pathExt: withoutPathExt ? path6.delimiter : void 0
2236
335
  });
2237
336
  } catch (e) {
@@ -2473,1146 +572,255 @@ var require_cross_spawn = __commonJS({
2473
572
  }
2474
573
  });
2475
574
 
2476
- // ../../node_modules/.pnpm/tinyrainbow@1.2.0/node_modules/tinyrainbow/dist/node.js
2477
- init_cjs_shims();
2478
-
2479
- // ../../node_modules/.pnpm/tinyrainbow@1.2.0/node_modules/tinyrainbow/dist/chunk-BVHSVHOK.js
2480
- init_cjs_shims();
2481
- var f = {
2482
- reset: [0, 0],
2483
- bold: [1, 22, "\x1B[22m\x1B[1m"],
2484
- dim: [2, 22, "\x1B[22m\x1B[2m"],
2485
- italic: [3, 23],
2486
- underline: [4, 24],
2487
- inverse: [7, 27],
2488
- hidden: [8, 28],
2489
- strikethrough: [9, 29],
2490
- black: [30, 39],
2491
- red: [31, 39],
2492
- green: [32, 39],
2493
- yellow: [33, 39],
2494
- blue: [34, 39],
2495
- magenta: [35, 39],
2496
- cyan: [36, 39],
2497
- white: [37, 39],
2498
- gray: [90, 39],
2499
- bgBlack: [40, 49],
2500
- bgRed: [41, 49],
2501
- bgGreen: [42, 49],
2502
- bgYellow: [43, 49],
2503
- bgBlue: [44, 49],
2504
- bgMagenta: [45, 49],
2505
- bgCyan: [46, 49],
2506
- bgWhite: [47, 49],
2507
- blackBright: [90, 39],
2508
- redBright: [91, 39],
2509
- greenBright: [92, 39],
2510
- yellowBright: [93, 39],
2511
- blueBright: [94, 39],
2512
- magentaBright: [95, 39],
2513
- cyanBright: [96, 39],
2514
- whiteBright: [97, 39],
2515
- bgBlackBright: [100, 49],
2516
- bgRedBright: [101, 49],
2517
- bgGreenBright: [102, 49],
2518
- bgYellowBright: [103, 49],
2519
- bgBlueBright: [104, 49],
2520
- bgMagentaBright: [105, 49],
2521
- bgCyanBright: [106, 49],
2522
- bgWhiteBright: [107, 49]
2523
- };
2524
- var h = Object.entries(f);
2525
- function a(n2) {
2526
- return String(n2);
2527
- }
2528
- a.open = "";
2529
- a.close = "";
2530
- function C(n2 = false) {
2531
- let e = typeof process != "undefined" ? process : void 0, i2 = (e == null ? void 0 : e.env) || {}, g = (e == null ? void 0 : e.argv) || [];
2532
- return !("NO_COLOR" in i2 || g.includes("--no-color")) && ("FORCE_COLOR" in i2 || g.includes("--color") || (e == null ? void 0 : e.platform) === "win32" || n2 && i2.TERM !== "dumb" || "CI" in i2) || typeof window != "undefined" && !!window.chrome;
2533
- }
2534
- function p(n2 = false) {
2535
- let e = C(n2), i2 = (r2, t, c3, o2) => {
2536
- let l = "", s = 0;
2537
- do
2538
- l += r2.substring(s, o2) + c3, s = o2 + t.length, o2 = r2.indexOf(t, s);
2539
- while (~o2);
2540
- return l + r2.substring(s);
2541
- }, g = (r2, t, c3 = r2) => {
2542
- let o2 = (l) => {
2543
- let s = String(l), b = s.indexOf(t, r2.length);
2544
- return ~b ? r2 + i2(s, t, c3, b) + t : r2 + s + t;
575
+ // ../../node_modules/.pnpm/eventemitter3@5.0.1/node_modules/eventemitter3/index.js
576
+ var require_eventemitter3 = __commonJS({
577
+ "../../node_modules/.pnpm/eventemitter3@5.0.1/node_modules/eventemitter3/index.js"(exports, module) {
578
+ "use strict";
579
+ init_cjs_shims();
580
+ var has = Object.prototype.hasOwnProperty;
581
+ var prefix = "~";
582
+ function Events() {
583
+ }
584
+ if (Object.create) {
585
+ Events.prototype = /* @__PURE__ */ Object.create(null);
586
+ if (!new Events().__proto__) prefix = false;
587
+ }
588
+ function EE(fn, context, once9) {
589
+ this.fn = fn;
590
+ this.context = context;
591
+ this.once = once9 || false;
592
+ }
593
+ function addListener(emitter, event, fn, context, once9) {
594
+ if (typeof fn !== "function") {
595
+ throw new TypeError("The listener must be a function");
596
+ }
597
+ var listener = new EE(fn, context || emitter, once9), evt = prefix ? prefix + event : event;
598
+ if (!emitter._events[evt]) emitter._events[evt] = listener, emitter._eventsCount++;
599
+ else if (!emitter._events[evt].fn) emitter._events[evt].push(listener);
600
+ else emitter._events[evt] = [emitter._events[evt], listener];
601
+ return emitter;
602
+ }
603
+ function clearEvent(emitter, evt) {
604
+ if (--emitter._eventsCount === 0) emitter._events = new Events();
605
+ else delete emitter._events[evt];
606
+ }
607
+ function EventEmitter3() {
608
+ this._events = new Events();
609
+ this._eventsCount = 0;
610
+ }
611
+ EventEmitter3.prototype.eventNames = function eventNames() {
612
+ var names = [], events, name;
613
+ if (this._eventsCount === 0) return names;
614
+ for (name in events = this._events) {
615
+ if (has.call(events, name)) names.push(prefix ? name.slice(1) : name);
616
+ }
617
+ if (Object.getOwnPropertySymbols) {
618
+ return names.concat(Object.getOwnPropertySymbols(events));
619
+ }
620
+ return names;
2545
621
  };
2546
- return o2.open = r2, o2.close = t, o2;
2547
- }, u2 = {
2548
- isColorSupported: e
2549
- }, d = (r2) => `\x1B[${r2}m`;
2550
- for (let [r2, t] of h)
2551
- u2[r2] = e ? g(
2552
- d(t[0]),
2553
- d(t[1]),
2554
- t[2]
2555
- ) : a;
2556
- return u2;
2557
- }
2558
-
2559
- // ../../node_modules/.pnpm/tinyrainbow@1.2.0/node_modules/tinyrainbow/dist/node.js
2560
- var _tty = require('tty'); var _tty2 = _interopRequireDefault(_tty);
2561
- var p2 = p(_tty.isatty.call(void 0, 1));
2562
-
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;
622
+ EventEmitter3.prototype.listeners = function listeners(event) {
623
+ var evt = prefix ? prefix + event : event, handlers = this._events[evt];
624
+ if (!handlers) return [];
625
+ if (handlers.fn) return [handlers.fn];
626
+ for (var i2 = 0, l = handlers.length, ee = new Array(l); i2 < l; i2++) {
627
+ ee[i2] = handlers[i2].fn;
628
+ }
629
+ return ee;
630
+ };
631
+ EventEmitter3.prototype.listenerCount = function listenerCount(event) {
632
+ var evt = prefix ? prefix + event : event, listeners = this._events[evt];
633
+ if (!listeners) return 0;
634
+ if (listeners.fn) return 1;
635
+ return listeners.length;
636
+ };
637
+ EventEmitter3.prototype.emit = function emit(event, a1, a22, a3, a4, a5) {
638
+ var evt = prefix ? prefix + event : event;
639
+ if (!this._events[evt]) return false;
640
+ var listeners = this._events[evt], len = arguments.length, args, i2;
641
+ if (listeners.fn) {
642
+ if (listeners.once) this.removeListener(event, listeners.fn, void 0, true);
643
+ switch (len) {
644
+ case 1:
645
+ return listeners.fn.call(listeners.context), true;
646
+ case 2:
647
+ return listeners.fn.call(listeners.context, a1), true;
648
+ case 3:
649
+ return listeners.fn.call(listeners.context, a1, a22), true;
650
+ case 4:
651
+ return listeners.fn.call(listeners.context, a1, a22, a3), true;
652
+ case 5:
653
+ return listeners.fn.call(listeners.context, a1, a22, a3, a4), true;
654
+ case 6:
655
+ return listeners.fn.call(listeners.context, a1, a22, a3, a4, a5), true;
2733
656
  }
2734
- const value = Math.max(red2, green2, blue2) * 2;
2735
- if (value === 0) {
2736
- return 30;
657
+ for (i2 = 1, args = new Array(len - 1); i2 < len; i2++) {
658
+ args[i2 - 1] = arguments[i2];
2737
659
  }
2738
- let result = 30 + (Math.round(blue2) << 2 | Math.round(green2) << 1 | Math.round(red2));
2739
- if (value === 2) {
2740
- result += 60;
660
+ listeners.fn.apply(listeners.context, args);
661
+ } else {
662
+ var length = listeners.length, j;
663
+ for (i2 = 0; i2 < length; i2++) {
664
+ if (listeners[i2].once) this.removeListener(event, listeners[i2].fn, void 0, true);
665
+ switch (len) {
666
+ case 1:
667
+ listeners[i2].fn.call(listeners[i2].context);
668
+ break;
669
+ case 2:
670
+ listeners[i2].fn.call(listeners[i2].context, a1);
671
+ break;
672
+ case 3:
673
+ listeners[i2].fn.call(listeners[i2].context, a1, a22);
674
+ break;
675
+ case 4:
676
+ listeners[i2].fn.call(listeners[i2].context, a1, a22, a3);
677
+ break;
678
+ default:
679
+ if (!args) for (j = 1, args = new Array(len - 1); j < len; j++) {
680
+ args[j - 1] = arguments[j];
681
+ }
682
+ listeners[i2].fn.apply(listeners[i2].context, args);
683
+ }
2741
684
  }
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
685
  }
2858
- case "Apple_Terminal": {
2859
- return 2;
686
+ return true;
687
+ };
688
+ EventEmitter3.prototype.on = function on6(event, fn, context) {
689
+ return addListener(this, event, fn, context, false);
690
+ };
691
+ EventEmitter3.prototype.once = function once9(event, fn, context) {
692
+ return addListener(this, event, fn, context, true);
693
+ };
694
+ EventEmitter3.prototype.removeListener = function removeListener(event, fn, context, once9) {
695
+ var evt = prefix ? prefix + event : event;
696
+ if (!this._events[evt]) return this;
697
+ if (!fn) {
698
+ clearEvent(this, evt);
699
+ return this;
2860
700
  }
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);
701
+ var listeners = this._events[evt];
702
+ if (listeners.fn) {
703
+ if (listeners.fn === fn && (!once9 || listeners.once) && (!context || listeners.context === context)) {
704
+ clearEvent(this, evt);
3361
705
  }
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);
706
+ } else {
707
+ for (var i2 = 0, events = [], length = listeners.length; i2 < length; i2++) {
708
+ if (listeners[i2].fn !== fn || once9 && !listeners[i2].once || context && listeners[i2].context !== context) {
709
+ events.push(listeners[i2]);
710
+ }
3371
711
  }
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);
712
+ if (events.length) this._events[evt] = events.length === 1 ? events[0] : events;
713
+ else clearEvent(this, evt);
3471
714
  }
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
715
  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
- `);
716
+ };
717
+ EventEmitter3.prototype.removeAllListeners = function removeAllListeners(event) {
718
+ var evt;
719
+ if (event) {
720
+ evt = prefix ? prefix + event : event;
721
+ if (this._events[evt]) clearEvent(this, evt);
722
+ } else {
723
+ this._events = new Events();
724
+ this._eventsCount = 0;
3501
725
  }
3502
726
  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)));
727
+ };
728
+ EventEmitter3.prototype.off = EventEmitter3.prototype.removeListener;
729
+ EventEmitter3.prototype.addListener = EventEmitter3.prototype.on;
730
+ EventEmitter3.prefixed = prefix;
731
+ EventEmitter3.EventEmitter = EventEmitter3;
732
+ if ("undefined" !== typeof module) {
733
+ module.exports = EventEmitter3;
734
+ }
3606
735
  }
736
+ });
737
+
738
+ // ../../node_modules/.pnpm/tinyrainbow@1.2.0/node_modules/tinyrainbow/dist/node.js
739
+ init_cjs_shims();
740
+
741
+ // ../../node_modules/.pnpm/tinyrainbow@1.2.0/node_modules/tinyrainbow/dist/chunk-BVHSVHOK.js
742
+ init_cjs_shims();
743
+ var f = {
744
+ reset: [0, 0],
745
+ bold: [1, 22, "\x1B[22m\x1B[1m"],
746
+ dim: [2, 22, "\x1B[22m\x1B[2m"],
747
+ italic: [3, 23],
748
+ underline: [4, 24],
749
+ inverse: [7, 27],
750
+ hidden: [8, 28],
751
+ strikethrough: [9, 29],
752
+ black: [30, 39],
753
+ red: [31, 39],
754
+ green: [32, 39],
755
+ yellow: [33, 39],
756
+ blue: [34, 39],
757
+ magenta: [35, 39],
758
+ cyan: [36, 39],
759
+ white: [37, 39],
760
+ gray: [90, 39],
761
+ bgBlack: [40, 49],
762
+ bgRed: [41, 49],
763
+ bgGreen: [42, 49],
764
+ bgYellow: [43, 49],
765
+ bgBlue: [44, 49],
766
+ bgMagenta: [45, 49],
767
+ bgCyan: [46, 49],
768
+ bgWhite: [47, 49],
769
+ blackBright: [90, 39],
770
+ redBright: [91, 39],
771
+ greenBright: [92, 39],
772
+ yellowBright: [93, 39],
773
+ blueBright: [94, 39],
774
+ magentaBright: [95, 39],
775
+ cyanBright: [96, 39],
776
+ whiteBright: [97, 39],
777
+ bgBlackBright: [100, 49],
778
+ bgRedBright: [101, 49],
779
+ bgGreenBright: [102, 49],
780
+ bgYellowBright: [103, 49],
781
+ bgBlueBright: [104, 49],
782
+ bgMagentaBright: [105, 49],
783
+ bgCyanBright: [106, 49],
784
+ bgWhiteBright: [107, 49]
3607
785
  };
3608
- function ora(options) {
3609
- return new Ora(options);
786
+ var h = Object.entries(f);
787
+ function a(n2) {
788
+ return String(n2);
789
+ }
790
+ a.open = "";
791
+ a.close = "";
792
+ function C(n2 = false) {
793
+ let e = typeof process != "undefined" ? process : void 0, i2 = (e == null ? void 0 : e.env) || {}, g = (e == null ? void 0 : e.argv) || [];
794
+ return !("NO_COLOR" in i2 || g.includes("--no-color")) && ("FORCE_COLOR" in i2 || g.includes("--color") || (e == null ? void 0 : e.platform) === "win32" || n2 && i2.TERM !== "dumb" || "CI" in i2) || typeof window != "undefined" && !!window.chrome;
795
+ }
796
+ function p(n2 = false) {
797
+ let e = C(n2), i2 = (r2, t, c3, o2) => {
798
+ let l = "", s = 0;
799
+ do
800
+ l += r2.substring(s, o2) + c3, s = o2 + t.length, o2 = r2.indexOf(t, s);
801
+ while (~o2);
802
+ return l + r2.substring(s);
803
+ }, g = (r2, t, c3 = r2) => {
804
+ let o2 = (l) => {
805
+ let s = String(l), b = s.indexOf(t, r2.length);
806
+ return ~b ? r2 + i2(s, t, c3, b) + t : r2 + s + t;
807
+ };
808
+ return o2.open = r2, o2.close = t, o2;
809
+ }, u2 = {
810
+ isColorSupported: e
811
+ }, d = (r2) => `\x1B[${r2}m`;
812
+ for (let [r2, t] of h)
813
+ u2[r2] = e ? g(
814
+ d(t[0]),
815
+ d(t[1]),
816
+ t[2]
817
+ ) : a;
818
+ return u2;
3610
819
  }
3611
820
 
3612
- // src/utils/spinner.ts
3613
- var spinner = ora({
3614
- spinner: "clock"
3615
- });
821
+ // ../../node_modules/.pnpm/tinyrainbow@1.2.0/node_modules/tinyrainbow/dist/node.js
822
+ var _tty = require('tty'); var _tty2 = _interopRequireDefault(_tty);
823
+ var p2 = p(_tty.isatty.call(void 0, 1));
3616
824
 
3617
825
  // ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/index.js
3618
826
  init_cjs_shims();
@@ -3802,17 +1010,17 @@ var parseExpression = (expression) => {
3802
1010
  }
3803
1011
  throw new TypeError(`Unexpected "${typeOfExpression}" in template expression`);
3804
1012
  };
3805
- var getSubprocessResult = ({ stdout }) => {
3806
- if (typeof stdout === "string") {
3807
- return stdout;
1013
+ var getSubprocessResult = ({ stdout: stdout2 }) => {
1014
+ if (typeof stdout2 === "string") {
1015
+ return stdout2;
3808
1016
  }
3809
- if (isUint8Array(stdout)) {
3810
- return uint8ArrayToString(stdout);
1017
+ if (isUint8Array(stdout2)) {
1018
+ return uint8ArrayToString(stdout2);
3811
1019
  }
3812
- if (stdout === void 0) {
1020
+ if (stdout2 === void 0) {
3813
1021
  throw new TypeError(`Missing result.stdout in template expression. This is probably due to the previous subprocess' "stdout" option.`);
3814
1022
  }
3815
- throw new TypeError(`Unexpected "${typeof stdout}" stdout in template expression`);
1023
+ throw new TypeError(`Unexpected "${typeof stdout2}" stdout in template expression`);
3816
1024
  };
3817
1025
 
3818
1026
  // ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/methods/main-sync.js
@@ -3834,9 +1042,9 @@ var _util = require('util');
3834
1042
 
3835
1043
  // ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/utils/standard-stream.js
3836
1044
  init_cjs_shims();
3837
-
1045
+ var _process2 = require('process'); var process10 = _interopRequireWildcard(_process2);
3838
1046
  var isStandardStream = (stream) => STANDARD_STREAMS.includes(stream);
3839
- var STANDARD_STREAMS = [_process3.default.stdin, _process3.default.stdout, _process3.default.stderr];
1047
+ var STANDARD_STREAMS = [process10.default.stdin, process10.default.stdout, process10.default.stderr];
3840
1048
  var STANDARD_STREAMS_ALIASES = ["stdin", "stdout", "stderr"];
3841
1049
  var getStreamName = (fdNumber) => _nullishCoalesce(STANDARD_STREAMS_ALIASES[fdNumber], () => ( `stdio[${fdNumber}]`));
3842
1050
 
@@ -3978,6 +1186,18 @@ init_cjs_shims();
3978
1186
 
3979
1187
  // ../../node_modules/.pnpm/figures@6.1.0/node_modules/figures/index.js
3980
1188
  init_cjs_shims();
1189
+
1190
+ // ../../node_modules/.pnpm/is-unicode-supported@2.0.0/node_modules/is-unicode-supported/index.js
1191
+ init_cjs_shims();
1192
+
1193
+ function isUnicodeSupported() {
1194
+ if (process10.default.platform !== "win32") {
1195
+ return process10.default.env.TERM !== "linux";
1196
+ }
1197
+ return Boolean(process10.default.env.WT_SESSION) || Boolean(process10.default.env.TERMINUS_SUBLIME) || process10.default.env.ConEmuTask === "{cmd::Cmder}" || process10.default.env.TERM_PROGRAM === "Terminus-Sublime" || process10.default.env.TERM_PROGRAM === "vscode" || process10.default.env.TERM === "xterm-256color" || process10.default.env.TERM === "alacritty" || process10.default.env.TERMINAL_EMULATOR === "JetBrains-JediTerm";
1198
+ }
1199
+
1200
+ // ../../node_modules/.pnpm/figures@6.1.0/node_modules/figures/index.js
3981
1201
  var common = {
3982
1202
  circleQuestionMark: "(?)",
3983
1203
  questionMarkPrefix: "(?)",
@@ -4248,7 +1468,7 @@ var specialFallbackSymbols = {
4248
1468
  };
4249
1469
  var mainSymbols = { ...common, ...specialMainSymbols };
4250
1470
  var fallbackSymbols = { ...common, ...specialFallbackSymbols };
4251
- var shouldUseMain = isUnicodeSupported2();
1471
+ var shouldUseMain = isUnicodeSupported();
4252
1472
  var figures = shouldUseMain ? mainSymbols : fallbackSymbols;
4253
1473
  var figures_default = figures;
4254
1474
  var replacements = Object.entries(specialMainSymbols);
@@ -4490,21 +1710,21 @@ init_cjs_shims();
4490
1710
  init_cjs_shims();
4491
1711
  function pathKey(options = {}) {
4492
1712
  const {
4493
- env: env2 = process.env,
1713
+ env = process.env,
4494
1714
  platform: platform2 = process.platform
4495
1715
  } = options;
4496
1716
  if (platform2 !== "win32") {
4497
1717
  return "PATH";
4498
1718
  }
4499
- return Object.keys(env2).reverse().find((key) => key.toUpperCase() === "PATH") || "Path";
1719
+ return Object.keys(env).reverse().find((key) => key.toUpperCase() === "PATH") || "Path";
4500
1720
  }
4501
1721
 
4502
1722
  // ../../node_modules/.pnpm/npm-run-path@5.3.0/node_modules/npm-run-path/index.js
4503
1723
  var npmRunPath = ({
4504
- cwd = _process3.default.cwd(),
4505
- path: pathOption = _process3.default.env[pathKey()],
1724
+ cwd = process10.default.cwd(),
1725
+ path: pathOption = process10.default.env[pathKey()],
4506
1726
  preferLocal = true,
4507
- execPath: execPath2 = _process3.default.execPath,
1727
+ execPath: execPath2 = process10.default.execPath,
4508
1728
  addExecPath = true
4509
1729
  } = {}) => {
4510
1730
  const cwdString = cwd instanceof URL ? _url.fileURLToPath.call(void 0, cwd) : cwd;
@@ -4530,12 +1750,12 @@ var applyExecPath = (result, execPath2, cwdPath) => {
4530
1750
  const execPathString = execPath2 instanceof URL ? _url.fileURLToPath.call(void 0, execPath2) : execPath2;
4531
1751
  result.push(_path2.default.resolve(cwdPath, execPathString, ".."));
4532
1752
  };
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;
1753
+ var npmRunPathEnv = ({ env = process10.default.env, ...options } = {}) => {
1754
+ env = { ...env };
1755
+ const pathName = pathKey({ env });
1756
+ options.path = env[pathName];
1757
+ env[pathName] = npmRunPath(options);
1758
+ return env;
4539
1759
  };
4540
1760
 
4541
1761
  // ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/terminate/kill.js
@@ -4577,7 +1797,7 @@ setErrorName(ExecaSyncError, ExecaSyncError.name);
4577
1797
 
4578
1798
  // ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/terminate/signal.js
4579
1799
  init_cjs_shims();
4580
-
1800
+ var _os = require('os');
4581
1801
 
4582
1802
  // ../../node_modules/.pnpm/human-signals@8.0.0/node_modules/human-signals/build/src/main.js
4583
1803
  init_cjs_shims();
@@ -5066,10 +2286,10 @@ init_cjs_shims();
5066
2286
 
5067
2287
  // ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/utils/abort-signal.js
5068
2288
  init_cjs_shims();
5069
- var _events = require('events');
2289
+ var _events2 = require('events');
5070
2290
  var onAbortedSignal = async (mainSignal, stopSignal) => {
5071
2291
  if (!mainSignal.aborted) {
5072
- await _events.once.call(void 0, mainSignal, "abort", { signal: stopSignal });
2292
+ await _events2.once.call(void 0, mainSignal, "abort", { signal: stopSignal });
5073
2293
  }
5074
2294
  };
5075
2295
 
@@ -5243,13 +2463,13 @@ var getInvalidStdioOptionMessage = (fdNumber, fdName, options, isWritable) => {
5243
2463
  return `The "${optionName}: ${serializeOptionValue(optionValue)}" option is incompatible with using "${getOptionName(isWritable)}: ${serializeOptionValue(fdName)}".
5244
2464
  Please set this option with "pipe" instead.`;
5245
2465
  };
5246
- var getInvalidStdioOption = (fdNumber, { stdin, stdout, stderr, stdio }) => {
2466
+ var getInvalidStdioOption = (fdNumber, { stdin, stdout: stdout2, stderr, stdio }) => {
5247
2467
  const usedDescriptor = getUsedDescriptor(fdNumber);
5248
2468
  if (usedDescriptor === 0 && stdin !== void 0) {
5249
2469
  return { optionName: "stdin", optionValue: stdin };
5250
2470
  }
5251
- if (usedDescriptor === 1 && stdout !== void 0) {
5252
- return { optionName: "stdout", optionValue: stdout };
2471
+ if (usedDescriptor === 1 && stdout2 !== void 0) {
2472
+ return { optionName: "stdout", optionValue: stdout2 };
5253
2473
  }
5254
2474
  if (usedDescriptor === 2 && stderr !== void 0) {
5255
2475
  return { optionName: "stderr", optionValue: stderr };
@@ -5278,7 +2498,7 @@ var incrementMaxListeners = (eventEmitter, maxListenersIncrement, signal) => {
5278
2498
  return;
5279
2499
  }
5280
2500
  eventEmitter.setMaxListeners(maxListeners + maxListenersIncrement);
5281
- _events.addAbortListener.call(void 0, signal, () => {
2501
+ _events2.addAbortListener.call(void 0, signal, () => {
5282
2502
  eventEmitter.setMaxListeners(eventEmitter.getMaxListeners() - maxListenersIncrement);
5283
2503
  });
5284
2504
  };
@@ -5355,7 +2575,7 @@ var onDisconnect = async ({ anyProcess, channel, isSubprocess, ipcEmitter, bound
5355
2575
  abortOnDisconnect();
5356
2576
  const incomingMessages = INCOMING_MESSAGES.get(anyProcess);
5357
2577
  while (_optionalChain([incomingMessages, 'optionalAccess', _6 => _6.length]) > 0) {
5358
- await _events.once.call(void 0, ipcEmitter, "message:done");
2578
+ await _events2.once.call(void 0, ipcEmitter, "message:done");
5359
2579
  }
5360
2580
  anyProcess.removeListener("message", boundOnMessage);
5361
2581
  redoAddedReferences(channel, isSubprocess);
@@ -5369,7 +2589,7 @@ var getIpcEmitter = (anyProcess, channel, isSubprocess) => {
5369
2589
  if (IPC_EMITTERS.has(anyProcess)) {
5370
2590
  return IPC_EMITTERS.get(anyProcess);
5371
2591
  }
5372
- const ipcEmitter = new (0, _events.EventEmitter)();
2592
+ const ipcEmitter = new (0, _events2.EventEmitter)();
5373
2593
  ipcEmitter.connected = true;
5374
2594
  IPC_EMITTERS.set(anyProcess, ipcEmitter);
5375
2595
  forwardEvents({
@@ -5480,7 +2700,7 @@ var waitForStrictResponse = async (wrappedMessage, anyProcess, isSubprocess) =>
5480
2700
  var STRICT_RESPONSES = {};
5481
2701
  var throwOnDisconnect = async (anyProcess, isSubprocess, { signal }) => {
5482
2702
  incrementMaxListeners(anyProcess, 1, signal);
5483
- await _events.once.call(void 0, anyProcess, "disconnect", { signal });
2703
+ await _events2.once.call(void 0, anyProcess, "disconnect", { signal });
5484
2704
  throwOnStrictDisconnect(isSubprocess);
5485
2705
  };
5486
2706
  var REQUEST_TYPE = "execa:ipc:request";
@@ -5839,7 +3059,7 @@ var normalizeCwd = (cwd = getDefaultCwd()) => {
5839
3059
  };
5840
3060
  var getDefaultCwd = () => {
5841
3061
  try {
5842
- return _process3.default.cwd();
3062
+ return process10.default.cwd();
5843
3063
  } catch (error) {
5844
3064
  error.message = `The current directory does not exist.
5845
3065
  ${error.message}`;
@@ -5882,7 +3102,7 @@ var normalizeOptions = (filePath, rawArguments, rawOptions) => {
5882
3102
  options.killSignal = normalizeKillSignal(options.killSignal);
5883
3103
  options.forceKillAfterDelay = normalizeForceKillAfterDelay(options.forceKillAfterDelay);
5884
3104
  options.lines = options.lines.map((lines, fdNumber) => lines && !BINARY_ENCODINGS.has(options.encoding) && options.buffer[fdNumber]);
5885
- if (_process3.default.platform === "win32" && _path2.default.basename(file, ".exe") === "cmd") {
3105
+ if (process10.default.platform === "win32" && _path2.default.basename(file, ".exe") === "cmd") {
5886
3106
  commandArguments.unshift("/q");
5887
3107
  }
5888
3108
  return { file, commandArguments, options };
@@ -5923,17 +3143,17 @@ var addDefaultOptions = ({
5923
3143
  serialization
5924
3144
  });
5925
3145
  var getEnv = ({ env: envOption, extendEnv, preferLocal, node, localDirectory, nodePath }) => {
5926
- const env2 = extendEnv ? { ..._process3.default.env, ...envOption } : envOption;
3146
+ const env = extendEnv ? { ...process10.default.env, ...envOption } : envOption;
5927
3147
  if (preferLocal || node) {
5928
3148
  return npmRunPathEnv({
5929
- env: env2,
3149
+ env,
5930
3150
  cwd: localDirectory,
5931
3151
  execPath: nodePath,
5932
3152
  preferLocal,
5933
3153
  addExecPath: node
5934
3154
  });
5935
3155
  }
5936
- return env2;
3156
+ return env;
5937
3157
  };
5938
3158
 
5939
3159
  // ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/return/result.js
@@ -6361,7 +3581,7 @@ var stringMethods = {
6361
3581
  };
6362
3582
 
6363
3583
  // ../../node_modules/.pnpm/get-stream@9.0.1/node_modules/get-stream/source/index.js
6364
- Object.assign(nodeImports, { on: _events.on, finished: _promises3.finished });
3584
+ Object.assign(nodeImports, { on: _events2.on, finished: _promises3.finished });
6365
3585
 
6366
3586
  // ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/io/max-buffer.js
6367
3587
  var handleMaxBuffer = ({ error, stream, readableObjectMode, lines, encoding, fdNumber }) => {
@@ -7182,10 +4402,10 @@ var guessStreamDirection = {
7182
4402
  }
7183
4403
  };
7184
4404
  var getStandardStreamDirection = (value) => {
7185
- if ([0, _process3.default.stdin].includes(value)) {
4405
+ if ([0, process10.default.stdin].includes(value)) {
7186
4406
  return "input";
7187
4407
  }
7188
- if ([1, 2, _process3.default.stdout, _process3.default.stderr].includes(value)) {
4408
+ if ([1, 2, process10.default.stdout, process10.default.stderr].includes(value)) {
7189
4409
  return "output";
7190
4410
  }
7191
4411
  };
@@ -7631,7 +4851,7 @@ init_cjs_shims();
7631
4851
 
7632
4852
  // ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/transform/generator.js
7633
4853
  init_cjs_shims();
7634
- var _stream2 = require('stream');
4854
+ var _stream = require('stream');
7635
4855
 
7636
4856
  // ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/transform/split.js
7637
4857
  init_cjs_shims();
@@ -7885,11 +5105,11 @@ var generatorToStream = ({
7885
5105
  const transformMethod = transformAsync ? pushChunks.bind(void 0, transformChunk, state) : pushChunksSync.bind(void 0, transformChunkSync);
7886
5106
  const finalMethod = transformAsync || finalAsync ? pushChunks.bind(void 0, finalChunks, state) : pushChunksSync.bind(void 0, finalChunksSync);
7887
5107
  const destroyMethod = transformAsync || finalAsync ? destroyTransform.bind(void 0, state) : void 0;
7888
- const stream = new (0, _stream2.Transform)({
5108
+ const stream = new (0, _stream.Transform)({
7889
5109
  writableObjectMode,
7890
- writableHighWaterMark: _stream2.getDefaultHighWaterMark.call(void 0, writableObjectMode),
5110
+ writableHighWaterMark: _stream.getDefaultHighWaterMark.call(void 0, writableObjectMode),
7891
5111
  readableObjectMode,
7892
- readableHighWaterMark: _stream2.getDefaultHighWaterMark.call(void 0, readableObjectMode),
5112
+ readableHighWaterMark: _stream.getDefaultHighWaterMark.call(void 0, readableObjectMode),
7893
5113
  transform(chunk, encoding2, done) {
7894
5114
  transformMethod([chunk, generators, 0], this, done);
7895
5115
  },
@@ -8096,26 +5316,26 @@ var writeToFiles = (serializedResult, stdioItems, outputFiles) => {
8096
5316
 
8097
5317
  // ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/resolve/all-sync.js
8098
5318
  init_cjs_shims();
8099
- var getAllSync = ([, stdout, stderr], options) => {
5319
+ var getAllSync = ([, stdout2, stderr], options) => {
8100
5320
  if (!options.all) {
8101
5321
  return;
8102
5322
  }
8103
- if (stdout === void 0) {
5323
+ if (stdout2 === void 0) {
8104
5324
  return stderr;
8105
5325
  }
8106
5326
  if (stderr === void 0) {
8107
- return stdout;
5327
+ return stdout2;
8108
5328
  }
8109
- if (Array.isArray(stdout)) {
8110
- return Array.isArray(stderr) ? [...stdout, ...stderr] : [...stdout, stripNewline(stderr, options, "all")];
5329
+ if (Array.isArray(stdout2)) {
5330
+ return Array.isArray(stderr) ? [...stdout2, ...stderr] : [...stdout2, stripNewline(stderr, options, "all")];
8111
5331
  }
8112
5332
  if (Array.isArray(stderr)) {
8113
- return [stripNewline(stdout, options, "all"), ...stderr];
5333
+ return [stripNewline(stdout2, options, "all"), ...stderr];
8114
5334
  }
8115
- if (isUint8Array(stdout) && isUint8Array(stderr)) {
8116
- return concatUint8Arrays([stdout, stderr]);
5335
+ if (isUint8Array(stdout2) && isUint8Array(stderr)) {
5336
+ return concatUint8Arrays([stdout2, stderr]);
8117
5337
  }
8118
- return `${stdout}${stderr}`;
5338
+ return `${stdout2}${stderr}`;
8119
5339
  };
8120
5340
 
8121
5341
  // ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/resolve/exit-sync.js
@@ -8131,8 +5351,8 @@ var waitForExit = async (subprocess, context) => {
8131
5351
  };
8132
5352
  var waitForExitOrError = async (subprocess) => {
8133
5353
  const [spawnPayload, exitPayload] = await Promise.allSettled([
8134
- _events.once.call(void 0, subprocess, "spawn"),
8135
- _events.once.call(void 0, subprocess, "exit")
5354
+ _events2.once.call(void 0, subprocess, "spawn"),
5355
+ _events2.once.call(void 0, subprocess, "exit")
8136
5356
  ]);
8137
5357
  if (spawnPayload.status === "rejected") {
8138
5358
  return [];
@@ -8141,7 +5361,7 @@ var waitForExitOrError = async (subprocess) => {
8141
5361
  };
8142
5362
  var waitForSubprocessExit = async (subprocess) => {
8143
5363
  try {
8144
- return await _events.once.call(void 0, subprocess, "exit");
5364
+ return await _events2.once.call(void 0, subprocess, "exit");
8145
5365
  } catch (e4) {
8146
5366
  return waitForSubprocessExit(subprocess);
8147
5367
  }
@@ -8355,21 +5575,21 @@ var getOneMessageAsync = async ({ anyProcess, channel, isSubprocess, filter, ref
8355
5575
  };
8356
5576
  var getMessage = async (ipcEmitter, filter, { signal }) => {
8357
5577
  if (filter === void 0) {
8358
- const [message] = await _events.once.call(void 0, ipcEmitter, "message", { signal });
5578
+ const [message] = await _events2.once.call(void 0, ipcEmitter, "message", { signal });
8359
5579
  return message;
8360
5580
  }
8361
- for await (const [message] of _events.on.call(void 0, ipcEmitter, "message", { signal })) {
5581
+ for await (const [message] of _events2.on.call(void 0, ipcEmitter, "message", { signal })) {
8362
5582
  if (filter(message)) {
8363
5583
  return message;
8364
5584
  }
8365
5585
  }
8366
5586
  };
8367
5587
  var throwOnDisconnect2 = async (ipcEmitter, isSubprocess, { signal }) => {
8368
- await _events.once.call(void 0, ipcEmitter, "disconnect", { signal });
5588
+ await _events2.once.call(void 0, ipcEmitter, "disconnect", { signal });
8369
5589
  throwOnEarlyDisconnect(isSubprocess);
8370
5590
  };
8371
5591
  var throwOnStrictError = async (ipcEmitter, isSubprocess, { signal }) => {
8372
- const [error] = await _events.once.call(void 0, ipcEmitter, "strict:error", { signal });
5592
+ const [error] = await _events2.once.call(void 0, ipcEmitter, "strict:error", { signal });
8373
5593
  throw getStrictResponseError(error, isSubprocess);
8374
5594
  };
8375
5595
 
@@ -8415,14 +5635,14 @@ var loopOnMessages = ({ anyProcess, channel, isSubprocess, ipc, shouldAwait, ref
8415
5635
  };
8416
5636
  var stopOnDisconnect = async (anyProcess, ipcEmitter, controller) => {
8417
5637
  try {
8418
- await _events.once.call(void 0, ipcEmitter, "disconnect", { signal: controller.signal });
5638
+ await _events2.once.call(void 0, ipcEmitter, "disconnect", { signal: controller.signal });
8419
5639
  controller.abort();
8420
5640
  } catch (e5) {
8421
5641
  }
8422
5642
  };
8423
5643
  var abortOnStrictError = async ({ ipcEmitter, isSubprocess, controller, state }) => {
8424
5644
  try {
8425
- const [error] = await _events.once.call(void 0, ipcEmitter, "strict:error", { signal: controller.signal });
5645
+ const [error] = await _events2.once.call(void 0, ipcEmitter, "strict:error", { signal: controller.signal });
8426
5646
  state.error = getStrictResponseError(error, isSubprocess);
8427
5647
  controller.abort();
8428
5648
  } catch (e6) {
@@ -8430,7 +5650,7 @@ var abortOnStrictError = async ({ ipcEmitter, isSubprocess, controller, state })
8430
5650
  };
8431
5651
  var iterateOnMessages = async function* ({ anyProcess, channel, ipcEmitter, isSubprocess, shouldAwait, controller, state, reference }) {
8432
5652
  try {
8433
- for await (const [message] of _events.on.call(void 0, ipcEmitter, "message", { signal: controller.signal })) {
5653
+ for await (const [message] of _events2.on.call(void 0, ipcEmitter, "message", { signal: controller.signal })) {
8434
5654
  throwIfStrictError(state);
8435
5655
  yield message;
8436
5656
  }
@@ -8458,9 +5678,9 @@ var addIpcMethods = (subprocess, { ipc }) => {
8458
5678
  Object.assign(subprocess, getIpcMethods(subprocess, false, ipc));
8459
5679
  };
8460
5680
  var getIpcExport = () => {
8461
- const anyProcess = _process3.default;
5681
+ const anyProcess = process10.default;
8462
5682
  const isSubprocess = true;
8463
- const ipc = _process3.default.channel !== void 0;
5683
+ const ipc = process10.default.channel !== void 0;
8464
5684
  return {
8465
5685
  ...getIpcMethods(anyProcess, isSubprocess, ipc),
8466
5686
  getCancelSignal: getCancelSignal.bind(void 0, {
@@ -8520,29 +5740,29 @@ var handleEarlyError = ({ error, command, escapedCommand, fileDescriptors, optio
8520
5740
  };
8521
5741
  var createDummyStreams = (subprocess, fileDescriptors) => {
8522
5742
  const stdin = createDummyStream();
8523
- const stdout = createDummyStream();
5743
+ const stdout2 = createDummyStream();
8524
5744
  const stderr = createDummyStream();
8525
5745
  const extraStdio = Array.from({ length: fileDescriptors.length - 3 }, createDummyStream);
8526
5746
  const all = createDummyStream();
8527
- const stdio = [stdin, stdout, stderr, ...extraStdio];
5747
+ const stdio = [stdin, stdout2, stderr, ...extraStdio];
8528
5748
  Object.assign(subprocess, {
8529
5749
  stdin,
8530
- stdout,
5750
+ stdout: stdout2,
8531
5751
  stderr,
8532
5752
  all,
8533
5753
  stdio
8534
5754
  });
8535
5755
  };
8536
5756
  var createDummyStream = () => {
8537
- const stream = new (0, _stream2.PassThrough)();
5757
+ const stream = new (0, _stream.PassThrough)();
8538
5758
  stream.end();
8539
5759
  return stream;
8540
5760
  };
8541
- var readable = () => new (0, _stream2.Readable)({ read() {
5761
+ var readable = () => new (0, _stream.Readable)({ read() {
8542
5762
  } });
8543
- var writable = () => new (0, _stream2.Writable)({ write() {
5763
+ var writable = () => new (0, _stream.Writable)({ write() {
8544
5764
  } });
8545
- var duplex = () => new (0, _stream2.Duplex)({ read() {
5765
+ var duplex = () => new (0, _stream.Duplex)({ read() {
8546
5766
  }, write() {
8547
5767
  } });
8548
5768
  var handleDummyPromise = async (error, verboseInfo, options) => handleResult(error, verboseInfo, options);
@@ -8563,7 +5783,7 @@ var addProperties2 = {
8563
5783
  nodeStream: ({ value }) => ({ stream: value }),
8564
5784
  webTransform({ value: { transform, writableObjectMode, readableObjectMode } }) {
8565
5785
  const objectMode = writableObjectMode || readableObjectMode;
8566
- const stream = _stream2.Duplex.fromWeb(transform, { objectMode });
5786
+ const stream = _stream.Duplex.fromWeb(transform, { objectMode });
8567
5787
  return { stream };
8568
5788
  },
8569
5789
  duplex: ({ value: { transform } }) => ({ stream: transform }),
@@ -8575,17 +5795,17 @@ var addPropertiesAsync = {
8575
5795
  ...addProperties2,
8576
5796
  fileUrl: ({ value }) => ({ stream: _fs.createReadStream.call(void 0, value) }),
8577
5797
  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)) })
5798
+ webStream: ({ value }) => ({ stream: _stream.Readable.fromWeb(value) }),
5799
+ iterable: ({ value }) => ({ stream: _stream.Readable.from(value) }),
5800
+ asyncIterable: ({ value }) => ({ stream: _stream.Readable.from(value) }),
5801
+ string: ({ value }) => ({ stream: _stream.Readable.from(value) }),
5802
+ uint8Array: ({ value }) => ({ stream: _stream.Readable.from(_buffer.Buffer.from(value)) })
8583
5803
  },
8584
5804
  output: {
8585
5805
  ...addProperties2,
8586
5806
  fileUrl: ({ value }) => ({ stream: _fs.createWriteStream.call(void 0, value) }),
8587
5807
  filePath: ({ value: { file } }) => ({ stream: _fs.createWriteStream.call(void 0, file) }),
8588
- webStream: ({ value }) => ({ stream: _stream2.Writable.fromWeb(value) }),
5808
+ webStream: ({ value }) => ({ stream: _stream.Writable.fromWeb(value) }),
8589
5809
  iterable: forbiddenIfAsync,
8590
5810
  asyncIterable: forbiddenIfAsync,
8591
5811
  string: forbiddenIfAsync,
@@ -8622,13 +5842,13 @@ function mergeStreams(streams) {
8622
5842
  }
8623
5843
  var getHighWaterMark = (streams, objectMode) => {
8624
5844
  if (streams.length === 0) {
8625
- return _stream2.getDefaultHighWaterMark.call(void 0, objectMode);
5845
+ return _stream.getDefaultHighWaterMark.call(void 0, objectMode);
8626
5846
  }
8627
5847
  const highWaterMarks = streams.filter(({ readableObjectMode }) => readableObjectMode === objectMode).map(({ readableHighWaterMark }) => readableHighWaterMark);
8628
5848
  return Math.max(...highWaterMarks);
8629
5849
  };
8630
5850
  var _streams, _ended, _aborted, _onFinished, _unpipeEvent, _streamPromises;
8631
- var MergedStream = class extends _stream2.PassThrough {
5851
+ var MergedStream = class extends _stream.PassThrough {
8632
5852
  constructor() {
8633
5853
  super(...arguments);
8634
5854
  __privateAdd(this, _streams, /* @__PURE__ */ new Set([]));
@@ -8700,7 +5920,7 @@ var onMergedStreamEnd = async (passThroughStream, { signal }) => {
8700
5920
  }
8701
5921
  };
8702
5922
  var onInputStreamsUnpipe = async (passThroughStream, streams, unpipeEvent, { signal }) => {
8703
- for await (const [unpipedStream] of _events.on.call(void 0, passThroughStream, "unpipe", { signal })) {
5923
+ for await (const [unpipedStream] of _events2.on.call(void 0, passThroughStream, "unpipe", { signal })) {
8704
5924
  if (streams.has(unpipedStream)) {
8705
5925
  unpipedStream.emit(unpipeEvent);
8706
5926
  }
@@ -8781,9 +6001,9 @@ var onInputStreamEnd = async ({ passThroughStream, stream, streams, ended, abort
8781
6001
  }
8782
6002
  };
8783
6003
  var onInputStreamUnpipe = async ({ stream, streams, ended, aborted: aborted2, unpipeEvent, controller: { signal } }) => {
8784
- await _events.once.call(void 0, stream, unpipeEvent, { signal });
6004
+ await _events2.once.call(void 0, stream, unpipeEvent, { signal });
8785
6005
  if (!stream.readable) {
8786
- return _events.once.call(void 0, signal, "abort", { signal });
6006
+ return _events2.once.call(void 0, signal, "abort", { signal });
8787
6007
  }
8788
6008
  streams.delete(stream);
8789
6009
  ended.delete(stream);
@@ -8948,7 +6168,7 @@ if (process.platform === "linux") {
8948
6168
  }
8949
6169
 
8950
6170
  // ../../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";
6171
+ var processOk = (process11) => !!process11 && typeof process11 === "object" && typeof process11.removeListener === "function" && typeof process11.emit === "function" && typeof process11.reallyExit === "function" && typeof process11.listeners === "function" && typeof process11.kill === "function" && typeof process11.pid === "number" && typeof process11.on === "function";
8952
6172
  var kExitEmitter = Symbol.for("signal-exit emitter");
8953
6173
  var global2 = globalThis;
8954
6174
  var ObjectDefineProperty = Object.defineProperty.bind(Object);
@@ -9031,13 +6251,13 @@ var SignalExitFallback = class extends SignalExitBase {
9031
6251
  };
9032
6252
  var _hupSig, _emitter, _process, _originalProcessEmit, _originalProcessReallyExit, _sigListeners, _loaded, _SignalExit_instances, processReallyExit_fn, processEmit_fn;
9033
6253
  var SignalExit = class extends SignalExitBase {
9034
- constructor(process16) {
6254
+ constructor(process11) {
9035
6255
  super();
9036
6256
  __privateAdd(this, _SignalExit_instances);
9037
6257
  // "SIGHUP" throws an `ENOSYS` error on Windows,
9038
6258
  // so use a supported signal instead
9039
6259
  /* c8 ignore start */
9040
- __privateAdd(this, _hupSig, process15.platform === "win32" ? "SIGINT" : "SIGHUP");
6260
+ __privateAdd(this, _hupSig, process9.platform === "win32" ? "SIGINT" : "SIGHUP");
9041
6261
  /* c8 ignore stop */
9042
6262
  __privateAdd(this, _emitter, new Emitter());
9043
6263
  __privateAdd(this, _process);
@@ -9045,13 +6265,13 @@ var SignalExit = class extends SignalExitBase {
9045
6265
  __privateAdd(this, _originalProcessReallyExit);
9046
6266
  __privateAdd(this, _sigListeners, {});
9047
6267
  __privateAdd(this, _loaded, false);
9048
- __privateSet(this, _process, process16);
6268
+ __privateSet(this, _process, process11);
9049
6269
  __privateSet(this, _sigListeners, {});
9050
6270
  for (const sig of signals) {
9051
6271
  __privateGet(this, _sigListeners)[sig] = () => {
9052
6272
  const listeners = __privateGet(this, _process).listeners(sig);
9053
6273
  let { count: count2 } = __privateGet(this, _emitter);
9054
- const p3 = process16;
6274
+ const p3 = process11;
9055
6275
  if (typeof p3.__signal_exit_emitter__ === "object" && typeof p3.__signal_exit_emitter__.count === "number") {
9056
6276
  count2 += p3.__signal_exit_emitter__.count;
9057
6277
  }
@@ -9060,12 +6280,12 @@ var SignalExit = class extends SignalExitBase {
9060
6280
  const ret = __privateGet(this, _emitter).emit("exit", null, sig);
9061
6281
  const s = sig === "SIGHUP" ? __privateGet(this, _hupSig) : sig;
9062
6282
  if (!ret)
9063
- process16.kill(process16.pid, s);
6283
+ process11.kill(process11.pid, s);
9064
6284
  }
9065
6285
  };
9066
6286
  }
9067
- __privateSet(this, _originalProcessReallyExit, process16.reallyExit);
9068
- __privateSet(this, _originalProcessEmit, process16.emit);
6287
+ __privateSet(this, _originalProcessReallyExit, process11.reallyExit);
6288
+ __privateSet(this, _originalProcessEmit, process11.emit);
9069
6289
  }
9070
6290
  onExit(cb, opts) {
9071
6291
  if (!processOk(__privateGet(this, _process))) {
@@ -9154,7 +6374,7 @@ processEmit_fn = function(ev, ...args) {
9154
6374
  return og.call(__privateGet(this, _process), ev, ...args);
9155
6375
  }
9156
6376
  };
9157
- var process15 = globalThis.process;
6377
+ var process9 = globalThis.process;
9158
6378
  var {
9159
6379
  /**
9160
6380
  * Called when the process is exiting, whether via signal, explicit
@@ -9182,7 +6402,7 @@ var {
9182
6402
  * @internal
9183
6403
  */
9184
6404
  unload
9185
- } = signalExitWrap(processOk(process15) ? new SignalExit(process15) : new SignalExitFallback());
6405
+ } = signalExitWrap(processOk(process9) ? new SignalExit(process9) : new SignalExitFallback());
9186
6406
 
9187
6407
  // ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/terminate/cleanup.js
9188
6408
  var cleanupOnExit = (subprocess, { cleanup, detached }, { signal }) => {
@@ -9192,7 +6412,7 @@ var cleanupOnExit = (subprocess, { cleanup, detached }, { signal }) => {
9192
6412
  const removeExitHandler = onExit(() => {
9193
6413
  subprocess.kill();
9194
6414
  });
9195
- _events.addAbortListener.call(void 0, signal, () => {
6415
+ _events2.addAbortListener.call(void 0, signal, () => {
9196
6416
  removeExitHandler();
9197
6417
  });
9198
6418
  };
@@ -9509,7 +6729,7 @@ var stopReadingOnStreamEnd = async (onStreamEnd, controller, stream) => {
9509
6729
  }
9510
6730
  };
9511
6731
  var iterateOnStream = ({ stream, controller, binary, shouldEncode, encoding, shouldSplit, preserveNewlines }) => {
9512
- const onStdoutChunk = _events.on.call(void 0, stream, "data", {
6732
+ const onStdoutChunk = _events2.on.call(void 0, stream, "data", {
9513
6733
  signal: controller.signal,
9514
6734
  highWaterMark: HIGH_WATER_MARK,
9515
6735
  // Backward compatibility with older name for this option
@@ -9527,7 +6747,7 @@ var iterateOnStream = ({ stream, controller, binary, shouldEncode, encoding, sho
9527
6747
  preserveNewlines
9528
6748
  });
9529
6749
  };
9530
- var DEFAULT_OBJECT_HIGH_WATER_MARK = _stream2.getDefaultHighWaterMark.call(void 0, true);
6750
+ var DEFAULT_OBJECT_HIGH_WATER_MARK = _stream.getDefaultHighWaterMark.call(void 0, true);
9531
6751
  var HIGH_WATER_MARK = DEFAULT_OBJECT_HIGH_WATER_MARK;
9532
6752
  var iterateOnData = async function* ({ onStdoutChunk, controller, binary, shouldEncode, encoding, shouldSplit, preserveNewlines }) {
9533
6753
  const generators = getGenerators({
@@ -9741,7 +6961,7 @@ var waitForSubprocessStream = async ({ stream, fdNumber, encoding, buffer, maxBu
9741
6961
  };
9742
6962
 
9743
6963
  // ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/resolve/all-async.js
9744
- var makeAllStream = ({ stdout, stderr }, { all }) => all && (stdout || stderr) ? mergeStreams([stdout, stderr].filter(Boolean)) : void 0;
6964
+ var makeAllStream = ({ stdout: stdout2, stderr }, { all }) => all && (stdout2 || stderr) ? mergeStreams([stdout2, stderr].filter(Boolean)) : void 0;
9745
6965
  var waitForAllStream = ({ subprocess, encoding, buffer, maxBuffer, lines, stripFinalNewline: stripFinalNewline2, verboseInfo, streamInfo }) => waitForSubprocessStream({
9746
6966
  ...getAllStream(subprocess, buffer),
9747
6967
  fdNumber: "all",
@@ -9753,7 +6973,7 @@ var waitForAllStream = ({ subprocess, encoding, buffer, maxBuffer, lines, stripF
9753
6973
  verboseInfo,
9754
6974
  streamInfo
9755
6975
  });
9756
- var getAllStream = ({ stdout, stderr, all }, [, bufferStdout, bufferStderr]) => {
6976
+ var getAllStream = ({ stdout: stdout2, stderr, all }, [, bufferStdout, bufferStderr]) => {
9757
6977
  const buffer = bufferStdout || bufferStderr;
9758
6978
  if (!buffer) {
9759
6979
  return { stream: all, buffer };
@@ -9762,11 +6982,11 @@ var getAllStream = ({ stdout, stderr, all }, [, bufferStdout, bufferStderr]) =>
9762
6982
  return { stream: stderr, buffer };
9763
6983
  }
9764
6984
  if (!bufferStderr) {
9765
- return { stream: stdout, buffer };
6985
+ return { stream: stdout2, buffer };
9766
6986
  }
9767
6987
  return { stream: all, buffer };
9768
6988
  };
9769
- var getAllMixed = ({ all, stdout, stderr }) => all && stdout && stderr && stdout.readableObjectMode !== stderr.readableObjectMode;
6989
+ var getAllMixed = ({ all, stdout: stdout2, stderr }) => all && stdout2 && stderr && stdout2.readableObjectMode !== stderr.readableObjectMode;
9770
6990
 
9771
6991
  // ../../node_modules/.pnpm/execa@9.3.1/node_modules/execa/lib/resolve/wait-subprocess.js
9772
6992
  init_cjs_shims();
@@ -9938,7 +7158,7 @@ var waitForCustomStreamsEnd = (fileDescriptors, streamInfo) => fileDescriptors.f
9938
7158
  stopOnExit: type === "native"
9939
7159
  })));
9940
7160
  var throwOnSubprocessError = async (subprocess, { signal }) => {
9941
- const [error] = await _events.once.call(void 0, subprocess, "error", { signal });
7161
+ const [error] = await _events2.once.call(void 0, subprocess, "error", { signal });
9942
7162
  throw error;
9943
7163
  };
9944
7164
 
@@ -10030,7 +7250,7 @@ var createReadable = ({ subprocess, concurrentStreams, encoding }, { from, binar
10030
7250
  encoding,
10031
7251
  preserveNewlines
10032
7252
  });
10033
- const readable2 = new (0, _stream2.Readable)({
7253
+ const readable2 = new (0, _stream.Readable)({
10034
7254
  read: read2,
10035
7255
  destroy: _util.callbackify.call(void 0, onReadableDestroy.bind(void 0, { subprocessStdout, subprocess, waitReadableDestroy })),
10036
7256
  highWaterMark: readableHighWaterMark,
@@ -10109,7 +7329,7 @@ init_cjs_shims();
10109
7329
 
10110
7330
  var createWritable = ({ subprocess, concurrentStreams }, { to } = {}) => {
10111
7331
  const { subprocessStdin, waitWritableFinal, waitWritableDestroy } = getSubprocessStdin(subprocess, to, concurrentStreams);
10112
- const writable2 = new (0, _stream2.Writable)({
7332
+ const writable2 = new (0, _stream.Writable)({
10113
7333
  ...getWritableMethods(subprocessStdin, subprocess, waitWritableFinal),
10114
7334
  destroy: _util.callbackify.call(void 0, onWritableDestroy.bind(void 0, {
10115
7335
  subprocessStdin,
@@ -10186,7 +7406,7 @@ var createDuplex = ({ subprocess, concurrentStreams, encoding }, { from, to, bin
10186
7406
  encoding,
10187
7407
  preserveNewlines
10188
7408
  });
10189
- const duplex2 = new (0, _stream2.Duplex)({
7409
+ const duplex2 = new (0, _stream.Duplex)({
10190
7410
  read: read2,
10191
7411
  ...getWritableMethods(subprocessStdin, subprocess, waitWritableFinal),
10192
7412
  destroy: _util.callbackify.call(void 0, onDuplexDestroy.bind(void 0, {
@@ -10341,7 +7561,7 @@ var spawnSubprocessAsync = ({ file, commandArguments, options, startTime, verbos
10341
7561
  });
10342
7562
  }
10343
7563
  const controller = new AbortController();
10344
- _events.setMaxListeners.call(void 0, Number.POSITIVE_INFINITY, controller.signal);
7564
+ _events2.setMaxListeners.call(void 0, Number.POSITIVE_INFINITY, controller.signal);
10345
7565
  const originalStreams = [...subprocess.stdio];
10346
7566
  pipeOutputAsync(subprocess, fileDescriptors, controller);
10347
7567
  cleanupOnExit(subprocess, options, controller);
@@ -10562,73 +7782,520 @@ var {
10562
7782
  init_cjs_shims();
10563
7783
  var _logger = require('@kubb/core/logger');
10564
7784
  var _core = require('@kubb/core');
10565
- var _consola = require('consola');
10566
7785
 
10567
7786
  // src/utils/executeHooks.ts
10568
7787
  init_cjs_shims();
10569
-
10570
7788
  var _stringargv = require('string-argv');
10571
7789
 
10572
- // src/utils/OraWritable.ts
7790
+ // src/utils/Writables.ts
10573
7791
  init_cjs_shims();
10574
7792
 
10575
- var OraWritable = class extends _stream2.Writable {
10576
- constructor(spinner2, command, opts) {
7793
+
7794
+ var ConsolaWritable = class extends _stream.Writable {
7795
+ constructor(consola, command, opts) {
10577
7796
  super(opts);
10578
7797
  this.command = command;
10579
- this.spinner = spinner2;
7798
+ this.consola = consola;
10580
7799
  }
10581
7800
  _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()])}`;
7801
+ process10.stdout.write(p2.dim(_optionalChain([chunk, 'optionalAccess', _38 => _38.toString, 'call', _39 => _39()])));
10585
7802
  callback();
10586
7803
  }
10587
7804
  };
10588
7805
 
10589
7806
  // src/utils/executeHooks.ts
10590
- async function executeHooks({ hooks, logLevel }) {
10591
- if (!_optionalChain([hooks, 'optionalAccess', _40 => _40.done])) {
7807
+
7808
+
7809
+ // ../../node_modules/.pnpm/p-queue@8.0.1/node_modules/p-queue/dist/index.js
7810
+ init_cjs_shims();
7811
+
7812
+ // ../../node_modules/.pnpm/eventemitter3@5.0.1/node_modules/eventemitter3/index.mjs
7813
+ init_cjs_shims();
7814
+ var import_index = __toESM(require_eventemitter3(), 1);
7815
+
7816
+ // ../../node_modules/.pnpm/p-timeout@6.1.2/node_modules/p-timeout/index.js
7817
+ init_cjs_shims();
7818
+ var TimeoutError = class extends Error {
7819
+ constructor(message) {
7820
+ super(message);
7821
+ this.name = "TimeoutError";
7822
+ }
7823
+ };
7824
+ var AbortError = class extends Error {
7825
+ constructor(message) {
7826
+ super();
7827
+ this.name = "AbortError";
7828
+ this.message = message;
7829
+ }
7830
+ };
7831
+ var getDOMException = (errorMessage) => globalThis.DOMException === void 0 ? new AbortError(errorMessage) : new DOMException(errorMessage);
7832
+ var getAbortedReason = (signal) => {
7833
+ const reason = signal.reason === void 0 ? getDOMException("This operation was aborted.") : signal.reason;
7834
+ return reason instanceof Error ? reason : getDOMException(reason);
7835
+ };
7836
+ function pTimeout(promise, options) {
7837
+ const {
7838
+ milliseconds,
7839
+ fallback,
7840
+ message,
7841
+ customTimers = { setTimeout, clearTimeout }
7842
+ } = options;
7843
+ let timer;
7844
+ const wrappedPromise = new Promise((resolve2, reject) => {
7845
+ if (typeof milliseconds !== "number" || Math.sign(milliseconds) !== 1) {
7846
+ throw new TypeError(`Expected \`milliseconds\` to be a positive number, got \`${milliseconds}\``);
7847
+ }
7848
+ if (options.signal) {
7849
+ const { signal } = options;
7850
+ if (signal.aborted) {
7851
+ reject(getAbortedReason(signal));
7852
+ }
7853
+ signal.addEventListener("abort", () => {
7854
+ reject(getAbortedReason(signal));
7855
+ });
7856
+ }
7857
+ if (milliseconds === Number.POSITIVE_INFINITY) {
7858
+ promise.then(resolve2, reject);
7859
+ return;
7860
+ }
7861
+ const timeoutError = new TimeoutError();
7862
+ timer = customTimers.setTimeout.call(void 0, () => {
7863
+ if (fallback) {
7864
+ try {
7865
+ resolve2(fallback());
7866
+ } catch (error) {
7867
+ reject(error);
7868
+ }
7869
+ return;
7870
+ }
7871
+ if (typeof promise.cancel === "function") {
7872
+ promise.cancel();
7873
+ }
7874
+ if (message === false) {
7875
+ resolve2();
7876
+ } else if (message instanceof Error) {
7877
+ reject(message);
7878
+ } else {
7879
+ timeoutError.message = _nullishCoalesce(message, () => ( `Promise timed out after ${milliseconds} milliseconds`));
7880
+ reject(timeoutError);
7881
+ }
7882
+ }, milliseconds);
7883
+ (async () => {
7884
+ try {
7885
+ resolve2(await promise);
7886
+ } catch (error) {
7887
+ reject(error);
7888
+ }
7889
+ })();
7890
+ });
7891
+ const cancelablePromise = wrappedPromise.finally(() => {
7892
+ cancelablePromise.clear();
7893
+ });
7894
+ cancelablePromise.clear = () => {
7895
+ customTimers.clearTimeout.call(void 0, timer);
7896
+ timer = void 0;
7897
+ };
7898
+ return cancelablePromise;
7899
+ }
7900
+
7901
+ // ../../node_modules/.pnpm/p-queue@8.0.1/node_modules/p-queue/dist/priority-queue.js
7902
+ init_cjs_shims();
7903
+
7904
+ // ../../node_modules/.pnpm/p-queue@8.0.1/node_modules/p-queue/dist/lower-bound.js
7905
+ init_cjs_shims();
7906
+ function lowerBound(array, value, comparator) {
7907
+ let first = 0;
7908
+ let count2 = array.length;
7909
+ while (count2 > 0) {
7910
+ const step = Math.trunc(count2 / 2);
7911
+ let it = first + step;
7912
+ if (comparator(array[it], value) <= 0) {
7913
+ first = ++it;
7914
+ count2 -= step + 1;
7915
+ } else {
7916
+ count2 = step;
7917
+ }
7918
+ }
7919
+ return first;
7920
+ }
7921
+
7922
+ // ../../node_modules/.pnpm/p-queue@8.0.1/node_modules/p-queue/dist/priority-queue.js
7923
+ var _queue;
7924
+ var PriorityQueue = class {
7925
+ constructor() {
7926
+ __privateAdd(this, _queue, []);
7927
+ }
7928
+ enqueue(run, options) {
7929
+ options = {
7930
+ priority: 0,
7931
+ ...options
7932
+ };
7933
+ const element = {
7934
+ priority: options.priority,
7935
+ run
7936
+ };
7937
+ if (this.size && __privateGet(this, _queue)[this.size - 1].priority >= options.priority) {
7938
+ __privateGet(this, _queue).push(element);
7939
+ return;
7940
+ }
7941
+ const index = lowerBound(__privateGet(this, _queue), element, (a3, b) => b.priority - a3.priority);
7942
+ __privateGet(this, _queue).splice(index, 0, element);
7943
+ }
7944
+ dequeue() {
7945
+ const item = __privateGet(this, _queue).shift();
7946
+ return _optionalChain([item, 'optionalAccess', _40 => _40.run]);
7947
+ }
7948
+ filter(options) {
7949
+ return __privateGet(this, _queue).filter((element) => element.priority === options.priority).map((element) => element.run);
7950
+ }
7951
+ get size() {
7952
+ return __privateGet(this, _queue).length;
7953
+ }
7954
+ };
7955
+ _queue = new WeakMap();
7956
+
7957
+ // ../../node_modules/.pnpm/p-queue@8.0.1/node_modules/p-queue/dist/index.js
7958
+ var _carryoverConcurrencyCount, _isIntervalIgnored, _intervalCount, _intervalCap, _interval, _intervalEnd, _intervalId, _timeoutId, _queue2, _queueClass, _pending, _concurrency, _isPaused, _throwOnTimeout, _PQueue_instances, doesIntervalAllowAnother_get, doesConcurrentAllowAnother_get, next_fn, onResumeInterval_fn, isIntervalPaused_get, tryToStartAnother_fn, initializeIntervalIfNeeded_fn, onInterval_fn, processQueue_fn, throwOnAbort_fn, onEvent_fn;
7959
+ var PQueue = class extends import_index.default {
7960
+ // TODO: The `throwOnTimeout` option should affect the return types of `add()` and `addAll()`
7961
+ constructor(options) {
7962
+ super();
7963
+ __privateAdd(this, _PQueue_instances);
7964
+ __privateAdd(this, _carryoverConcurrencyCount);
7965
+ __privateAdd(this, _isIntervalIgnored);
7966
+ __privateAdd(this, _intervalCount, 0);
7967
+ __privateAdd(this, _intervalCap);
7968
+ __privateAdd(this, _interval);
7969
+ __privateAdd(this, _intervalEnd, 0);
7970
+ __privateAdd(this, _intervalId);
7971
+ __privateAdd(this, _timeoutId);
7972
+ __privateAdd(this, _queue2);
7973
+ __privateAdd(this, _queueClass);
7974
+ __privateAdd(this, _pending, 0);
7975
+ // The `!` is needed because of https://github.com/microsoft/TypeScript/issues/32194
7976
+ __privateAdd(this, _concurrency);
7977
+ __privateAdd(this, _isPaused);
7978
+ __privateAdd(this, _throwOnTimeout);
7979
+ /**
7980
+ Per-operation timeout in milliseconds. Operations fulfill once `timeout` elapses if they haven't already.
7981
+
7982
+ Applies to each future operation.
7983
+ */
7984
+ __publicField(this, "timeout");
7985
+ options = {
7986
+ carryoverConcurrencyCount: false,
7987
+ intervalCap: Number.POSITIVE_INFINITY,
7988
+ interval: 0,
7989
+ concurrency: Number.POSITIVE_INFINITY,
7990
+ autoStart: true,
7991
+ queueClass: PriorityQueue,
7992
+ ...options
7993
+ };
7994
+ if (!(typeof options.intervalCap === "number" && options.intervalCap >= 1)) {
7995
+ throw new TypeError(`Expected \`intervalCap\` to be a number from 1 and up, got \`${_nullishCoalesce(_optionalChain([options, 'access', _41 => _41.intervalCap, 'optionalAccess', _42 => _42.toString, 'call', _43 => _43()]), () => ( ""))}\` (${typeof options.intervalCap})`);
7996
+ }
7997
+ if (options.interval === void 0 || !(Number.isFinite(options.interval) && options.interval >= 0)) {
7998
+ throw new TypeError(`Expected \`interval\` to be a finite number >= 0, got \`${_nullishCoalesce(_optionalChain([options, 'access', _44 => _44.interval, 'optionalAccess', _45 => _45.toString, 'call', _46 => _46()]), () => ( ""))}\` (${typeof options.interval})`);
7999
+ }
8000
+ __privateSet(this, _carryoverConcurrencyCount, options.carryoverConcurrencyCount);
8001
+ __privateSet(this, _isIntervalIgnored, options.intervalCap === Number.POSITIVE_INFINITY || options.interval === 0);
8002
+ __privateSet(this, _intervalCap, options.intervalCap);
8003
+ __privateSet(this, _interval, options.interval);
8004
+ __privateSet(this, _queue2, new options.queueClass());
8005
+ __privateSet(this, _queueClass, options.queueClass);
8006
+ this.concurrency = options.concurrency;
8007
+ this.timeout = options.timeout;
8008
+ __privateSet(this, _throwOnTimeout, options.throwOnTimeout === true);
8009
+ __privateSet(this, _isPaused, options.autoStart === false);
8010
+ }
8011
+ get concurrency() {
8012
+ return __privateGet(this, _concurrency);
8013
+ }
8014
+ set concurrency(newConcurrency) {
8015
+ if (!(typeof newConcurrency === "number" && newConcurrency >= 1)) {
8016
+ throw new TypeError(`Expected \`concurrency\` to be a number from 1 and up, got \`${newConcurrency}\` (${typeof newConcurrency})`);
8017
+ }
8018
+ __privateSet(this, _concurrency, newConcurrency);
8019
+ __privateMethod(this, _PQueue_instances, processQueue_fn).call(this);
8020
+ }
8021
+ async add(function_, options = {}) {
8022
+ options = {
8023
+ timeout: this.timeout,
8024
+ throwOnTimeout: __privateGet(this, _throwOnTimeout),
8025
+ ...options
8026
+ };
8027
+ return new Promise((resolve2, reject) => {
8028
+ __privateGet(this, _queue2).enqueue(async () => {
8029
+ __privateWrapper(this, _pending)._++;
8030
+ __privateWrapper(this, _intervalCount)._++;
8031
+ try {
8032
+ _optionalChain([options, 'access', _47 => _47.signal, 'optionalAccess', _48 => _48.throwIfAborted, 'call', _49 => _49()]);
8033
+ let operation = function_({ signal: options.signal });
8034
+ if (options.timeout) {
8035
+ operation = pTimeout(Promise.resolve(operation), { milliseconds: options.timeout });
8036
+ }
8037
+ if (options.signal) {
8038
+ operation = Promise.race([operation, __privateMethod(this, _PQueue_instances, throwOnAbort_fn).call(this, options.signal)]);
8039
+ }
8040
+ const result = await operation;
8041
+ resolve2(result);
8042
+ this.emit("completed", result);
8043
+ } catch (error) {
8044
+ if (error instanceof TimeoutError && !options.throwOnTimeout) {
8045
+ resolve2();
8046
+ return;
8047
+ }
8048
+ reject(error);
8049
+ this.emit("error", error);
8050
+ } finally {
8051
+ __privateMethod(this, _PQueue_instances, next_fn).call(this);
8052
+ }
8053
+ }, options);
8054
+ this.emit("add");
8055
+ __privateMethod(this, _PQueue_instances, tryToStartAnother_fn).call(this);
8056
+ });
8057
+ }
8058
+ async addAll(functions, options) {
8059
+ return Promise.all(functions.map(async (function_) => this.add(function_, options)));
8060
+ }
8061
+ /**
8062
+ Start (or resume) executing enqueued tasks within concurrency limit. No need to call this if queue is not paused (via `options.autoStart = false` or by `.pause()` method.)
8063
+ */
8064
+ start() {
8065
+ if (!__privateGet(this, _isPaused)) {
8066
+ return this;
8067
+ }
8068
+ __privateSet(this, _isPaused, false);
8069
+ __privateMethod(this, _PQueue_instances, processQueue_fn).call(this);
8070
+ return this;
8071
+ }
8072
+ /**
8073
+ Put queue execution on hold.
8074
+ */
8075
+ pause() {
8076
+ __privateSet(this, _isPaused, true);
8077
+ }
8078
+ /**
8079
+ Clear the queue.
8080
+ */
8081
+ clear() {
8082
+ __privateSet(this, _queue2, new (__privateGet(this, _queueClass))());
8083
+ }
8084
+ /**
8085
+ Can be called multiple times. Useful if you for example add additional items at a later time.
8086
+
8087
+ @returns A promise that settles when the queue becomes empty.
8088
+ */
8089
+ async onEmpty() {
8090
+ if (__privateGet(this, _queue2).size === 0) {
8091
+ return;
8092
+ }
8093
+ await __privateMethod(this, _PQueue_instances, onEvent_fn).call(this, "empty");
8094
+ }
8095
+ /**
8096
+ @returns A promise that settles when the queue size is less than the given limit: `queue.size < limit`.
8097
+
8098
+ If you want to avoid having the queue grow beyond a certain size you can `await queue.onSizeLessThan()` before adding a new item.
8099
+
8100
+ Note that this only limits the number of items waiting to start. There could still be up to `concurrency` jobs already running that this call does not include in its calculation.
8101
+ */
8102
+ async onSizeLessThan(limit) {
8103
+ if (__privateGet(this, _queue2).size < limit) {
8104
+ return;
8105
+ }
8106
+ await __privateMethod(this, _PQueue_instances, onEvent_fn).call(this, "next", () => __privateGet(this, _queue2).size < limit);
8107
+ }
8108
+ /**
8109
+ The difference with `.onEmpty` is that `.onIdle` guarantees that all work from the queue has finished. `.onEmpty` merely signals that the queue is empty, but it could mean that some promises haven't completed yet.
8110
+
8111
+ @returns A promise that settles when the queue becomes empty, and all promises have completed; `queue.size === 0 && queue.pending === 0`.
8112
+ */
8113
+ async onIdle() {
8114
+ if (__privateGet(this, _pending) === 0 && __privateGet(this, _queue2).size === 0) {
8115
+ return;
8116
+ }
8117
+ await __privateMethod(this, _PQueue_instances, onEvent_fn).call(this, "idle");
8118
+ }
8119
+ /**
8120
+ Size of the queue, the number of queued items waiting to run.
8121
+ */
8122
+ get size() {
8123
+ return __privateGet(this, _queue2).size;
8124
+ }
8125
+ /**
8126
+ Size of the queue, filtered by the given options.
8127
+
8128
+ For example, this can be used to find the number of items remaining in the queue with a specific priority level.
8129
+ */
8130
+ sizeBy(options) {
8131
+ return __privateGet(this, _queue2).filter(options).length;
8132
+ }
8133
+ /**
8134
+ Number of running items (no longer in the queue).
8135
+ */
8136
+ get pending() {
8137
+ return __privateGet(this, _pending);
8138
+ }
8139
+ /**
8140
+ Whether the queue is currently paused.
8141
+ */
8142
+ get isPaused() {
8143
+ return __privateGet(this, _isPaused);
8144
+ }
8145
+ };
8146
+ _carryoverConcurrencyCount = new WeakMap();
8147
+ _isIntervalIgnored = new WeakMap();
8148
+ _intervalCount = new WeakMap();
8149
+ _intervalCap = new WeakMap();
8150
+ _interval = new WeakMap();
8151
+ _intervalEnd = new WeakMap();
8152
+ _intervalId = new WeakMap();
8153
+ _timeoutId = new WeakMap();
8154
+ _queue2 = new WeakMap();
8155
+ _queueClass = new WeakMap();
8156
+ _pending = new WeakMap();
8157
+ _concurrency = new WeakMap();
8158
+ _isPaused = new WeakMap();
8159
+ _throwOnTimeout = new WeakMap();
8160
+ _PQueue_instances = new WeakSet();
8161
+ doesIntervalAllowAnother_get = function() {
8162
+ return __privateGet(this, _isIntervalIgnored) || __privateGet(this, _intervalCount) < __privateGet(this, _intervalCap);
8163
+ };
8164
+ doesConcurrentAllowAnother_get = function() {
8165
+ return __privateGet(this, _pending) < __privateGet(this, _concurrency);
8166
+ };
8167
+ next_fn = function() {
8168
+ __privateWrapper(this, _pending)._--;
8169
+ __privateMethod(this, _PQueue_instances, tryToStartAnother_fn).call(this);
8170
+ this.emit("next");
8171
+ };
8172
+ onResumeInterval_fn = function() {
8173
+ __privateMethod(this, _PQueue_instances, onInterval_fn).call(this);
8174
+ __privateMethod(this, _PQueue_instances, initializeIntervalIfNeeded_fn).call(this);
8175
+ __privateSet(this, _timeoutId, void 0);
8176
+ };
8177
+ isIntervalPaused_get = function() {
8178
+ const now = Date.now();
8179
+ if (__privateGet(this, _intervalId) === void 0) {
8180
+ const delay = __privateGet(this, _intervalEnd) - now;
8181
+ if (delay < 0) {
8182
+ __privateSet(this, _intervalCount, __privateGet(this, _carryoverConcurrencyCount) ? __privateGet(this, _pending) : 0);
8183
+ } else {
8184
+ if (__privateGet(this, _timeoutId) === void 0) {
8185
+ __privateSet(this, _timeoutId, setTimeout(() => {
8186
+ __privateMethod(this, _PQueue_instances, onResumeInterval_fn).call(this);
8187
+ }, delay));
8188
+ }
8189
+ return true;
8190
+ }
8191
+ }
8192
+ return false;
8193
+ };
8194
+ tryToStartAnother_fn = function() {
8195
+ if (__privateGet(this, _queue2).size === 0) {
8196
+ if (__privateGet(this, _intervalId)) {
8197
+ clearInterval(__privateGet(this, _intervalId));
8198
+ }
8199
+ __privateSet(this, _intervalId, void 0);
8200
+ this.emit("empty");
8201
+ if (__privateGet(this, _pending) === 0) {
8202
+ this.emit("idle");
8203
+ }
8204
+ return false;
8205
+ }
8206
+ if (!__privateGet(this, _isPaused)) {
8207
+ const canInitializeInterval = !__privateGet(this, _PQueue_instances, isIntervalPaused_get);
8208
+ if (__privateGet(this, _PQueue_instances, doesIntervalAllowAnother_get) && __privateGet(this, _PQueue_instances, doesConcurrentAllowAnother_get)) {
8209
+ const job = __privateGet(this, _queue2).dequeue();
8210
+ if (!job) {
8211
+ return false;
8212
+ }
8213
+ this.emit("active");
8214
+ job();
8215
+ if (canInitializeInterval) {
8216
+ __privateMethod(this, _PQueue_instances, initializeIntervalIfNeeded_fn).call(this);
8217
+ }
8218
+ return true;
8219
+ }
8220
+ }
8221
+ return false;
8222
+ };
8223
+ initializeIntervalIfNeeded_fn = function() {
8224
+ if (__privateGet(this, _isIntervalIgnored) || __privateGet(this, _intervalId) !== void 0) {
10592
8225
  return;
10593
8226
  }
10594
- const commands = Array.isArray(hooks.done) ? hooks.done : [hooks.done];
10595
- if (logLevel === _logger.LogLevel.silent) {
10596
- spinner.start("Executing hooks");
8227
+ __privateSet(this, _intervalId, setInterval(() => {
8228
+ __privateMethod(this, _PQueue_instances, onInterval_fn).call(this);
8229
+ }, __privateGet(this, _interval)));
8230
+ __privateSet(this, _intervalEnd, Date.now() + __privateGet(this, _interval));
8231
+ };
8232
+ onInterval_fn = function() {
8233
+ if (__privateGet(this, _intervalCount) === 0 && __privateGet(this, _pending) === 0 && __privateGet(this, _intervalId)) {
8234
+ clearInterval(__privateGet(this, _intervalId));
8235
+ __privateSet(this, _intervalId, void 0);
8236
+ }
8237
+ __privateSet(this, _intervalCount, __privateGet(this, _carryoverConcurrencyCount) ? __privateGet(this, _pending) : 0);
8238
+ __privateMethod(this, _PQueue_instances, processQueue_fn).call(this);
8239
+ };
8240
+ /**
8241
+ Executes all queued functions until it reaches the limit.
8242
+ */
8243
+ processQueue_fn = function() {
8244
+ while (__privateMethod(this, _PQueue_instances, tryToStartAnother_fn).call(this)) {
10597
8245
  }
10598
- const executers = commands.map(async (command) => {
10599
- const oraWritable = new OraWritable(spinner, command);
10600
- const abortController = new AbortController();
8246
+ };
8247
+ throwOnAbort_fn = async function(signal) {
8248
+ return new Promise((_resolve, reject) => {
8249
+ signal.addEventListener("abort", () => {
8250
+ reject(signal.reason);
8251
+ }, { once: true });
8252
+ });
8253
+ };
8254
+ onEvent_fn = async function(event, filter) {
8255
+ return new Promise((resolve2) => {
8256
+ const listener = () => {
8257
+ if (filter && !filter()) {
8258
+ return;
8259
+ }
8260
+ this.off(event, listener);
8261
+ resolve2();
8262
+ };
8263
+ this.on(event, listener);
8264
+ });
8265
+ };
8266
+
8267
+ // src/utils/executeHooks.ts
8268
+ async function executeHooks({ hooks, logger }) {
8269
+ const commands = Array.isArray(hooks.done) ? hooks.done : [hooks.done].filter(Boolean);
8270
+ const queue = new PQueue({ concurrency: 1 });
8271
+ const promises = commands.map(async (command) => {
8272
+ const consolaWritable = new ConsolaWritable(logger.consola, command);
10601
8273
  const [cmd, ..._args] = [..._stringargv.parseArgsStringToArgv.call(void 0, command)];
10602
8274
  if (!cmd) {
10603
8275
  return null;
10604
8276
  }
10605
- spinner.start(`Executing hook ${logLevel !== "silent" ? p2.dim(command) : ""}`);
10606
- const subProcess = await execa(cmd, _args, {
10607
- detached: true,
10608
- cancelSignal: abortController.signal,
10609
- stdout: ["pipe", oraWritable]
10610
- });
10611
- spinner.suffixText = "";
10612
- if (logLevel === _logger.LogLevel.silent) {
10613
- spinner.succeed(`Executing hook ${logLevel !== "silent" ? p2.dim(command) : ""}`);
8277
+ await queue.add(async () => {
8278
+ logger.emit("start", `Executing hook ${logger.logLevel !== _logger.LogMapper.silent ? p2.dim(command) : ""}`);
8279
+ const subProcess = await execa(cmd, _args, {
8280
+ detached: true,
8281
+ stdout: logger.logLevel === _logger.LogMapper.silent ? void 0 : ["pipe", consolaWritable],
8282
+ stripFinalNewline: true
8283
+ });
8284
+ logger.emit("success", `Executing hook ${logger.logLevel !== _logger.LogMapper.silent ? p2.dim(command) : ""}`);
10614
8285
  if (subProcess) {
10615
- console.log(subProcess.stdout);
8286
+ logger.emit("debug", [subProcess.stdout]);
10616
8287
  }
10617
- }
10618
- oraWritable.destroy();
10619
- return { subProcess, abort: abortController.abort.bind(abortController) };
10620
- }).filter(Boolean);
10621
- await Promise.all(executers);
10622
- if (logLevel === _logger.LogLevel.silent) {
10623
- spinner.succeed("Executing hooks");
10624
- }
8288
+ });
8289
+ });
8290
+ await Promise.all(promises);
8291
+ logger.emit("success", "Executing hooks");
10625
8292
  }
10626
8293
 
10627
8294
  // src/utils/getErrorCauses.ts
10628
8295
  init_cjs_shims();
10629
8296
  function getErrorCauses(errors) {
10630
8297
  return errors.reduce((prev, error) => {
10631
- const causedError = _optionalChain([error, 'optionalAccess', _41 => _41.cause]);
8298
+ const causedError = _optionalChain([error, 'optionalAccess', _50 => _50.cause]);
10632
8299
  if (causedError) {
10633
8300
  prev = [...prev, ...getErrorCauses([causedError])];
10634
8301
  return prev;
@@ -10651,50 +8318,39 @@ function parseHrtimeToSeconds(hrtime2) {
10651
8318
  }
10652
8319
 
10653
8320
  // src/utils/getSummary.ts
10654
- function getSummary({ pluginManager, status, hrstart, config, logger }) {
10655
- const { logLevel } = logger;
8321
+ function getSummary({ pluginManager, status, hrStart, config, logger }) {
10656
8322
  const logs = [];
10657
- const elapsedSeconds = parseHrtimeToSeconds(process.hrtime(hrstart));
8323
+ const elapsedSeconds = parseHrtimeToSeconds(process.hrtime(hrStart));
10658
8324
  const buildStartPlugins = pluginManager.executed.filter((item) => item.hookName === "buildStart" && item.plugin.name !== "core").map((item) => item.plugin.name);
10659
8325
  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;
8326
+ const failedPlugins = _optionalChain([config, 'access', _51 => _51.plugins, 'optionalAccess', _52 => _52.filter, 'call', _53 => _53((plugin) => !buildEndPlugins.includes(plugin.name)), 'optionalAccess', _54 => _54.map, 'call', _55 => _55((plugin) => plugin.name)]);
8327
+ const pluginsCount = _optionalChain([config, 'access', _56 => _56.plugins, 'optionalAccess', _57 => _57.length]) || 0;
10662
8328
  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]])) {
8329
+ if (!_optionalChain([a3, 'access', _58 => _58.meta, 'optionalAccess', _59 => _59.pluginKey, 'optionalAccess', _60 => _60[0]]) || !_optionalChain([b, 'access', _61 => _61.meta, 'optionalAccess', _62 => _62.pluginKey, 'optionalAccess', _63 => _63[0]])) {
10664
8330
  return 0;
10665
8331
  }
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])) {
8332
+ 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])) {
10667
8333
  return 1;
10668
8334
  }
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])) {
8335
+ if (_optionalChain([a3, 'access', _72 => _72.meta, 'optionalAccess', _73 => _73.pluginKey, 'optionalAccess', _74 => _74[0], 'optionalAccess', _75 => _75.length]) > _optionalChain([b, 'access', _76 => _76.meta, 'optionalAccess', _77 => _77.pluginKey, 'optionalAccess', _78 => _78[0], 'optionalAccess', _79 => _79.length])) {
10670
8336
  return -1;
10671
8337
  }
10672
8338
  return 0;
10673
8339
  });
10674
8340
  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,
8341
+ plugins: status === "success" ? `${p2.green(`${buildStartPlugins.length} successful`)}, ${pluginsCount} total` : `${p2.red(`${_nullishCoalesce(_optionalChain([failedPlugins, 'optionalAccess', _80 => _80.length]), () => ( 1))} failed`)}, ${pluginsCount} total`,
8342
+ pluginsFailed: status === "failed" ? _optionalChain([failedPlugins, 'optionalAccess', _81 => _81.map, 'call', _82 => _82((name) => _logger.randomCliColour.call(void 0, name)), 'optionalAccess', _83 => _83.join, 'call', _84 => _84(", ")]) : void 0,
10678
8343
  filesCreated: files.length,
10679
- time: p2.yellow(`${elapsedSeconds}s`),
10680
- endTime: p2.yellow(Date()),
8344
+ time: `${p2.yellow(`${elapsedSeconds}s`)} - finished at ${p2.yellow((/* @__PURE__ */ new Date()).toLocaleString("en-GB", { timeZone: "UTC" }))}`,
10681
8345
  output: _path2.default.isAbsolute(config.root) ? _path2.default.resolve(config.root, config.output.path) : config.root
10682
8346
  };
10683
- logger.emit("debug", ["\nGenerated files:\n"]);
10684
- logger.emit(
10685
- "debug",
10686
- files.map((file) => `${_logger.randomCliColour.call(void 0, JSON.stringify(_optionalChain([file, 'access', _76 => _76.meta, 'optionalAccess', _77 => _77.pluginKey])))} ${file.path}`)
10687
- );
10688
8347
  logs.push(
10689
8348
  [
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],
8349
+ [`${p2.bold("Plugins:")} ${meta.plugins}`, true],
8350
+ [`${p2.dim("Failed:")} ${meta.pluginsFailed || "none"}`, !!meta.pluginsFailed],
10694
8351
  [`${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]
8352
+ [`${p2.bold("Time:")} ${meta.time}`, true],
8353
+ [`${p2.bold("Output:")} ${meta.output}`, true]
10698
8354
  ].map((item) => {
10699
8355
  if (item.at(1)) {
10700
8356
  return item.at(0);
@@ -10723,38 +8379,39 @@ async function writeLog(data) {
10723
8379
  }
10724
8380
 
10725
8381
  // src/generate.ts
8382
+ var _cliprogress = require('cli-progress');
8383
+
8384
+
10726
8385
  async function generate({ input, config, args }) {
10727
- const logLevel = args.logLevel || _logger.LogLevel.silent;
8386
+ const logLevel = _logger.LogMapper[args.logLevel] || 3;
10728
8387
  const logger = _logger.createLogger.call(void 0, {
10729
8388
  logLevel,
10730
- name: config.name,
10731
- spinner,
10732
- consola: _consola.createConsola.call(void 0, {
10733
- level: _logger.LogMapper[logLevel] || 3
10734
- })
8389
+ name: config.name
10735
8390
  });
10736
- logger.on("debug", async (messages) => {
10737
- if (logLevel === _logger.LogLevel.debug) {
10738
- await writeLog(messages.join("\n"));
8391
+ const progress = new (0, _cliprogress.SingleBar)(
8392
+ {
8393
+ format: logLevel === _logger.LogMapper.info ? "{percentage}% {bar} {value}/{total} files | ETA: {eta}s | {filename}" : "{percentage}% {bar} ETA: {eta}s",
8394
+ barsize: 40,
8395
+ fps: 5,
8396
+ clearOnComplete: true
8397
+ },
8398
+ _cliprogress.Presets.shades_grey
8399
+ );
8400
+ logger.on("progress", ({ count: count2, size, file }) => {
8401
+ if (count2 === 0) {
8402
+ progress.start(size, 0);
8403
+ } else if (count2 === size) {
8404
+ progress.stop();
8405
+ } else {
8406
+ progress.update(count2, { filename: _path.relative.call(void 0, config.root, file.path) || "" });
10739
8407
  }
10740
8408
  });
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
- }
8409
+ logger.on("debug", async (messages) => {
8410
+ await writeLog(messages.join("\n"));
8411
+ });
10755
8412
  const { root = process.cwd(), ...userConfig } = config;
10756
8413
  const inputPath = _nullishCoalesce(input, () => ( ("path" in userConfig.input ? userConfig.input.path : void 0)));
10757
- spinner.start(`\u{1F680} Building ${logLevel !== "silent" ? p2.dim(inputPath) : ""}`);
8414
+ logger.emit("start", `Building ${logLevel !== _logger.LogMapper.silent ? p2.dim(inputPath) : ""}`);
10758
8415
  const definedConfig = {
10759
8416
  root,
10760
8417
  ...userConfig,
@@ -10767,6 +8424,7 @@ async function generate({ input, config, args }) {
10767
8424
  ...userConfig.output
10768
8425
  }
10769
8426
  };
8427
+ const hrStart = process.hrtime();
10770
8428
  const { pluginManager, error } = await _core.safeBuild.call(void 0, {
10771
8429
  config: definedConfig,
10772
8430
  logger
@@ -10775,30 +8433,42 @@ async function generate({ input, config, args }) {
10775
8433
  pluginManager,
10776
8434
  config: definedConfig,
10777
8435
  status: error ? "failed" : "success",
10778
- hrstart,
8436
+ hrStart,
10779
8437
  logger
10780
8438
  });
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
- }
8439
+ if (error && logger.consola) {
8440
+ logger.consola.error(`Build failed ${logLevel !== _logger.LogMapper.silent ? p2.dim(inputPath) : ""}`);
8441
+ logger.consola.box({
8442
+ title: `${config.name || ""}`,
8443
+ message: summary.join(""),
8444
+ style: {
8445
+ padding: 2,
8446
+ borderColor: "red",
8447
+ borderStyle: "rounded"
8448
+ }
8449
+ });
10789
8450
  const errors = getErrorCauses([error]);
10790
- if (logger.consola && errors.length && logLevel === _logger.LogLevel.debug) {
8451
+ if (logger.consola && errors.length && logLevel === _logger.LogMapper.debug) {
10791
8452
  errors.forEach((err) => {
10792
- logger.consola.error(err);
8453
+ _optionalChain([logger, 'access', _85 => _85.consola, 'optionalAccess', _86 => _86.error, 'call', _87 => _87(err)]);
10793
8454
  });
10794
8455
  }
10795
- _optionalChain([logger, 'access', _87 => _87.consola, 'optionalAccess', _88 => _88.error, 'call', _89 => _89(error)]);
8456
+ _optionalChain([logger, 'access', _88 => _88.consola, 'optionalAccess', _89 => _89.error, 'call', _90 => _90(error)]);
10796
8457
  process.exit(0);
10797
8458
  }
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(""));
8459
+ if (config.hooks) {
8460
+ await executeHooks({ hooks: config.hooks, logger });
8461
+ }
8462
+ _optionalChain([logger, 'access', _91 => _91.consola, 'optionalAccess', _92 => _92.log, 'call', _93 => _93(`\u26A1\uFE0FBuild completed ${logLevel !== _logger.LogMapper.silent ? p2.dim(inputPath) : ""}`)]);
8463
+ _optionalChain([logger, 'access', _94 => _94.consola, 'optionalAccess', _95 => _95.box, 'call', _96 => _96({
8464
+ title: `${config.name || ""}`,
8465
+ message: summary.join(""),
8466
+ style: {
8467
+ padding: 2,
8468
+ borderColor: "green",
8469
+ borderStyle: "rounded"
8470
+ }
8471
+ })]);
10802
8472
  }
10803
8473
 
10804
8474
 
@@ -10806,6 +8476,5 @@ async function generate({ input, config, args }) {
10806
8476
 
10807
8477
 
10808
8478
 
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
8479
+ exports.init_cjs_shims = init_cjs_shims; exports.p = p2; exports.execa = execa; exports.generate = generate;
8480
+ //# sourceMappingURL=chunk-H3BA33NF.cjs.map