feat(linter): add peerDepsVersionStrategy option to dependency-checks#33417
feat(linter): add peerDepsVersionStrategy option to dependency-checks#33417jaysoo merged 5 commits intonrwl:masterfrom
Conversation
✅ Deploy Preview for nx-docs canceled.
|
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
63a038c to
281e5f7
Compare
281e5f7 to
a0d061e
Compare
|
Hi @meeroslav , could you please let me know when you might be able to take a look at this change? |
|
Any update on this? |
|
Hey @hosembafer, thanks for the PR. It makes sense to write |
… rule Adds a new peerDepsVersionStrategy option that allows configuring how peer dependencies versions are set when auto-fixing. When set to 'workspace', peer dependencies will use 'workspace:*' instead of the installed or root package version. Defaults to 'installed' to maintain backward compatibility.
…rategy is workspace
2d78843 to
c8b8eb8
Compare
|
View your CI Pipeline Execution ↗ for commit e7a0450
☁️ Nx Cloud last updated this comment at |
Hi @jaysoo , I see you pushed missing parts! Thank you! |
|
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. |
Adds a new peerDepsVersionStrategy option that allows configuring how peer dependencies versions are set when auto-fixing. When set to 'workspace', peer dependencies will use 'workspace:*' instead of the installed or root package version. Defaults to 'installed' to maintain backward compatibility.
Current Behavior
A concrete peer dependency version is being fixed.
Expected Behavior
User can choose between
installedandworkspaceversion strategies.