Update chalk to the latest version π
Version 2.0.0 of chalk just got published.
| Dependency | chalk |
|---|---|
| Current Version | 1.1.3 |
| Type | dependency |
The version 2.0.0 is not covered by your current version range.
Without accepting this pull request your project will work just like it did before. There might be a bunch of new features, fixes and perf improvements that the maintainers worked on for you though.
I recommend you look into these changes and try to get onto the latest version of chalk. Given that you have a decent test suite, a passing build is a strong indicator that you can take advantage of these changes by merging the proposed change into your project. Otherwise this branch is a great starting point for you to work on the update.
Release Notes
2.0.0Chalk is a Node.js module for styling and colorizing terminal output.
Two years ago, @Qix- asked me about adding 256/Truecolor support to Chalk. He soon after joined the Chalk team. And now weβre finally able to ship Truecolor support in Chalk!
Chalk has had an immense growth since the 1.0.0 release in 2015. It's now trusted by more than 17.000 packages, up from 3000, and it's the 5th most depended upon package on npm.
Highlights
Breaking changes
- Requires Node.js 4 or later.
- Removed
chalk.hasColor(). Use thehas-ansipackage directly instead. 04cae22 - Removed
chalk.stripColor(). Use thestrip-ansipackage directly instead. 04cae22 - Removed
chalk.styles. Use theansi-stylespackage directly instead. 8702496
256/Truecolor support
Chalk now supports 256 colors and Truecolor (16 million colors). Terminal apps like Hyper and iTerm supports Truecolor, enabling you to create really immersive CLI experiences. Chalk is smart enough to downsample the colors to whatever the terminal supports, so you can use any colors without having to think whether it's supported or not.
Tagged template literal
Chalk now ships with a tagged template literal that makes it much nicer to create long strings with lots of different styling.
const name = 'Sindre';
console.log(chalk`{bold Hello ${name}}`);Other
- Added bright color variants. chalk/ansi-styles@d1d855e
- Fixed a bleed issue on macOS. 05f87e2
All changes
Made with β₯ by Josh, Sindre, and all our wonderful contributors.
Commits
The new version differs by 53 commits ahead by 53, behind by 1.
3fca6152.0.0f66271eAdd tagged template literal (#163)23ef1c7fix linter errorsc015568add rainbow example09fb2d8Re-implementchalk.enabled(#160)608242aspoof supports-color18f2e7cadd host information output523b998Revert "TEMPORARY: emergency travis CI fix (see comments)"54975fbTEMPORARY: emergency travis CI fix (see comments)1d73b21Improve readme6f4d6b3Bump dependencies8702496Removechalk.styles0412cdfMinor code improvements249b9acES2015ify the codebasecb3f230Add RGB (256/Truecolor) support (#140)
There are 53 commits in total.
See the full diff
Not sure how things should work exactly?
There is a collection of frequently asked questions and of course you may always ask my humans.
Your Greenkeeper Bot :palm_tree:
Version 2.0.1 just got published.
Version 2.1.0 just got published.
Update to this version instead π
Commits
The new version differs by 16 commits.
38f641av2.1.069ac663Fix undefined and null interpolated expressions (fixes #194)106f086Rewrite templating system (closes #186, fixes #184)f0c0178Allow multiple arguments in base chalk object (fixes #187)0827d3bFix level when supportsColor returns falsey (fixes #176, #175)fbd17e7Escape backslashes in template arguments (fixes #177)7a75399Add failing template tests7dbd8c3Add related packages in the readme (#193)4c4ba2dFix template literal test4c4eb1fMove testing toava(#182)e8d28f3Return emptystringwhen there are no arguments (#183)5cdd9edDemonstrate crash when using Truecolor methods and color is unsupported (#174)23092eeadd note about brightBlack (ref chalk/ansi-styles#33)8d26c14Minor meta tweaks5ec90cbLink to v2 release notes
There are 16 commits in total.
See the full diff

