fix(core): use picocolors instead of chalk in the nx package#34305
fix(core): use picocolors instead of chalk in the nx package#34305JamesHenry merged 7 commits intomasterfrom
Conversation
✅ Deploy Preview for nx-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
View your CI Pipeline Execution ↗ for commit 6823090
☁️ Nx Cloud last updated this comment at |
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
a33ea81 to
63d389b
Compare
✅ Deploy Preview for nx-dev ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
…tils [Self-Healing CI Rerun]
…tils [Self-Healing CI Rerun]
There was a problem hiding this comment.
Important
At least one additional CI pipeline execution has run since the conclusion below was written and it may no longer be applicable.
Nx Cloud has identified a possible root cause for your failed CI:
Our Maven e2e test failed due to an external service outage (Cloudflare 522 timeout from start.spring.io), not from the chalk→picocolors changes in this PR. This should resolve on retry once the Spring Initializr API recovers.
No code changes were suggested for this issue.
🔂 A CI rerun has been triggered by adding an empty commit to this branch.
🎓 Learn more about Self-Healing CI on nx.dev
|
This pull request has already been merged/closed. If you experience issues related to these changes, please open a new issue referencing this pull request. |
package.jsonto depend onpicocolorsinstead ofchalkchalkand guide developers to usepicocolorsinsteadchalkimports withpicocolors(aliased aspc) across the codebasechalkmethod calls to usepicocolorsequivalents:chalk.bold()→pc.bold()chalk.green()→pc.green()chalk.red()→pc.red()chalk.yellow()→pc.yellow()chalk.white()→pc.white()chalk.cyan()→pc.cyan()chalk.blue()→pc.blue()chalk.magenta()→pc.magenta()chalk.dim()→pc.dim()chalk.gray()→pc.gray()chalk.inverse()→pc.inverse()chalk.underline()→pc.underline()chalk.reset()→pc.reset()chalk.keyword('orange')calls with theorangeutility fromutils/outputproject-logger.tsandnode-child-process.tsto use availablepicocolorsfunctionschalk.bold.white()) to use simple function composition (e.g.,pc.bold(pc.white()))