mwaylabs / generator-m-ionic

Advanced workflows and setup for building rock-solid Ionic apps
MIT License
672 stars 135 forks source link

Update chalk to the latest version πŸš€ #523

Closed greenkeeper[bot] closed 5 years ago

greenkeeper[bot] commented 6 years ago

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](https://greenkeeper.io/faq.html) and of course you may always [ask my humans](https://github.com/greenkeeperio/greenkeeper/issues/new).

Your Greenkeeper Bot :palm_tree:

coveralls commented 6 years ago

Coverage Status

Coverage remained the same at 97.861% when pulling 2ee223150447b3bb2fa65fceaeec7352e06e0967 on greenkeeper/chalk-2.0.0 into 379493abacdb09988a7620992a989de204150d27 on master.

greenkeeper[bot] commented 6 years ago

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] commented 6 years ago

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

greenkeeper[bot] commented 6 years ago

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] commented 6 years ago

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] commented 6 years ago

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

greenkeeper[bot] commented 6 years ago

Version 2.3.1 just got published.

Update to this version instead πŸš€

Commits

The new version differs by 8 commits.

  • ae8a03f 2.3.1
  • b55dd79 Force bump dependencies
  • 678152c Update chalk to use the latest updates to supports-color (#247)
  • 011dd04 Fix usage example in the readme (#251)
  • 6554030 Use svg screenshot
  • bc3dd75 Update usage stats in the readme (#242)
  • a8c60e3 Fix spelling error in readme (#232)
  • 5392313 Correct HSV and HWB examples

See the full diff

greenkeeper[bot] commented 6 years ago

Version 2.3.2 just got published.

Update to this version instead πŸš€

Release Notes v2.3.2

v2.3.1...v2.3.2

Commits

The new version differs by 7 commits.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 2.4.0 just got published.

Update to this version instead πŸš€

Release Notes v2.4.0
  • Added Flow type definitions. 7c6f83f

v2.3.2...v2.4.0

Commits

The new version differs by 4 commits.

See the full diff