@kubb/core 3.4.3 → 3.4.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.
- package/dist/{chunk-A5REIQVX.cjs → chunk-4SHSEMU2.cjs} +35 -35
- package/dist/{chunk-A5REIQVX.cjs.map → chunk-4SHSEMU2.cjs.map} +1 -1
- package/dist/{chunk-MDXPT7LL.js → chunk-GTR42WIS.js} +7 -21
- package/dist/chunk-GTR42WIS.js.map +1 -0
- package/dist/{chunk-6ZGRP6P7.cjs → chunk-HPTZVWK5.cjs} +99 -132
- package/dist/chunk-HPTZVWK5.cjs.map +1 -0
- package/dist/{chunk-IZ2EOWIL.cjs → chunk-LVELAYV4.cjs} +4 -4
- package/dist/{chunk-IZ2EOWIL.cjs.map → chunk-LVELAYV4.cjs.map} +1 -1
- package/dist/{chunk-4ZMRID7I.cjs → chunk-OQSYTQLS.cjs} +10 -10
- package/dist/{chunk-4ZMRID7I.cjs.map → chunk-OQSYTQLS.cjs.map} +1 -1
- package/dist/{chunk-P4ATJPSP.cjs → chunk-S3IJRQEO.cjs} +8 -8
- package/dist/{chunk-P4ATJPSP.cjs.map → chunk-S3IJRQEO.cjs.map} +1 -1
- package/dist/{chunk-7MZNPFPN.js → chunk-SX3K2Q5X.js} +3 -3
- package/dist/{chunk-7MZNPFPN.js.map → chunk-SX3K2Q5X.js.map} +1 -1
- package/dist/index.cjs +35 -35
- package/dist/index.js +3 -3
- package/dist/logger.cjs +7 -7
- package/dist/mocks.cjs +9 -9
- package/dist/mocks.js +2 -2
- package/dist/{prompt-ZJNX5QEM.cjs → prompt-CV2GMUO3.cjs} +61 -61
- package/dist/{prompt-ZJNX5QEM.cjs.map → prompt-CV2GMUO3.cjs.map} +1 -1
- package/dist/transformers.cjs +22 -26
- package/dist/transformers.d.cts +1 -3
- package/dist/transformers.d.ts +1 -3
- package/dist/transformers.js +1 -1
- package/dist/utils.cjs +17 -17
- package/dist/utils.js +2 -2
- package/package.json +8 -8
- package/src/transformers/casing.ts +3 -18
- package/src/transformers/index.ts +2 -3
- package/dist/chunk-6ZGRP6P7.cjs.map +0 -1
- package/dist/chunk-MDXPT7LL.js.map +0 -1
package/dist/mocks.cjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
var
|
|
5
|
-
var
|
|
3
|
+
var chunk4SHSEMU2_cjs = require('./chunk-4SHSEMU2.cjs');
|
|
4
|
+
var chunkHPTZVWK5_cjs = require('./chunk-HPTZVWK5.cjs');
|
|
5
|
+
var chunkLVELAYV4_cjs = require('./chunk-LVELAYV4.cjs');
|
|
6
6
|
var path = require('path');
|
|
7
7
|
|
|
8
8
|
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
@@ -10,7 +10,7 @@ function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
|
10
10
|
var path__default = /*#__PURE__*/_interopDefault(path);
|
|
11
11
|
|
|
12
12
|
// mocks/index.ts
|
|
13
|
-
|
|
13
|
+
chunkLVELAYV4_cjs.init_cjs_shims();
|
|
14
14
|
var mockedLogger = {
|
|
15
15
|
emit(type, message) {
|
|
16
16
|
},
|
|
@@ -21,15 +21,15 @@ var mockedLogger = {
|
|
|
21
21
|
var createMockedPluginManager = (name) => ({
|
|
22
22
|
resolveName: (result) => {
|
|
23
23
|
if (result.type === "file") {
|
|
24
|
-
return
|
|
24
|
+
return chunkHPTZVWK5_cjs.camelCase(name || result.name);
|
|
25
25
|
}
|
|
26
26
|
if (result.type === "type") {
|
|
27
|
-
return
|
|
27
|
+
return chunkHPTZVWK5_cjs.pascalCase(result.name);
|
|
28
28
|
}
|
|
29
29
|
if (result.type === "function") {
|
|
30
|
-
return
|
|
30
|
+
return chunkHPTZVWK5_cjs.camelCase(result.name);
|
|
31
31
|
}
|
|
32
|
-
return
|
|
32
|
+
return chunkHPTZVWK5_cjs.camelCase(result.name);
|
|
33
33
|
},
|
|
34
34
|
config: {
|
|
35
35
|
output: {
|
|
@@ -62,7 +62,7 @@ async function matchFiles(files) {
|
|
|
62
62
|
return void 0;
|
|
63
63
|
}
|
|
64
64
|
for (const file of files) {
|
|
65
|
-
const source = await
|
|
65
|
+
const source = await chunk4SHSEMU2_cjs.getSource(chunk4SHSEMU2_cjs.createFile(file), { logger: mockedLogger });
|
|
66
66
|
expect(source).toMatchFileSnapshot(path__default.default.join("__snapshots__", file.path));
|
|
67
67
|
}
|
|
68
68
|
}
|
package/dist/mocks.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { getSource, createFile } from './chunk-
|
|
2
|
-
import { camelCase, pascalCase } from './chunk-
|
|
1
|
+
import { getSource, createFile } from './chunk-SX3K2Q5X.js';
|
|
2
|
+
import { camelCase, pascalCase } from './chunk-GTR42WIS.js';
|
|
3
3
|
import path from 'node:path';
|
|
4
4
|
|
|
5
5
|
var mockedLogger = {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
var
|
|
3
|
+
var chunkS3IJRQEO_cjs = require('./chunk-S3IJRQEO.cjs');
|
|
4
|
+
var chunkLVELAYV4_cjs = require('./chunk-LVELAYV4.cjs');
|
|
5
5
|
var process$1 = require('process');
|
|
6
6
|
var g = require('readline');
|
|
7
7
|
var tty = require('tty');
|
|
@@ -13,7 +13,7 @@ function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
|
13
13
|
var g__default = /*#__PURE__*/_interopDefault(g);
|
|
14
14
|
|
|
15
15
|
// ../../node_modules/.pnpm/consola@3.3.3/node_modules/consola/dist/chunks/prompt.mjs
|
|
16
|
-
|
|
16
|
+
chunkLVELAYV4_cjs.init_cjs_shims();
|
|
17
17
|
function getDefaultExportFromCjs(x2) {
|
|
18
18
|
return x2 && x2.__esModule && Object.prototype.hasOwnProperty.call(x2, "default") ? x2["default"] : x2;
|
|
19
19
|
}
|
|
@@ -543,7 +543,7 @@ var ND = class extends x {
|
|
|
543
543
|
return this._cursor;
|
|
544
544
|
}
|
|
545
545
|
};
|
|
546
|
-
var unicode =
|
|
546
|
+
var unicode = chunkS3IJRQEO_cjs.isUnicodeSupported();
|
|
547
547
|
var s = (c2, fallback) => unicode ? c2 : fallback;
|
|
548
548
|
var S_STEP_ACTIVE = s("\u276F", ">");
|
|
549
549
|
var S_STEP_CANCEL = s("\u25A0", "x");
|
|
@@ -560,16 +560,16 @@ var symbol = (state) => {
|
|
|
560
560
|
switch (state) {
|
|
561
561
|
case "initial":
|
|
562
562
|
case "active": {
|
|
563
|
-
return
|
|
563
|
+
return chunkS3IJRQEO_cjs.colors.cyan(S_STEP_ACTIVE);
|
|
564
564
|
}
|
|
565
565
|
case "cancel": {
|
|
566
|
-
return
|
|
566
|
+
return chunkS3IJRQEO_cjs.colors.red(S_STEP_CANCEL);
|
|
567
567
|
}
|
|
568
568
|
case "error": {
|
|
569
|
-
return
|
|
569
|
+
return chunkS3IJRQEO_cjs.colors.yellow(S_STEP_ERROR);
|
|
570
570
|
}
|
|
571
571
|
case "submit": {
|
|
572
|
-
return
|
|
572
|
+
return chunkS3IJRQEO_cjs.colors.green(S_STEP_SUBMIT);
|
|
573
573
|
}
|
|
574
574
|
}
|
|
575
575
|
};
|
|
@@ -580,35 +580,35 @@ var text = (opts) => {
|
|
|
580
580
|
defaultValue: opts.defaultValue,
|
|
581
581
|
initialValue: opts.initialValue,
|
|
582
582
|
render() {
|
|
583
|
-
const title = `${
|
|
583
|
+
const title = `${chunkS3IJRQEO_cjs.colors.gray(S_BAR)}
|
|
584
584
|
${symbol(this.state)} ${opts.message}
|
|
585
585
|
`;
|
|
586
|
-
const placeholder = opts.placeholder ?
|
|
586
|
+
const placeholder = opts.placeholder ? chunkS3IJRQEO_cjs.colors.inverse(opts.placeholder[0]) + chunkS3IJRQEO_cjs.colors.dim(opts.placeholder.slice(1)) : chunkS3IJRQEO_cjs.colors.inverse(chunkS3IJRQEO_cjs.colors.hidden("_"));
|
|
587
587
|
const value = this.value ? this.valueWithCursor : placeholder;
|
|
588
588
|
switch (this.state) {
|
|
589
589
|
case "error": {
|
|
590
590
|
return `${title.trim()}
|
|
591
|
-
${
|
|
591
|
+
${chunkS3IJRQEO_cjs.colors.yellow(
|
|
592
592
|
S_BAR
|
|
593
593
|
)} ${value}
|
|
594
|
-
${
|
|
594
|
+
${chunkS3IJRQEO_cjs.colors.yellow(S_BAR_END)} ${chunkS3IJRQEO_cjs.colors.yellow(
|
|
595
595
|
this.error
|
|
596
596
|
)}
|
|
597
597
|
`;
|
|
598
598
|
}
|
|
599
599
|
case "submit": {
|
|
600
|
-
return `${title}${
|
|
600
|
+
return `${title}${chunkS3IJRQEO_cjs.colors.gray(S_BAR)} ${chunkS3IJRQEO_cjs.colors.dim(
|
|
601
601
|
this.value || opts.placeholder
|
|
602
602
|
)}`;
|
|
603
603
|
}
|
|
604
604
|
case "cancel": {
|
|
605
|
-
return `${title}${
|
|
606
|
-
|
|
607
|
-
)}${this.value?.trim() ? "\n" +
|
|
605
|
+
return `${title}${chunkS3IJRQEO_cjs.colors.gray(S_BAR)} ${chunkS3IJRQEO_cjs.colors.strikethrough(
|
|
606
|
+
chunkS3IJRQEO_cjs.colors.dim(this.value ?? "")
|
|
607
|
+
)}${this.value?.trim() ? "\n" + chunkS3IJRQEO_cjs.colors.gray(S_BAR) : ""}`;
|
|
608
608
|
}
|
|
609
609
|
default: {
|
|
610
|
-
return `${title}${
|
|
611
|
-
${
|
|
610
|
+
return `${title}${chunkS3IJRQEO_cjs.colors.cyan(S_BAR)} ${value}
|
|
611
|
+
${chunkS3IJRQEO_cjs.colors.cyan(
|
|
612
612
|
S_BAR_END
|
|
613
613
|
)}
|
|
614
614
|
`;
|
|
@@ -625,23 +625,23 @@ var confirm = (opts) => {
|
|
|
625
625
|
inactive,
|
|
626
626
|
initialValue: opts.initialValue ?? true,
|
|
627
627
|
render() {
|
|
628
|
-
const title = `${
|
|
628
|
+
const title = `${chunkS3IJRQEO_cjs.colors.gray(S_BAR)}
|
|
629
629
|
${symbol(this.state)} ${opts.message}
|
|
630
630
|
`;
|
|
631
631
|
const value = this.value ? active : inactive;
|
|
632
632
|
switch (this.state) {
|
|
633
633
|
case "submit": {
|
|
634
|
-
return `${title}${
|
|
634
|
+
return `${title}${chunkS3IJRQEO_cjs.colors.gray(S_BAR)} ${chunkS3IJRQEO_cjs.colors.dim(value)}`;
|
|
635
635
|
}
|
|
636
636
|
case "cancel": {
|
|
637
|
-
return `${title}${
|
|
638
|
-
|
|
637
|
+
return `${title}${chunkS3IJRQEO_cjs.colors.gray(S_BAR)} ${chunkS3IJRQEO_cjs.colors.strikethrough(
|
|
638
|
+
chunkS3IJRQEO_cjs.colors.dim(value)
|
|
639
639
|
)}
|
|
640
|
-
${
|
|
640
|
+
${chunkS3IJRQEO_cjs.colors.gray(S_BAR)}`;
|
|
641
641
|
}
|
|
642
642
|
default: {
|
|
643
|
-
return `${title}${
|
|
644
|
-
${
|
|
643
|
+
return `${title}${chunkS3IJRQEO_cjs.colors.cyan(S_BAR)} ${this.value ? `${chunkS3IJRQEO_cjs.colors.green(S_RADIO_ACTIVE)} ${active}` : `${chunkS3IJRQEO_cjs.colors.dim(S_RADIO_INACTIVE)} ${chunkS3IJRQEO_cjs.colors.dim(active)}`} ${chunkS3IJRQEO_cjs.colors.dim("/")} ${this.value ? `${chunkS3IJRQEO_cjs.colors.dim(S_RADIO_INACTIVE)} ${chunkS3IJRQEO_cjs.colors.dim(inactive)}` : `${chunkS3IJRQEO_cjs.colors.green(S_RADIO_ACTIVE)} ${inactive}`}
|
|
644
|
+
${chunkS3IJRQEO_cjs.colors.cyan(S_BAR_END)}
|
|
645
645
|
`;
|
|
646
646
|
}
|
|
647
647
|
}
|
|
@@ -653,44 +653,44 @@ var select = (opts) => {
|
|
|
653
653
|
const label = option.label ?? String(option.value);
|
|
654
654
|
switch (state) {
|
|
655
655
|
case "active": {
|
|
656
|
-
return `${
|
|
656
|
+
return `${chunkS3IJRQEO_cjs.colors.green(S_RADIO_ACTIVE)} ${label} ${option.hint ? chunkS3IJRQEO_cjs.colors.dim(`(${option.hint})`) : ""}`;
|
|
657
657
|
}
|
|
658
658
|
case "selected": {
|
|
659
|
-
return `${
|
|
659
|
+
return `${chunkS3IJRQEO_cjs.colors.dim(label)}`;
|
|
660
660
|
}
|
|
661
661
|
case "cancelled": {
|
|
662
|
-
return `${
|
|
662
|
+
return `${chunkS3IJRQEO_cjs.colors.strikethrough(chunkS3IJRQEO_cjs.colors.dim(label))}`;
|
|
663
663
|
}
|
|
664
664
|
}
|
|
665
|
-
return `${
|
|
665
|
+
return `${chunkS3IJRQEO_cjs.colors.dim(S_RADIO_INACTIVE)} ${chunkS3IJRQEO_cjs.colors.dim(label)}`;
|
|
666
666
|
};
|
|
667
667
|
return new jD({
|
|
668
668
|
options: opts.options,
|
|
669
669
|
initialValue: opts.initialValue,
|
|
670
670
|
render() {
|
|
671
|
-
const title = `${
|
|
671
|
+
const title = `${chunkS3IJRQEO_cjs.colors.gray(S_BAR)}
|
|
672
672
|
${symbol(this.state)} ${opts.message}
|
|
673
673
|
`;
|
|
674
674
|
switch (this.state) {
|
|
675
675
|
case "submit": {
|
|
676
|
-
return `${title}${
|
|
676
|
+
return `${title}${chunkS3IJRQEO_cjs.colors.gray(S_BAR)} ${opt(
|
|
677
677
|
this.options[this.cursor],
|
|
678
678
|
"selected"
|
|
679
679
|
)}`;
|
|
680
680
|
}
|
|
681
681
|
case "cancel": {
|
|
682
|
-
return `${title}${
|
|
682
|
+
return `${title}${chunkS3IJRQEO_cjs.colors.gray(S_BAR)} ${opt(
|
|
683
683
|
this.options[this.cursor],
|
|
684
684
|
"cancelled"
|
|
685
685
|
)}
|
|
686
|
-
${
|
|
686
|
+
${chunkS3IJRQEO_cjs.colors.gray(S_BAR)}`;
|
|
687
687
|
}
|
|
688
688
|
default: {
|
|
689
|
-
return `${title}${
|
|
689
|
+
return `${title}${chunkS3IJRQEO_cjs.colors.cyan(S_BAR)} ${this.options.map(
|
|
690
690
|
(option, i) => opt(option, i === this.cursor ? "active" : "inactive")
|
|
691
691
|
).join(`
|
|
692
|
-
${
|
|
693
|
-
${
|
|
692
|
+
${chunkS3IJRQEO_cjs.colors.cyan(S_BAR)} `)}
|
|
693
|
+
${chunkS3IJRQEO_cjs.colors.cyan(S_BAR_END)}
|
|
694
694
|
`;
|
|
695
695
|
}
|
|
696
696
|
}
|
|
@@ -702,22 +702,22 @@ var multiselect = (opts) => {
|
|
|
702
702
|
const label = option.label ?? String(option.value);
|
|
703
703
|
switch (state) {
|
|
704
704
|
case "active": {
|
|
705
|
-
return `${
|
|
705
|
+
return `${chunkS3IJRQEO_cjs.colors.cyan(S_CHECKBOX_ACTIVE)} ${label} ${option.hint ? chunkS3IJRQEO_cjs.colors.dim(`(${option.hint})`) : ""}`;
|
|
706
706
|
}
|
|
707
707
|
case "selected": {
|
|
708
|
-
return `${
|
|
708
|
+
return `${chunkS3IJRQEO_cjs.colors.green(S_CHECKBOX_SELECTED)} ${chunkS3IJRQEO_cjs.colors.dim(label)}`;
|
|
709
709
|
}
|
|
710
710
|
case "cancelled": {
|
|
711
|
-
return `${
|
|
711
|
+
return `${chunkS3IJRQEO_cjs.colors.strikethrough(chunkS3IJRQEO_cjs.colors.dim(label))}`;
|
|
712
712
|
}
|
|
713
713
|
case "active-selected": {
|
|
714
|
-
return `${
|
|
714
|
+
return `${chunkS3IJRQEO_cjs.colors.green(S_CHECKBOX_SELECTED)} ${label} ${option.hint ? chunkS3IJRQEO_cjs.colors.dim(`(${option.hint})`) : ""}`;
|
|
715
715
|
}
|
|
716
716
|
case "submitted": {
|
|
717
|
-
return `${
|
|
717
|
+
return `${chunkS3IJRQEO_cjs.colors.dim(label)}`;
|
|
718
718
|
}
|
|
719
719
|
}
|
|
720
|
-
return `${
|
|
720
|
+
return `${chunkS3IJRQEO_cjs.colors.dim(S_CHECKBOX_INACTIVE)} ${chunkS3IJRQEO_cjs.colors.dim(label)}`;
|
|
721
721
|
};
|
|
722
722
|
return new wD({
|
|
723
723
|
options: opts.options,
|
|
@@ -727,35 +727,35 @@ var multiselect = (opts) => {
|
|
|
727
727
|
validate(selected) {
|
|
728
728
|
if (this.required && selected.length === 0) {
|
|
729
729
|
return `Please select at least one option.
|
|
730
|
-
${
|
|
731
|
-
|
|
732
|
-
`Press ${
|
|
733
|
-
|
|
734
|
-
)} to select, ${
|
|
735
|
-
|
|
730
|
+
${chunkS3IJRQEO_cjs.colors.reset(
|
|
731
|
+
chunkS3IJRQEO_cjs.colors.dim(
|
|
732
|
+
`Press ${chunkS3IJRQEO_cjs.colors.gray(
|
|
733
|
+
chunkS3IJRQEO_cjs.colors.bgWhite(chunkS3IJRQEO_cjs.colors.inverse(" space "))
|
|
734
|
+
)} to select, ${chunkS3IJRQEO_cjs.colors.gray(
|
|
735
|
+
chunkS3IJRQEO_cjs.colors.bgWhite(chunkS3IJRQEO_cjs.colors.inverse(" enter "))
|
|
736
736
|
)} to submit`
|
|
737
737
|
)
|
|
738
738
|
)}`;
|
|
739
739
|
}
|
|
740
740
|
},
|
|
741
741
|
render() {
|
|
742
|
-
const title = `${
|
|
742
|
+
const title = `${chunkS3IJRQEO_cjs.colors.gray(S_BAR)}
|
|
743
743
|
${symbol(this.state)} ${opts.message}
|
|
744
744
|
`;
|
|
745
745
|
switch (this.state) {
|
|
746
746
|
case "submit": {
|
|
747
|
-
return `${title}${
|
|
747
|
+
return `${title}${chunkS3IJRQEO_cjs.colors.gray(S_BAR)} ${this.options.filter(({ value }) => this.value.includes(value)).map((option) => opt(option, "submitted")).join(chunkS3IJRQEO_cjs.colors.dim(", ")) || chunkS3IJRQEO_cjs.colors.dim("none")}`;
|
|
748
748
|
}
|
|
749
749
|
case "cancel": {
|
|
750
|
-
const label = this.options.filter(({ value }) => this.value.includes(value)).map((option) => opt(option, "cancelled")).join(
|
|
751
|
-
return `${title}${
|
|
752
|
-
${
|
|
750
|
+
const label = this.options.filter(({ value }) => this.value.includes(value)).map((option) => opt(option, "cancelled")).join(chunkS3IJRQEO_cjs.colors.dim(", "));
|
|
751
|
+
return `${title}${chunkS3IJRQEO_cjs.colors.gray(S_BAR)} ${label.trim() ? `${label}
|
|
752
|
+
${chunkS3IJRQEO_cjs.colors.gray(S_BAR)}` : ""}`;
|
|
753
753
|
}
|
|
754
754
|
case "error": {
|
|
755
755
|
const footer = this.error.split("\n").map(
|
|
756
|
-
(ln, i) => i === 0 ? `${
|
|
756
|
+
(ln, i) => i === 0 ? `${chunkS3IJRQEO_cjs.colors.yellow(S_BAR_END)} ${chunkS3IJRQEO_cjs.colors.yellow(ln)}` : ` ${ln}`
|
|
757
757
|
).join("\n");
|
|
758
|
-
return title +
|
|
758
|
+
return title + chunkS3IJRQEO_cjs.colors.yellow(S_BAR) + " " + this.options.map((option, i) => {
|
|
759
759
|
const selected = this.value.includes(option.value);
|
|
760
760
|
const active = i === this.cursor;
|
|
761
761
|
if (active && selected) {
|
|
@@ -766,10 +766,10 @@ ${chunkP4ATJPSP_cjs.colors.gray(S_BAR)}` : ""}`;
|
|
|
766
766
|
}
|
|
767
767
|
return opt(option, active ? "active" : "inactive");
|
|
768
768
|
}).join(`
|
|
769
|
-
${
|
|
769
|
+
${chunkS3IJRQEO_cjs.colors.yellow(S_BAR)} `) + "\n" + footer + "\n";
|
|
770
770
|
}
|
|
771
771
|
default: {
|
|
772
|
-
return `${title}${
|
|
772
|
+
return `${title}${chunkS3IJRQEO_cjs.colors.cyan(S_BAR)} ${this.options.map((option, i) => {
|
|
773
773
|
const selected = this.value.includes(option.value);
|
|
774
774
|
const active = i === this.cursor;
|
|
775
775
|
if (active && selected) {
|
|
@@ -780,8 +780,8 @@ ${chunkP4ATJPSP_cjs.colors.yellow(S_BAR)} `) + "\n" + footer + "\n";
|
|
|
780
780
|
}
|
|
781
781
|
return opt(option, active ? "active" : "inactive");
|
|
782
782
|
}).join(`
|
|
783
|
-
${
|
|
784
|
-
${
|
|
783
|
+
${chunkS3IJRQEO_cjs.colors.cyan(S_BAR)} `)}
|
|
784
|
+
${chunkS3IJRQEO_cjs.colors.cyan(S_BAR_END)}
|
|
785
785
|
`;
|
|
786
786
|
}
|
|
787
787
|
}
|
|
@@ -856,5 +856,5 @@ async function prompt(message, opts = {}) {
|
|
|
856
856
|
|
|
857
857
|
exports.kCancel = kCancel;
|
|
858
858
|
exports.prompt = prompt;
|
|
859
|
-
//# sourceMappingURL=prompt-
|
|
860
|
-
//# sourceMappingURL=prompt-
|
|
859
|
+
//# sourceMappingURL=prompt-CV2GMUO3.cjs.map
|
|
860
|
+
//# sourceMappingURL=prompt-CV2GMUO3.cjs.map
|