Skip to content
This repository has been archived by the owner on Feb 22, 2024. It is now read-only.

Update chalk to the latest version 🚀 #192

Closed
wants to merge 1 commit into from

Conversation

greenkeeper[bot]
Copy link

@greenkeeper greenkeeper bot commented Jun 30, 2017

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.0

version 2

Chalk 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 the has-ansi package directly instead. 04cae22
  • Removed chalk.stripColor(). Use the strip-ansi package directly instead. 04cae22
  • Removed chalk.styles. Use the ansi-styles package directly instead. 8702496

256/Truecolor support

chalk rainbow

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.

Read more in the docs.

cb3f230

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}}`);

Read more in the docs.

f66271e

Other

All changes

v1.1.3...v2.0.0


Made with ♥ by Josh, Sindre, and all our wonderful contributors.

Commits

The new version differs by 53 commits ahead by 53, behind by 1.

  • 3fca615 2.0.0
  • f66271e Add tagged template literal (#163)
  • 23ef1c7 fix linter errors
  • c015568 add rainbow example
  • 09fb2d8 Re-implement chalk.enabled (#160)
  • 608242a spoof supports-color
  • 18f2e7c add host information output
  • 523b998 Revert "TEMPORARY: emergency travis CI fix (see comments)"
  • 54975fb TEMPORARY: emergency travis CI fix (see comments)
  • 1d73b21 Improve readme
  • 6f4d6b3 Bump dependencies
  • 8702496 Remove chalk.styles
  • 0412cdf Minor code improvements
  • 249b9ac ES2015ify the codebase
  • cb3f230 Add 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 🌴

@codecov
Copy link

codecov bot commented Jun 30, 2017

Codecov Report

Merging #192 into master will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master     #192   +/-   ##
=======================================
  Coverage   92.94%   92.94%           
=======================================
  Files           9        9           
  Lines         241      241           
=======================================
  Hits          224      224           
  Misses         17       17

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update a16058f...a3ab939. Read the comment docs.

@coveralls
Copy link

Coverage Status

Coverage remained the same at 91.62% when pulling a3ab939 on greenkeeper/chalk-2.0.0 into a16058f on master.

greenkeeper bot added a commit that referenced this pull request Jun 30, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Jun 30, 2017

Version 2.0.1 just got published.

Update to this version instead 🚀

Commits

The new version differs by 2 commits.

See the full diff

greenkeeper bot added a commit that referenced this pull request Aug 7, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Aug 7, 2017

Version 2.1.0 just got published.

Update to this version instead 🚀

Commits

The new version differs by 16 commits.

  • 38f641a v2.1.0
  • 69ac663 Fix undefined and null interpolated expressions (fixes #194)
  • 106f086 Rewrite templating system (closes #186, fixes #184)
  • f0c0178 Allow multiple arguments in base chalk object (fixes #187)
  • 0827d3b Fix level when supportsColor returns falsey (fixes #176, #175)
  • fbd17e7 Escape backslashes in template arguments (fixes #177)
  • 7a75399 Add failing template tests
  • 7dbd8c3 Add related packages in the readme (#193)
  • 4c4ba2d Fix template literal test
  • 4c4eb1f Move testing to ava (#182)
  • e8d28f3 Return empty string when there are no arguments (#183)
  • 5cdd9ed Demonstrate crash when using Truecolor methods and color is unsupported (#174)
  • 23092ee add note about brightBlack (ref chalk/ansi-styles#33)
  • 8d26c14 Minor meta tweaks
  • 5ec90cb Link to v2 release notes

There are 16 commits in total.

See the full diff

@stale
Copy link

stale bot commented Oct 6, 2017

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@stale stale bot added the wontfix label Oct 6, 2017
greenkeeper bot added a commit that referenced this pull request Oct 18, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Oct 18, 2017

Version 2.2.0 just got published.

Update to this version instead 🚀

Release Notes v2.2.0

Chalk now comes with TypeScript type definitions built-in. f653b06

v2.1.0...v2.2.0

Commits

The new version differs by 7 commits.

  • d86db88 2.2.0
  • f0533f6 Bump dev dependencies
  • f653b06 Add TypeScript definitions (#207)
  • 5e6d5fd Add strip-ansi-stream to related modules
  • 7898eda Update chalk-pipe description
  • 37db75e Add related package in the readme
  • a9f0c77 Use a Map and some minor regex tweaks

See the full diff

greenkeeper bot added a commit that referenced this pull request Oct 24, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Oct 24, 2017

Version 2.2.2 just got published.

Update to this version instead 🚀

Commits

The new version differs by 6 commits.

  • e1177ec 2.2.2
  • e2a4aa4 fix .visible when called after .enable is set to false
  • ede3103 add failing test for .visible bug
  • 6adf579 2.2.1
  • dc092b4 Add .visible for emitting text only when enabled (fixes #192)
  • 4372d27 Add Awesome mentioned badge

See the full diff

greenkeeper bot added a commit that referenced this pull request Oct 24, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Oct 24, 2017

Version 2.3.0 just got published.

Update to this version instead 🚀

Release Notes v2.3.0
  • Added a .visible() method for emitting text only when Chalk is enabled. This can be useful for purely cosmetic content that shouldn't be shown when there are no colors, like when piping the output. dc092b4
  • TypeScript type definitions improvements. 7be154c

v2.2.0...v2.3.0

Commits

The new version differs by 2 commits.

See the full diff

@stale stale bot closed this Nov 23, 2017
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant