ansi-colors
Advanced tools
Comparing version 4.1.0 to 4.1.1
{ | ||
"name": "ansi-colors", | ||
"description": "Easily add ANSI colors to your text and symbols in the terminal. A faster drop-in replacement for chalk, kleur and turbocolor (without the dependencies and rendering bugs).", | ||
"version": "4.1.0", | ||
"version": "4.1.1", | ||
"homepage": "https://github.com/doowb/ansi-colors", | ||
@@ -109,2 +109,2 @@ "author": "Brian Woodward (https://github.com/doowb)", | ||
} | ||
} | ||
} |
@@ -35,4 +35,3 @@ 'use strict'; | ||
const windows = { | ||
...common, | ||
const windows = Object.assign({}, common, { | ||
check: '√', | ||
@@ -50,6 +49,5 @@ cross: '×', | ||
warning: '‼' | ||
}; | ||
}); | ||
const other = { | ||
...common, | ||
const other = Object.assign({}, common, { | ||
ballotCross: '✘', | ||
@@ -69,3 +67,3 @@ check: '✔', | ||
warning: '⚠' | ||
}; | ||
}); | ||
@@ -72,0 +70,0 @@ module.exports = (isWindows && !isHyper) ? windows : other; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
24394
359