-
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): move swc/helpers to dependencies instead of devDependencies #10275
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Ignored Deployment
|
While this does solve part of the problem, I feel like the @nrwl/node:webpack executor should be able to find the @swc/helpers library and included it in the generated package json, with this change we still need to |
@yharaskrik the same thing happens for |
@AgentEnder nest app uses node:webpack. But yeah, similar approach could be used for swc/helpers |
Interesting, we should look at porting that logic for |
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. |
ISSUES CLOSED: #10270
Current Behavior
@swc/helpers
is added to lib'sdevDependencies
causing runtime error for the library if the library usesswc/helpers
utilities and it's not included in thegeneratedPackageJson
.Expected Behavior
@swc/helpers
should be independencies
Related Issue(s)
Fixes #10270