-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(js): resolve shallow dependencies when building package.json #10600
Conversation
For JS builds, the dependencies are now resolved shallow, dependencies will no longer inherit deps from other buildable libs in the workspace ISSUES CLOSED: 9371
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Ignored Deployment
|
…son (nrwl#10600)" This reverts commit a0bf1f0.
We had to revert this PR because it broke the way |
@FrozenPandaz, can you clarify what the error was? I don't see any info in the revert and |
Any update on this? @vsavkin @FrozenPandaz @mckramer |
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. |
For JS builds, the dependencies are now resolved shallow, dependencies will no longer inherit deps
from other buildable libs in the workspace
Current Behavior
Dependencies are currently resolved "deep". When the buildable lib has dependencies on other buildable libs in the workspace, the dependencies from those libs would be inherited.
Expected Behavior
The dependencies should be resolved shallow.
Related Issue(s)
Fixes #9371