Bump chalk from 2.4.2 to 4.1.2
Bumps chalk from 2.4.2 to 4.1.2.
Release notes
Sourced from chalk's releases.
v4.1.2
- Readme updates
v4.1.1
v4.1.0
- Support template literals for nested calls (#392) 09ddbad
https://github.com/chalk/chalk/compare/v4.0.0...v4.1.0
v4.0.0
Breaking
- Require Node.js 10 61999a4
- Change the
LevelTypeScript type to be a union instead of enum f0f4638-if (chalk.level > Level.None) {} +if (chalk.level > 0) {}Improvements
- Use
Object.setPrototypeOfas__proto__could potentially be disabled (#387) 63469d3https://github.com/chalk/chalk/compare/v3.0.0...v4.0.0
v3.0.0
This release has been in development for more than a year and massively improves performance and the time it takes to import Chalk.
Thanks to
@stronciumfor his hard work on this. 🙌Breaking
- Require Node.js 8 3ef170b
- Remove the
.enabledproperty in favor of.level(#356) 1f77953
- Why: It was confusing to users to have two properties for detecting color support.
- Migrate:
-if (chalk.enabled) {} +if (chalk.level > 0) {}
- Remove
chalk.constructor()in favor ofchalk.Instance()(#322) de2f4cd
- Migrate:
-new chalk.constructor({level: 1}); +new chalk.Instance({level: 1})Minor breaking
... (truncated)
Commits
95d74cb4.1.2 - Readme updates89e9e3a4.1.1 - Add sponsors4c3df884.1.009ddbadSupport template literals for nested calls (#392)55816cdUpdate readme links to use https (#396)31fa9424.0.061999a4Require Node.js 10f0f4638Change the TypeScriptLeveltype to be a union instead of enum7f21f20Properly check iflevelis an integer (#393)63469d3UseObject.setPrototypeOfas__proto__could potentially be disabled (#387)- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.
You can always request more updates by clicking Bump now in your Dependabot dashboard.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebasewill rebase this PR -
@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it -
@dependabot mergewill merge this PR after your CI passes on it -
@dependabot squash and mergewill squash and merge this PR after your CI passes on it -
@dependabot cancel mergewill cancel a previously requested merge and block automerging -
@dependabot reopenwill reopen this PR if it is closed -
@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) -
@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language -
@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language -
@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language -
@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language -
@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)