-
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): aliased packages are pruned from package-lock.json #22225
fix(js): aliased packages are pruned from package-lock.json #22225
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Ignored Deployment
|
☁️ Nx Cloud ReportCI is running/has finished running commands for commit e766785. As they complete they will appear below. Click to see the status, the terminal output, and the build insights. 📂 See all runs for this CI Pipeline Execution
✅ Successfully ran 4 targets
Sent with 💌 from NxCloud. |
Just have a failing test at this point but will be looking into fixing the failure |
This PR doesn't seem to include any code changes, just additional test and fixture. Is that intended or this got lost during the rebase? |
@meeroslav I was intending to come back and write the code to get the failing test passing but I am not longer working for the company that was running into this issue so I will likely not be coming back to this PR. However I do think this is an issue that still needs to be addressed |
@meeroslav did #23474 fix this as well? |
Yes, the #23474 was fixing this exact problem |
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. |
Current Behavior
When enabling the
generatePackageJson
flag for js build targets the prunedpackage-lock.json
file is invalid. Whennpm ci
is ran you get the following errorsExpected Behavior
The pruned
package-lock.json
generated is valid and can be installed vianpm ci
Related Issue(s)
Fixes #17653