-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve detection for terminals supporting Unicode
Closes #26
- Loading branch information
1 parent
8b5b437
commit 2f0c0d3
Showing
4 changed files
with
13 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
"description": "Colored symbols for various log levels. Example: `βοΈ Success`", | ||
"license": "MIT", | ||
"repository": "sindresorhus/log-symbols", | ||
"funding": "https://github.com/sponsors/sindresorhus", | ||
"author": { | ||
"name": "Sindre Sorhus", | ||
"email": "sindresorhus@gmail.com", | ||
|
@@ -38,13 +39,14 @@ | |
"stdout" | ||
], | ||
"dependencies": { | ||
"chalk": "^4.0.0" | ||
"chalk": "^4.1.0", | ||
"is-unicode-supported": "^0.1.0" | ||
}, | ||
"devDependencies": { | ||
"ava": "^3.7.1", | ||
"ava": "^2.4.0", | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
sindresorhus
Author
Owner
|
||
"strip-ansi": "^6.0.0", | ||
"tsd": "^0.11.0", | ||
"xo": "^0.30.0" | ||
"tsd": "^0.14.0", | ||
"xo": "^0.38.2" | ||
}, | ||
"browser": "browser.js" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Why did you downgrade ava?