diff -Nru node-ansi-styles-4.2.0/debian/changelog node-ansi-styles-4.2.1/debian/changelog --- node-ansi-styles-4.2.0/debian/changelog 2019-12-22 07:45:34.000000000 +0000 +++ node-ansi-styles-4.2.1/debian/changelog 2020-01-12 07:12:54.000000000 +0000 @@ -1,3 +1,10 @@ +node-ansi-styles (4.2.1-1) unstable; urgency=medium + + * Team upload + * New upstream version 4.2.1 + + -- Xavier Guimard Sun, 12 Jan 2020 08:12:54 +0100 + node-ansi-styles (4.2.0-2) unstable; urgency=medium * Team upload diff -Nru node-ansi-styles-4.2.0/package.json node-ansi-styles-4.2.1/package.json --- node-ansi-styles-4.2.0/package.json 2019-11-12 11:11:06.000000000 +0000 +++ node-ansi-styles-4.2.1/package.json 2020-01-01 18:11:31.000000000 +0000 @@ -1,9 +1,10 @@ { "name": "ansi-styles", - "version": "4.2.0", + "version": "4.2.1", "description": "ANSI escape codes for styling strings in the terminal", "license": "MIT", "repository": "chalk/ansi-styles", + "funding": "https://github.com/chalk/ansi-styles?sponsor=1", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -50,7 +51,7 @@ "@types/color-convert": "^1.9.0", "ava": "^2.3.0", "svg-term-cli": "^2.1.1", - "tsd": "^0.10.0", + "tsd": "^0.11.0", "xo": "^0.25.3" } } diff -Nru node-ansi-styles-4.2.0/readme.md node-ansi-styles-4.2.1/readme.md --- node-ansi-styles-4.2.0/readme.md 2019-11-12 11:11:06.000000000 +0000 +++ node-ansi-styles-4.2.1/readme.md 2020-01-01 18:11:31.000000000 +0000 @@ -6,14 +6,12 @@ - ## Install ``` $ npm install ansi-styles ``` - ## Usage ```js @@ -36,7 +34,6 @@ Each style has an `open` and `close` property. - ## Styles ### Modifiers @@ -88,7 +85,6 @@ - `bgCyanBright` - `bgWhiteBright` - ## Advanced usage By default, you get a map of styles, but the styles are also available as groups. They are non-enumerable so they don't show up unless you access them explicitly. This makes it easier to expose only a subset in a higher-level module. @@ -112,7 +108,6 @@ //=> 39 ``` - ## [256 / 16 million (TrueColor) support](https://gist.github.com/XVilka/8346728) `ansi-styles` uses the [`color-convert`](https://github.com/Qix-/color-convert) package to allow for converting between various colors and ANSI escapes, with support for 256 and 16 million colors. @@ -141,18 +136,15 @@ style.bgColor.ansi16m.hex('#C0FFEE'); // Hex (RGB) to 16 million color background code ``` - ## Related - [ansi-escapes](https://github.com/sindresorhus/ansi-escapes) - ANSI escape codes for manipulating the terminal - ## Maintainers - [Sindre Sorhus](https://github.com/sindresorhus) - [Josh Junon](https://github.com/qix-) - ---