-
-
Notifications
You must be signed in to change notification settings - Fork 31
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
Dependency conflicts since nx version 16.8.1
#155
Comments
Not gonna lie - this one is a headache. Not sure why this happens or how to fix it. 😕 |
While it's works (and does) it is ok
El sáb, 14 oct 2023, 15:07, Simon M ***@***.***> escribió:
… Not gonna lie - this one is a headache. Not sure why this happens or how
to fix it. 😕
—
Reply to this email directly, view it on GitHub
<#155 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAXEYZIJZWQOV7LEEFTVKDLX7KE7RAVCNFSM6AAAAAA5LSL762VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTONRSHA4DSNJUHE>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
@simondotm fyi I had this issue I raised with the nx team on their discord (and someone else did on their GH) and it looks like they've now fixed it: nrwl/nx#19728 |
@mjbates7 ok thats good news, thanks for sharing this. |
Seems like it. It's landed in their latest v17.0.0 release https://github.com/nrwl/nx/releases/tag/17.0.0 as a heads up so I'll probably migrate to that now |
I have migrated my personal project ([email protected]) to [email protected] and everything is fine and fixed, this is what I did:
Everything deployed correctly Changes introduced by nx migration on nx-firebase projectsIn the function app "lint": {
"executor": "@nx/linter:eslint", To "lint": {
"executor": "@nx/eslint:lint", I hope this could help in the development, thank you @simondotm keep up the good work |
Great news, thanks for the update. Seems like Nx 17 is the way to go then. @pikilon thanks for the migration note too. I think we're ok in the plugin because it uses the So if already on Nx 17, it should scaffold the app with I'm glad I made this change to decouple node app generators in the v2 plugin; the original v1 plugin had its own implementation which would have been a real pain to keep the schemas upto date with the dizzying Nx release cadence. 😅 |
Sorry to bring bad news, Maybe is only related to my project |
Closing this issue as resolved. |
Steps to reproduce
16.8.1
package.json
got modified with "esbuild": "^0.17.17"Current behaviour
You can't run
npm install
any longer for a conflict between esbuild and "@nx/esbuild": "16.8.1",My fix
In my case I have to change the version of "esbuild": "^0.17.17" to
"esbuild": "^0.19.2"
I hope it could help the next one.
Than you for your work @simondotm !!
Originally posted by @pikilon in #151 (comment)
The text was updated successfully, but these errors were encountered: