-
Notifications
You must be signed in to change notification settings - Fork 27k
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
chore: lower Node.js version requirement #56943
Conversation
Co-authored-by: Steven <[email protected]>
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.
I think we should also update CI to ensure that tests pass against this version
Stats from current PRDefault BuildGeneral
Client Bundles (main, webpack)
Legacy Client Bundles (polyfills)
Client Pages
Client Build Manifests
Rendered Page Sizes
Edge SSR bundle Size
Middleware size
|
b44fd99
Failing test suitesCommit: 84dca06
Expand output● should use Yarn as the package manager on supplying --use-yarn
● should infer yarn as the package manager
Read more about building and testing Next.js in contributing.md. |
This reverts commit 523474c.
### What? `globalThis.ReadableStream` and `globalThis.WriteableStream` has been exposed since Node.js 18, which is our new default requirement. (#56943) ### Why? This simplifies the code and might result in slightly better performance. ### How? Drop any checks of `globalThis` properties that are always defined now.
No description provided.