cdk-booster 1.0.1
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/LICENSE +353 -0
- package/LICENSE.md +350 -0
- package/README.md +114 -0
- package/dist/cdk-booster.d.ts +29 -0
- package/dist/cdk-booster.mjs +733 -0
- package/dist/cdkFrameworkWorker.mjs +50 -0
- package/dist/configuration.d.ts +16 -0
- package/dist/configuration.mjs +29 -0
- package/dist/constants.d.ts +1 -0
- package/dist/constants.mjs +3 -0
- package/dist/getConfigFromCliArgs.d.ts +7 -0
- package/dist/getConfigFromCliArgs.mjs +23 -0
- package/dist/getDirname.d.ts +10 -0
- package/dist/getDirname.mjs +19 -0
- package/dist/logger.d.ts +51 -0
- package/dist/logger.mjs +83 -0
- package/dist/types/bundleSettings.d.ts +6 -0
- package/dist/types/bundleSettings.mjs +1 -0
- package/dist/types/cbConfig.d.ts +8 -0
- package/dist/types/cbConfig.mjs +1 -0
- package/dist/types/lambdaBundle.d.ts +11 -0
- package/dist/types/lambdaBundle.mjs +1 -0
- package/dist/utils/findPackageJson.d.ts +6 -0
- package/dist/utils/findPackageJson.mjs +33 -0
- package/dist/version.d.ts +5 -0
- package/dist/version.mjs +25 -0
- package/node_modules/chalk/license +9 -0
- package/node_modules/chalk/package.json +83 -0
- package/node_modules/chalk/readme.md +297 -0
- package/node_modules/chalk/source/index.d.ts +325 -0
- package/node_modules/chalk/source/index.js +225 -0
- package/node_modules/chalk/source/utilities.js +33 -0
- package/node_modules/chalk/source/vendor/ansi-styles/index.d.ts +236 -0
- package/node_modules/chalk/source/vendor/ansi-styles/index.js +223 -0
- package/node_modules/chalk/source/vendor/supports-color/browser.d.ts +1 -0
- package/node_modules/chalk/source/vendor/supports-color/browser.js +34 -0
- package/node_modules/chalk/source/vendor/supports-color/index.d.ts +55 -0
- package/node_modules/chalk/source/vendor/supports-color/index.js +190 -0
- package/node_modules/commander/LICENSE +22 -0
- package/node_modules/commander/Readme.md +1159 -0
- package/node_modules/commander/esm.mjs +16 -0
- package/node_modules/commander/index.js +24 -0
- package/node_modules/commander/lib/argument.js +149 -0
- package/node_modules/commander/lib/command.js +2778 -0
- package/node_modules/commander/lib/error.js +39 -0
- package/node_modules/commander/lib/help.js +747 -0
- package/node_modules/commander/lib/option.js +379 -0
- package/node_modules/commander/lib/suggestSimilar.js +101 -0
- package/node_modules/commander/package-support.json +16 -0
- package/node_modules/commander/package.json +82 -0
- package/node_modules/commander/typings/esm.d.mts +3 -0
- package/node_modules/commander/typings/index.d.ts +1113 -0
- package/package.json +100 -0
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
import ansiStyles from '#ansi-styles';
|
|
2
|
+
import supportsColor from '#supports-color';
|
|
3
|
+
import { // eslint-disable-line import/order
|
|
4
|
+
stringReplaceAll,
|
|
5
|
+
stringEncaseCRLFWithFirstIndex,
|
|
6
|
+
} from './utilities.js';
|
|
7
|
+
|
|
8
|
+
const {stdout: stdoutColor, stderr: stderrColor} = supportsColor;
|
|
9
|
+
|
|
10
|
+
const GENERATOR = Symbol('GENERATOR');
|
|
11
|
+
const STYLER = Symbol('STYLER');
|
|
12
|
+
const IS_EMPTY = Symbol('IS_EMPTY');
|
|
13
|
+
|
|
14
|
+
// `supportsColor.level` → `ansiStyles.color[name]` mapping
|
|
15
|
+
const levelMapping = [
|
|
16
|
+
'ansi',
|
|
17
|
+
'ansi',
|
|
18
|
+
'ansi256',
|
|
19
|
+
'ansi16m',
|
|
20
|
+
];
|
|
21
|
+
|
|
22
|
+
const styles = Object.create(null);
|
|
23
|
+
|
|
24
|
+
const applyOptions = (object, options = {}) => {
|
|
25
|
+
if (options.level && !(Number.isInteger(options.level) && options.level >= 0 && options.level <= 3)) {
|
|
26
|
+
throw new Error('The `level` option should be an integer from 0 to 3');
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
// Detect level if not set manually
|
|
30
|
+
const colorLevel = stdoutColor ? stdoutColor.level : 0;
|
|
31
|
+
object.level = options.level === undefined ? colorLevel : options.level;
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
export class Chalk {
|
|
35
|
+
constructor(options) {
|
|
36
|
+
// eslint-disable-next-line no-constructor-return
|
|
37
|
+
return chalkFactory(options);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
const chalkFactory = options => {
|
|
42
|
+
const chalk = (...strings) => strings.join(' ');
|
|
43
|
+
applyOptions(chalk, options);
|
|
44
|
+
|
|
45
|
+
Object.setPrototypeOf(chalk, createChalk.prototype);
|
|
46
|
+
|
|
47
|
+
return chalk;
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
function createChalk(options) {
|
|
51
|
+
return chalkFactory(options);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
Object.setPrototypeOf(createChalk.prototype, Function.prototype);
|
|
55
|
+
|
|
56
|
+
for (const [styleName, style] of Object.entries(ansiStyles)) {
|
|
57
|
+
styles[styleName] = {
|
|
58
|
+
get() {
|
|
59
|
+
const builder = createBuilder(this, createStyler(style.open, style.close, this[STYLER]), this[IS_EMPTY]);
|
|
60
|
+
Object.defineProperty(this, styleName, {value: builder});
|
|
61
|
+
return builder;
|
|
62
|
+
},
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
styles.visible = {
|
|
67
|
+
get() {
|
|
68
|
+
const builder = createBuilder(this, this[STYLER], true);
|
|
69
|
+
Object.defineProperty(this, 'visible', {value: builder});
|
|
70
|
+
return builder;
|
|
71
|
+
},
|
|
72
|
+
};
|
|
73
|
+
|
|
74
|
+
const getModelAnsi = (model, level, type, ...arguments_) => {
|
|
75
|
+
if (model === 'rgb') {
|
|
76
|
+
if (level === 'ansi16m') {
|
|
77
|
+
return ansiStyles[type].ansi16m(...arguments_);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
if (level === 'ansi256') {
|
|
81
|
+
return ansiStyles[type].ansi256(ansiStyles.rgbToAnsi256(...arguments_));
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
return ansiStyles[type].ansi(ansiStyles.rgbToAnsi(...arguments_));
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
if (model === 'hex') {
|
|
88
|
+
return getModelAnsi('rgb', level, type, ...ansiStyles.hexToRgb(...arguments_));
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
return ansiStyles[type][model](...arguments_);
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
const usedModels = ['rgb', 'hex', 'ansi256'];
|
|
95
|
+
|
|
96
|
+
for (const model of usedModels) {
|
|
97
|
+
styles[model] = {
|
|
98
|
+
get() {
|
|
99
|
+
const {level} = this;
|
|
100
|
+
return function (...arguments_) {
|
|
101
|
+
const styler = createStyler(getModelAnsi(model, levelMapping[level], 'color', ...arguments_), ansiStyles.color.close, this[STYLER]);
|
|
102
|
+
return createBuilder(this, styler, this[IS_EMPTY]);
|
|
103
|
+
};
|
|
104
|
+
},
|
|
105
|
+
};
|
|
106
|
+
|
|
107
|
+
const bgModel = 'bg' + model[0].toUpperCase() + model.slice(1);
|
|
108
|
+
styles[bgModel] = {
|
|
109
|
+
get() {
|
|
110
|
+
const {level} = this;
|
|
111
|
+
return function (...arguments_) {
|
|
112
|
+
const styler = createStyler(getModelAnsi(model, levelMapping[level], 'bgColor', ...arguments_), ansiStyles.bgColor.close, this[STYLER]);
|
|
113
|
+
return createBuilder(this, styler, this[IS_EMPTY]);
|
|
114
|
+
};
|
|
115
|
+
},
|
|
116
|
+
};
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
const proto = Object.defineProperties(() => {}, {
|
|
120
|
+
...styles,
|
|
121
|
+
level: {
|
|
122
|
+
enumerable: true,
|
|
123
|
+
get() {
|
|
124
|
+
return this[GENERATOR].level;
|
|
125
|
+
},
|
|
126
|
+
set(level) {
|
|
127
|
+
this[GENERATOR].level = level;
|
|
128
|
+
},
|
|
129
|
+
},
|
|
130
|
+
});
|
|
131
|
+
|
|
132
|
+
const createStyler = (open, close, parent) => {
|
|
133
|
+
let openAll;
|
|
134
|
+
let closeAll;
|
|
135
|
+
if (parent === undefined) {
|
|
136
|
+
openAll = open;
|
|
137
|
+
closeAll = close;
|
|
138
|
+
} else {
|
|
139
|
+
openAll = parent.openAll + open;
|
|
140
|
+
closeAll = close + parent.closeAll;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
return {
|
|
144
|
+
open,
|
|
145
|
+
close,
|
|
146
|
+
openAll,
|
|
147
|
+
closeAll,
|
|
148
|
+
parent,
|
|
149
|
+
};
|
|
150
|
+
};
|
|
151
|
+
|
|
152
|
+
const createBuilder = (self, _styler, _isEmpty) => {
|
|
153
|
+
// Single argument is hot path, implicit coercion is faster than anything
|
|
154
|
+
// eslint-disable-next-line no-implicit-coercion
|
|
155
|
+
const builder = (...arguments_) => applyStyle(builder, (arguments_.length === 1) ? ('' + arguments_[0]) : arguments_.join(' '));
|
|
156
|
+
|
|
157
|
+
// We alter the prototype because we must return a function, but there is
|
|
158
|
+
// no way to create a function with a different prototype
|
|
159
|
+
Object.setPrototypeOf(builder, proto);
|
|
160
|
+
|
|
161
|
+
builder[GENERATOR] = self;
|
|
162
|
+
builder[STYLER] = _styler;
|
|
163
|
+
builder[IS_EMPTY] = _isEmpty;
|
|
164
|
+
|
|
165
|
+
return builder;
|
|
166
|
+
};
|
|
167
|
+
|
|
168
|
+
const applyStyle = (self, string) => {
|
|
169
|
+
if (self.level <= 0 || !string) {
|
|
170
|
+
return self[IS_EMPTY] ? '' : string;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
let styler = self[STYLER];
|
|
174
|
+
|
|
175
|
+
if (styler === undefined) {
|
|
176
|
+
return string;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
const {openAll, closeAll} = styler;
|
|
180
|
+
if (string.includes('\u001B')) {
|
|
181
|
+
while (styler !== undefined) {
|
|
182
|
+
// Replace any instances already present with a re-opening code
|
|
183
|
+
// otherwise only the part of the string until said closing code
|
|
184
|
+
// will be colored, and the rest will simply be 'plain'.
|
|
185
|
+
string = stringReplaceAll(string, styler.close, styler.open);
|
|
186
|
+
|
|
187
|
+
styler = styler.parent;
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
// We can move both next actions out of loop, because remaining actions in loop won't have
|
|
192
|
+
// any/visible effect on parts we add here. Close the styling before a linebreak and reopen
|
|
193
|
+
// after next line to fix a bleed issue on macOS: https://github.com/chalk/chalk/pull/92
|
|
194
|
+
const lfIndex = string.indexOf('\n');
|
|
195
|
+
if (lfIndex !== -1) {
|
|
196
|
+
string = stringEncaseCRLFWithFirstIndex(string, closeAll, openAll, lfIndex);
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
return openAll + string + closeAll;
|
|
200
|
+
};
|
|
201
|
+
|
|
202
|
+
Object.defineProperties(createChalk.prototype, styles);
|
|
203
|
+
|
|
204
|
+
const chalk = createChalk();
|
|
205
|
+
export const chalkStderr = createChalk({level: stderrColor ? stderrColor.level : 0});
|
|
206
|
+
|
|
207
|
+
export {
|
|
208
|
+
modifierNames,
|
|
209
|
+
foregroundColorNames,
|
|
210
|
+
backgroundColorNames,
|
|
211
|
+
colorNames,
|
|
212
|
+
|
|
213
|
+
// TODO: Remove these aliases in the next major version
|
|
214
|
+
modifierNames as modifiers,
|
|
215
|
+
foregroundColorNames as foregroundColors,
|
|
216
|
+
backgroundColorNames as backgroundColors,
|
|
217
|
+
colorNames as colors,
|
|
218
|
+
} from './vendor/ansi-styles/index.js';
|
|
219
|
+
|
|
220
|
+
export {
|
|
221
|
+
stdoutColor as supportsColor,
|
|
222
|
+
stderrColor as supportsColorStderr,
|
|
223
|
+
};
|
|
224
|
+
|
|
225
|
+
export default chalk;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
// TODO: When targeting Node.js 16, use `String.prototype.replaceAll`.
|
|
2
|
+
export function stringReplaceAll(string, substring, replacer) {
|
|
3
|
+
let index = string.indexOf(substring);
|
|
4
|
+
if (index === -1) {
|
|
5
|
+
return string;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
const substringLength = substring.length;
|
|
9
|
+
let endIndex = 0;
|
|
10
|
+
let returnValue = '';
|
|
11
|
+
do {
|
|
12
|
+
returnValue += string.slice(endIndex, index) + substring + replacer;
|
|
13
|
+
endIndex = index + substringLength;
|
|
14
|
+
index = string.indexOf(substring, endIndex);
|
|
15
|
+
} while (index !== -1);
|
|
16
|
+
|
|
17
|
+
returnValue += string.slice(endIndex);
|
|
18
|
+
return returnValue;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export function stringEncaseCRLFWithFirstIndex(string, prefix, postfix, index) {
|
|
22
|
+
let endIndex = 0;
|
|
23
|
+
let returnValue = '';
|
|
24
|
+
do {
|
|
25
|
+
const gotCR = string[index - 1] === '\r';
|
|
26
|
+
returnValue += string.slice(endIndex, (gotCR ? index - 1 : index)) + prefix + (gotCR ? '\r\n' : '\n') + postfix;
|
|
27
|
+
endIndex = index + 1;
|
|
28
|
+
index = string.indexOf('\n', endIndex);
|
|
29
|
+
} while (index !== -1);
|
|
30
|
+
|
|
31
|
+
returnValue += string.slice(endIndex);
|
|
32
|
+
return returnValue;
|
|
33
|
+
}
|
|
@@ -0,0 +1,236 @@
|
|
|
1
|
+
export interface CSPair { // eslint-disable-line @typescript-eslint/naming-convention
|
|
2
|
+
/**
|
|
3
|
+
The ANSI terminal control sequence for starting this style.
|
|
4
|
+
*/
|
|
5
|
+
readonly open: string;
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
The ANSI terminal control sequence for ending this style.
|
|
9
|
+
*/
|
|
10
|
+
readonly close: string;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export interface ColorBase {
|
|
14
|
+
/**
|
|
15
|
+
The ANSI terminal control sequence for ending this color.
|
|
16
|
+
*/
|
|
17
|
+
readonly close: string;
|
|
18
|
+
|
|
19
|
+
ansi(code: number): string;
|
|
20
|
+
|
|
21
|
+
ansi256(code: number): string;
|
|
22
|
+
|
|
23
|
+
ansi16m(red: number, green: number, blue: number): string;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export interface Modifier {
|
|
27
|
+
/**
|
|
28
|
+
Resets the current color chain.
|
|
29
|
+
*/
|
|
30
|
+
readonly reset: CSPair;
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
Make text bold.
|
|
34
|
+
*/
|
|
35
|
+
readonly bold: CSPair;
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
Emitting only a small amount of light.
|
|
39
|
+
*/
|
|
40
|
+
readonly dim: CSPair;
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
Make text italic. (Not widely supported)
|
|
44
|
+
*/
|
|
45
|
+
readonly italic: CSPair;
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
Make text underline. (Not widely supported)
|
|
49
|
+
*/
|
|
50
|
+
readonly underline: CSPair;
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
Make text overline.
|
|
54
|
+
|
|
55
|
+
Supported on VTE-based terminals, the GNOME terminal, mintty, and Git Bash.
|
|
56
|
+
*/
|
|
57
|
+
readonly overline: CSPair;
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
Inverse background and foreground colors.
|
|
61
|
+
*/
|
|
62
|
+
readonly inverse: CSPair;
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
Prints the text, but makes it invisible.
|
|
66
|
+
*/
|
|
67
|
+
readonly hidden: CSPair;
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
Puts a horizontal line through the center of the text. (Not widely supported)
|
|
71
|
+
*/
|
|
72
|
+
readonly strikethrough: CSPair;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export interface ForegroundColor {
|
|
76
|
+
readonly black: CSPair;
|
|
77
|
+
readonly red: CSPair;
|
|
78
|
+
readonly green: CSPair;
|
|
79
|
+
readonly yellow: CSPair;
|
|
80
|
+
readonly blue: CSPair;
|
|
81
|
+
readonly cyan: CSPair;
|
|
82
|
+
readonly magenta: CSPair;
|
|
83
|
+
readonly white: CSPair;
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
Alias for `blackBright`.
|
|
87
|
+
*/
|
|
88
|
+
readonly gray: CSPair;
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
Alias for `blackBright`.
|
|
92
|
+
*/
|
|
93
|
+
readonly grey: CSPair;
|
|
94
|
+
|
|
95
|
+
readonly blackBright: CSPair;
|
|
96
|
+
readonly redBright: CSPair;
|
|
97
|
+
readonly greenBright: CSPair;
|
|
98
|
+
readonly yellowBright: CSPair;
|
|
99
|
+
readonly blueBright: CSPair;
|
|
100
|
+
readonly cyanBright: CSPair;
|
|
101
|
+
readonly magentaBright: CSPair;
|
|
102
|
+
readonly whiteBright: CSPair;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
export interface BackgroundColor {
|
|
106
|
+
readonly bgBlack: CSPair;
|
|
107
|
+
readonly bgRed: CSPair;
|
|
108
|
+
readonly bgGreen: CSPair;
|
|
109
|
+
readonly bgYellow: CSPair;
|
|
110
|
+
readonly bgBlue: CSPair;
|
|
111
|
+
readonly bgCyan: CSPair;
|
|
112
|
+
readonly bgMagenta: CSPair;
|
|
113
|
+
readonly bgWhite: CSPair;
|
|
114
|
+
|
|
115
|
+
/**
|
|
116
|
+
Alias for `bgBlackBright`.
|
|
117
|
+
*/
|
|
118
|
+
readonly bgGray: CSPair;
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
Alias for `bgBlackBright`.
|
|
122
|
+
*/
|
|
123
|
+
readonly bgGrey: CSPair;
|
|
124
|
+
|
|
125
|
+
readonly bgBlackBright: CSPair;
|
|
126
|
+
readonly bgRedBright: CSPair;
|
|
127
|
+
readonly bgGreenBright: CSPair;
|
|
128
|
+
readonly bgYellowBright: CSPair;
|
|
129
|
+
readonly bgBlueBright: CSPair;
|
|
130
|
+
readonly bgCyanBright: CSPair;
|
|
131
|
+
readonly bgMagentaBright: CSPair;
|
|
132
|
+
readonly bgWhiteBright: CSPair;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
export interface ConvertColor {
|
|
136
|
+
/**
|
|
137
|
+
Convert from the RGB color space to the ANSI 256 color space.
|
|
138
|
+
|
|
139
|
+
@param red - (`0...255`)
|
|
140
|
+
@param green - (`0...255`)
|
|
141
|
+
@param blue - (`0...255`)
|
|
142
|
+
*/
|
|
143
|
+
rgbToAnsi256(red: number, green: number, blue: number): number;
|
|
144
|
+
|
|
145
|
+
/**
|
|
146
|
+
Convert from the RGB HEX color space to the RGB color space.
|
|
147
|
+
|
|
148
|
+
@param hex - A hexadecimal string containing RGB data.
|
|
149
|
+
*/
|
|
150
|
+
hexToRgb(hex: string): [red: number, green: number, blue: number];
|
|
151
|
+
|
|
152
|
+
/**
|
|
153
|
+
Convert from the RGB HEX color space to the ANSI 256 color space.
|
|
154
|
+
|
|
155
|
+
@param hex - A hexadecimal string containing RGB data.
|
|
156
|
+
*/
|
|
157
|
+
hexToAnsi256(hex: string): number;
|
|
158
|
+
|
|
159
|
+
/**
|
|
160
|
+
Convert from the ANSI 256 color space to the ANSI 16 color space.
|
|
161
|
+
|
|
162
|
+
@param code - A number representing the ANSI 256 color.
|
|
163
|
+
*/
|
|
164
|
+
ansi256ToAnsi(code: number): number;
|
|
165
|
+
|
|
166
|
+
/**
|
|
167
|
+
Convert from the RGB color space to the ANSI 16 color space.
|
|
168
|
+
|
|
169
|
+
@param red - (`0...255`)
|
|
170
|
+
@param green - (`0...255`)
|
|
171
|
+
@param blue - (`0...255`)
|
|
172
|
+
*/
|
|
173
|
+
rgbToAnsi(red: number, green: number, blue: number): number;
|
|
174
|
+
|
|
175
|
+
/**
|
|
176
|
+
Convert from the RGB HEX color space to the ANSI 16 color space.
|
|
177
|
+
|
|
178
|
+
@param hex - A hexadecimal string containing RGB data.
|
|
179
|
+
*/
|
|
180
|
+
hexToAnsi(hex: string): number;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
Basic modifier names.
|
|
185
|
+
*/
|
|
186
|
+
export type ModifierName = keyof Modifier;
|
|
187
|
+
|
|
188
|
+
/**
|
|
189
|
+
Basic foreground color names.
|
|
190
|
+
|
|
191
|
+
[More colors here.](https://github.com/chalk/chalk/blob/main/readme.md#256-and-truecolor-color-support)
|
|
192
|
+
*/
|
|
193
|
+
export type ForegroundColorName = keyof ForegroundColor;
|
|
194
|
+
|
|
195
|
+
/**
|
|
196
|
+
Basic background color names.
|
|
197
|
+
|
|
198
|
+
[More colors here.](https://github.com/chalk/chalk/blob/main/readme.md#256-and-truecolor-color-support)
|
|
199
|
+
*/
|
|
200
|
+
export type BackgroundColorName = keyof BackgroundColor;
|
|
201
|
+
|
|
202
|
+
/**
|
|
203
|
+
Basic color names. The combination of foreground and background color names.
|
|
204
|
+
|
|
205
|
+
[More colors here.](https://github.com/chalk/chalk/blob/main/readme.md#256-and-truecolor-color-support)
|
|
206
|
+
*/
|
|
207
|
+
export type ColorName = ForegroundColorName | BackgroundColorName;
|
|
208
|
+
|
|
209
|
+
/**
|
|
210
|
+
Basic modifier names.
|
|
211
|
+
*/
|
|
212
|
+
export const modifierNames: readonly ModifierName[];
|
|
213
|
+
|
|
214
|
+
/**
|
|
215
|
+
Basic foreground color names.
|
|
216
|
+
*/
|
|
217
|
+
export const foregroundColorNames: readonly ForegroundColorName[];
|
|
218
|
+
|
|
219
|
+
/**
|
|
220
|
+
Basic background color names.
|
|
221
|
+
*/
|
|
222
|
+
export const backgroundColorNames: readonly BackgroundColorName[];
|
|
223
|
+
|
|
224
|
+
/*
|
|
225
|
+
Basic color names. The combination of foreground and background color names.
|
|
226
|
+
*/
|
|
227
|
+
export const colorNames: readonly ColorName[];
|
|
228
|
+
|
|
229
|
+
declare const ansiStyles: {
|
|
230
|
+
readonly modifier: Modifier;
|
|
231
|
+
readonly color: ColorBase & ForegroundColor;
|
|
232
|
+
readonly bgColor: ColorBase & BackgroundColor;
|
|
233
|
+
readonly codes: ReadonlyMap<number, number>;
|
|
234
|
+
} & ForegroundColor & BackgroundColor & Modifier & ConvertColor;
|
|
235
|
+
|
|
236
|
+
export default ansiStyles;
|
|
@@ -0,0 +1,223 @@
|
|
|
1
|
+
const ANSI_BACKGROUND_OFFSET = 10;
|
|
2
|
+
|
|
3
|
+
const wrapAnsi16 = (offset = 0) => code => `\u001B[${code + offset}m`;
|
|
4
|
+
|
|
5
|
+
const wrapAnsi256 = (offset = 0) => code => `\u001B[${38 + offset};5;${code}m`;
|
|
6
|
+
|
|
7
|
+
const wrapAnsi16m = (offset = 0) => (red, green, blue) => `\u001B[${38 + offset};2;${red};${green};${blue}m`;
|
|
8
|
+
|
|
9
|
+
const styles = {
|
|
10
|
+
modifier: {
|
|
11
|
+
reset: [0, 0],
|
|
12
|
+
// 21 isn't widely supported and 22 does the same thing
|
|
13
|
+
bold: [1, 22],
|
|
14
|
+
dim: [2, 22],
|
|
15
|
+
italic: [3, 23],
|
|
16
|
+
underline: [4, 24],
|
|
17
|
+
overline: [53, 55],
|
|
18
|
+
inverse: [7, 27],
|
|
19
|
+
hidden: [8, 28],
|
|
20
|
+
strikethrough: [9, 29],
|
|
21
|
+
},
|
|
22
|
+
color: {
|
|
23
|
+
black: [30, 39],
|
|
24
|
+
red: [31, 39],
|
|
25
|
+
green: [32, 39],
|
|
26
|
+
yellow: [33, 39],
|
|
27
|
+
blue: [34, 39],
|
|
28
|
+
magenta: [35, 39],
|
|
29
|
+
cyan: [36, 39],
|
|
30
|
+
white: [37, 39],
|
|
31
|
+
|
|
32
|
+
// Bright color
|
|
33
|
+
blackBright: [90, 39],
|
|
34
|
+
gray: [90, 39], // Alias of `blackBright`
|
|
35
|
+
grey: [90, 39], // Alias of `blackBright`
|
|
36
|
+
redBright: [91, 39],
|
|
37
|
+
greenBright: [92, 39],
|
|
38
|
+
yellowBright: [93, 39],
|
|
39
|
+
blueBright: [94, 39],
|
|
40
|
+
magentaBright: [95, 39],
|
|
41
|
+
cyanBright: [96, 39],
|
|
42
|
+
whiteBright: [97, 39],
|
|
43
|
+
},
|
|
44
|
+
bgColor: {
|
|
45
|
+
bgBlack: [40, 49],
|
|
46
|
+
bgRed: [41, 49],
|
|
47
|
+
bgGreen: [42, 49],
|
|
48
|
+
bgYellow: [43, 49],
|
|
49
|
+
bgBlue: [44, 49],
|
|
50
|
+
bgMagenta: [45, 49],
|
|
51
|
+
bgCyan: [46, 49],
|
|
52
|
+
bgWhite: [47, 49],
|
|
53
|
+
|
|
54
|
+
// Bright color
|
|
55
|
+
bgBlackBright: [100, 49],
|
|
56
|
+
bgGray: [100, 49], // Alias of `bgBlackBright`
|
|
57
|
+
bgGrey: [100, 49], // Alias of `bgBlackBright`
|
|
58
|
+
bgRedBright: [101, 49],
|
|
59
|
+
bgGreenBright: [102, 49],
|
|
60
|
+
bgYellowBright: [103, 49],
|
|
61
|
+
bgBlueBright: [104, 49],
|
|
62
|
+
bgMagentaBright: [105, 49],
|
|
63
|
+
bgCyanBright: [106, 49],
|
|
64
|
+
bgWhiteBright: [107, 49],
|
|
65
|
+
},
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
export const modifierNames = Object.keys(styles.modifier);
|
|
69
|
+
export const foregroundColorNames = Object.keys(styles.color);
|
|
70
|
+
export const backgroundColorNames = Object.keys(styles.bgColor);
|
|
71
|
+
export const colorNames = [...foregroundColorNames, ...backgroundColorNames];
|
|
72
|
+
|
|
73
|
+
function assembleStyles() {
|
|
74
|
+
const codes = new Map();
|
|
75
|
+
|
|
76
|
+
for (const [groupName, group] of Object.entries(styles)) {
|
|
77
|
+
for (const [styleName, style] of Object.entries(group)) {
|
|
78
|
+
styles[styleName] = {
|
|
79
|
+
open: `\u001B[${style[0]}m`,
|
|
80
|
+
close: `\u001B[${style[1]}m`,
|
|
81
|
+
};
|
|
82
|
+
|
|
83
|
+
group[styleName] = styles[styleName];
|
|
84
|
+
|
|
85
|
+
codes.set(style[0], style[1]);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
Object.defineProperty(styles, groupName, {
|
|
89
|
+
value: group,
|
|
90
|
+
enumerable: false,
|
|
91
|
+
});
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
Object.defineProperty(styles, 'codes', {
|
|
95
|
+
value: codes,
|
|
96
|
+
enumerable: false,
|
|
97
|
+
});
|
|
98
|
+
|
|
99
|
+
styles.color.close = '\u001B[39m';
|
|
100
|
+
styles.bgColor.close = '\u001B[49m';
|
|
101
|
+
|
|
102
|
+
styles.color.ansi = wrapAnsi16();
|
|
103
|
+
styles.color.ansi256 = wrapAnsi256();
|
|
104
|
+
styles.color.ansi16m = wrapAnsi16m();
|
|
105
|
+
styles.bgColor.ansi = wrapAnsi16(ANSI_BACKGROUND_OFFSET);
|
|
106
|
+
styles.bgColor.ansi256 = wrapAnsi256(ANSI_BACKGROUND_OFFSET);
|
|
107
|
+
styles.bgColor.ansi16m = wrapAnsi16m(ANSI_BACKGROUND_OFFSET);
|
|
108
|
+
|
|
109
|
+
// From https://github.com/Qix-/color-convert/blob/3f0e0d4e92e235796ccb17f6e85c72094a651f49/conversions.js
|
|
110
|
+
Object.defineProperties(styles, {
|
|
111
|
+
rgbToAnsi256: {
|
|
112
|
+
value(red, green, blue) {
|
|
113
|
+
// We use the extended greyscale palette here, with the exception of
|
|
114
|
+
// black and white. normal palette only has 4 greyscale shades.
|
|
115
|
+
if (red === green && green === blue) {
|
|
116
|
+
if (red < 8) {
|
|
117
|
+
return 16;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
if (red > 248) {
|
|
121
|
+
return 231;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
return Math.round(((red - 8) / 247) * 24) + 232;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
return 16
|
|
128
|
+
+ (36 * Math.round(red / 255 * 5))
|
|
129
|
+
+ (6 * Math.round(green / 255 * 5))
|
|
130
|
+
+ Math.round(blue / 255 * 5);
|
|
131
|
+
},
|
|
132
|
+
enumerable: false,
|
|
133
|
+
},
|
|
134
|
+
hexToRgb: {
|
|
135
|
+
value(hex) {
|
|
136
|
+
const matches = /[a-f\d]{6}|[a-f\d]{3}/i.exec(hex.toString(16));
|
|
137
|
+
if (!matches) {
|
|
138
|
+
return [0, 0, 0];
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
let [colorString] = matches;
|
|
142
|
+
|
|
143
|
+
if (colorString.length === 3) {
|
|
144
|
+
colorString = [...colorString].map(character => character + character).join('');
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
const integer = Number.parseInt(colorString, 16);
|
|
148
|
+
|
|
149
|
+
return [
|
|
150
|
+
/* eslint-disable no-bitwise */
|
|
151
|
+
(integer >> 16) & 0xFF,
|
|
152
|
+
(integer >> 8) & 0xFF,
|
|
153
|
+
integer & 0xFF,
|
|
154
|
+
/* eslint-enable no-bitwise */
|
|
155
|
+
];
|
|
156
|
+
},
|
|
157
|
+
enumerable: false,
|
|
158
|
+
},
|
|
159
|
+
hexToAnsi256: {
|
|
160
|
+
value: hex => styles.rgbToAnsi256(...styles.hexToRgb(hex)),
|
|
161
|
+
enumerable: false,
|
|
162
|
+
},
|
|
163
|
+
ansi256ToAnsi: {
|
|
164
|
+
value(code) {
|
|
165
|
+
if (code < 8) {
|
|
166
|
+
return 30 + code;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
if (code < 16) {
|
|
170
|
+
return 90 + (code - 8);
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
let red;
|
|
174
|
+
let green;
|
|
175
|
+
let blue;
|
|
176
|
+
|
|
177
|
+
if (code >= 232) {
|
|
178
|
+
red = (((code - 232) * 10) + 8) / 255;
|
|
179
|
+
green = red;
|
|
180
|
+
blue = red;
|
|
181
|
+
} else {
|
|
182
|
+
code -= 16;
|
|
183
|
+
|
|
184
|
+
const remainder = code % 36;
|
|
185
|
+
|
|
186
|
+
red = Math.floor(code / 36) / 5;
|
|
187
|
+
green = Math.floor(remainder / 6) / 5;
|
|
188
|
+
blue = (remainder % 6) / 5;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
const value = Math.max(red, green, blue) * 2;
|
|
192
|
+
|
|
193
|
+
if (value === 0) {
|
|
194
|
+
return 30;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
// eslint-disable-next-line no-bitwise
|
|
198
|
+
let result = 30 + ((Math.round(blue) << 2) | (Math.round(green) << 1) | Math.round(red));
|
|
199
|
+
|
|
200
|
+
if (value === 2) {
|
|
201
|
+
result += 60;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
return result;
|
|
205
|
+
},
|
|
206
|
+
enumerable: false,
|
|
207
|
+
},
|
|
208
|
+
rgbToAnsi: {
|
|
209
|
+
value: (red, green, blue) => styles.ansi256ToAnsi(styles.rgbToAnsi256(red, green, blue)),
|
|
210
|
+
enumerable: false,
|
|
211
|
+
},
|
|
212
|
+
hexToAnsi: {
|
|
213
|
+
value: hex => styles.ansi256ToAnsi(styles.hexToAnsi256(hex)),
|
|
214
|
+
enumerable: false,
|
|
215
|
+
},
|
|
216
|
+
});
|
|
217
|
+
|
|
218
|
+
return styles;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
const ansiStyles = assembleStyles();
|
|
222
|
+
|
|
223
|
+
export default ansiStyles;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {default} from './index.js';
|