-
Notifications
You must be signed in to change notification settings - Fork 10
feat: upgrade NX and migrate builds to esbuild #1185
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
base: main
Are you sure you want to change the base?
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
1 Skipped Deployment
|
88f354b to
3cf8690
Compare
3cf8690 to
ef9ef69
Compare
…th their configurations and assets
…ges-router entries
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
Copilot reviewed 118 out of 135 changed files in this pull request and generated no new comments.
Comments suppressed due to low confidence (3)
sdk/nextjs/src/common/actions/setDebugUser.ts:1
- Using bracket notation for environment variables (
process.env['NODE_ENV']) is unnecessary. The dot notationprocess.env.NODE_ENVis more idiomatic and equally safe in TypeScript/Node.js environments.
sdk/nextjs/src/common/actions/clearDebugUser.ts:1 - Using bracket notation for environment variables (
process.env['NODE_ENV']) is unnecessary. The dot notationprocess.env.NODE_ENVis more idiomatic and equally safe in TypeScript/Node.js environments.
e2e/nextjs/app-router/tests/app-router.spec.ts:1 - The timeout was increased from 10000 to 30000ms. Consider adding a comment explaining why such a long timeout is necessary for this navigation test, as this could mask performance issues.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
Copilot reviewed 120 out of 137 changed files in this pull request and generated 4 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
worth copying these changes elsewhere?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
its basically just formatting, so probably not
Summary
@nx/js:tscbuilds to@nx/esbuild:esbuilddev-apps/next, thee2e/nextjsapps work for testing + e2e testsWhy
NX 22 removed the experimental
externaloption from@nx/js:tscthat was used to bundle internal workspace packages. These packages are not published to npm and must be bundled into the SDK dist. Additionally, NX 22 introduced breaking changes requiring updates to webpack configs, Jest configs, and project.json files.Changes
tsctoesbuildfor faster buildsproject.jsonfiles with new executor configurationsTesting