Skip to content

Commit

Permalink
Bundle dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Nov 26, 2021
1 parent d7c4aac commit 04fdbd6
Show file tree
Hide file tree
Showing 10 changed files with 667 additions and 10 deletions.
11 changes: 7 additions & 4 deletions package.json
Expand Up @@ -7,6 +7,13 @@
"funding": "https://github.com/chalk/chalk?sponsor=1",
"type": "module",
"exports": "./source/index.js",
"imports": {
"#ansi-styles": "./source/vendor/ansi-styles/index.js",
"#supports-color": {
"node": "./source/vendor/supports-color/index.js",
"default": "./source/vendor/supports-color/browser.js"
}
},
"engines": {
"node": "^12.17.0 || ^14.13 || >=16.0.0"
},
Expand Down Expand Up @@ -40,10 +47,6 @@
"command-line",
"text"
],
"dependencies": {
"ansi-styles": "^6.1.0",
"supports-color": "^9.1.0"
},
"devDependencies": {
"ava": "^3.15.0",
"color-convert": "^2.0.1",
Expand Down
7 changes: 5 additions & 2 deletions source/index.d.ts
@@ -1,4 +1,6 @@
import {ColorInfo, ColorSupportLevel} from 'supports-color';
// TODO: Make it this when TS suports that.
// import {ColorInfo, ColorSupportLevel} from '#supports-color';
import {ColorInfo, ColorSupportLevel} from './vendor/supports-color/index.js';

/**
Basic foreground colors.
Expand Down Expand Up @@ -310,6 +312,7 @@ export {
ColorInfo,
ColorSupport,
ColorSupportLevel,
} from 'supports-color';
// } from '#supports-color';
} from './vendor/supports-color/index.js';

export default chalk;
8 changes: 4 additions & 4 deletions source/index.js
@@ -1,9 +1,9 @@
import ansiStyles from 'ansi-styles';
import supportsColor from 'supports-color';
import {
import ansiStyles from '#ansi-styles';
import supportsColor from '#supports-color';
import { // eslint-disable-line import/order
stringReplaceAll,
stringEncaseCRLFWithFirstIndex,
} from './util.js';
} from './utilities.js';

const {stdout: stdoutColor, stderr: stderrColor} = supportsColor;

Expand Down
File renamed without changes.
190 changes: 190 additions & 0 deletions source/vendor/ansi-styles/index.d.ts
@@ -0,0 +1,190 @@
export interface CSPair { // eslint-disable-line @typescript-eslint/naming-convention
/**
The ANSI terminal control sequence for starting this style.
*/
readonly open: string;

/**
The ANSI terminal control sequence for ending this style.
*/
readonly close: string;
}

export interface ColorBase {
/**
The ANSI terminal control sequence for ending this color.
*/
readonly close: string;

ansi(code: number): string;

ansi256(code: number): string;

ansi16m(red: number, green: number, blue: number): string;
}

export interface Modifier {
/**
Resets the current color chain.
*/
readonly reset: CSPair;

/**
Make text bold.
*/
readonly bold: CSPair;

/**
Emitting only a small amount of light.
*/
readonly dim: CSPair;

/**
Make text italic. (Not widely supported)
*/
readonly italic: CSPair;

/**
Make text underline. (Not widely supported)
*/
readonly underline: CSPair;

/**
Make text overline.
Supported on VTE-based terminals, the GNOME terminal, mintty, and Git Bash.
*/
readonly overline: CSPair;

/**
Inverse background and foreground colors.
*/
readonly inverse: CSPair;

/**
Prints the text, but makes it invisible.
*/
readonly hidden: CSPair;

/**
Puts a horizontal line through the center of the text. (Not widely supported)
*/
readonly strikethrough: CSPair;
}

export interface ForegroundColor {
readonly black: CSPair;
readonly red: CSPair;
readonly green: CSPair;
readonly yellow: CSPair;
readonly blue: CSPair;
readonly cyan: CSPair;
readonly magenta: CSPair;
readonly white: CSPair;

/**
Alias for `blackBright`.
*/
readonly gray: CSPair;

/**
Alias for `blackBright`.
*/
readonly grey: CSPair;

readonly blackBright: CSPair;
readonly redBright: CSPair;
readonly greenBright: CSPair;
readonly yellowBright: CSPair;
readonly blueBright: CSPair;
readonly cyanBright: CSPair;
readonly magentaBright: CSPair;
readonly whiteBright: CSPair;
}

export interface BackgroundColor {
readonly bgBlack: CSPair;
readonly bgRed: CSPair;
readonly bgGreen: CSPair;
readonly bgYellow: CSPair;
readonly bgBlue: CSPair;
readonly bgCyan: CSPair;
readonly bgMagenta: CSPair;
readonly bgWhite: CSPair;

/**
Alias for `bgBlackBright`.
*/
readonly bgGray: CSPair;

/**
Alias for `bgBlackBright`.
*/
readonly bgGrey: CSPair;

readonly bgBlackBright: CSPair;
readonly bgRedBright: CSPair;
readonly bgGreenBright: CSPair;
readonly bgYellowBright: CSPair;
readonly bgBlueBright: CSPair;
readonly bgCyanBright: CSPair;
readonly bgMagentaBright: CSPair;
readonly bgWhiteBright: CSPair;
}

export interface ConvertColor {
/**
Convert from the RGB color space to the ANSI 256 color space.
@param red - (`0...255`)
@param green - (`0...255`)
@param blue - (`0...255`)
*/
rgbToAnsi256(red: number, green: number, blue: number): number;

/**
Convert from the RGB HEX color space to the RGB color space.
@param hex - A hexadecimal string containing RGB data.
*/
hexToRgb(hex: string): [red: number, green: number, blue: number];

/**
Convert from the RGB HEX color space to the ANSI 256 color space.
@param hex - A hexadecimal string containing RGB data.
*/
hexToAnsi256(hex: string): number;

/**
Convert from the ANSI 256 color space to the ANSI 16 color space.
@param code - A number representing the ANSI 256 color.
*/
ansi256ToAnsi(code: number): number;

/**
Convert from the RGB color space to the ANSI 16 color space.
@param red - (`0...255`)
@param green - (`0...255`)
@param blue - (`0...255`)
*/
rgbToAnsi(red: number, green: number, blue: number): number;

/**
Convert from the RGB HEX color space to the ANSI 16 color space.
@param hex - A hexadecimal string containing RGB data.
*/
hexToAnsi(hex: string): number;
}

declare const ansiStyles: {
readonly modifier: Modifier;
readonly color: ColorBase & ForegroundColor;
readonly bgColor: ColorBase & BackgroundColor;
readonly codes: ReadonlyMap<number, number>;
} & ForegroundColor & BackgroundColor & Modifier & ConvertColor;

export default ansiStyles;

0 comments on commit 04fdbd6

Please sign in to comment.