Merged
Conversation
5fc26b5 to
f289ba3
Compare
Collaborator
Stats from current PR✅ No significant changes detected📊 All Metrics📖 Metrics GlossaryDev Server Metrics:
Build Metrics:
Change Thresholds:
⚡ Dev Server
📦 Dev Server (Webpack) (Legacy)📦 Dev Server (Webpack)
⚡ Production Builds
📦 Production Builds (Webpack) (Legacy)📦 Production Builds (Webpack)
📦 Bundle SizesBundle Sizes⚡ TurbopackClient Main Bundles: **401 kB** → **401 kB** ✅ -24 B80 files with content-based hashes (individual files not comparable between builds) Server Middleware
Build DetailsBuild Manifests
📦 WebpackClient Main Bundles
Polyfills
Pages
Server Edge SSR
Middleware
Build DetailsBuild Manifests
Build Cache
🔄 Shared (bundler-independent)Runtimes
📝 Changed Files (2 files)Files with changes:
View diffspages-api-tu..time.prod.jsDiff too large to display pages-turbo...time.prod.jsDiff too large to display 📎 Tarball URL |
Merging this PR will improve performance by 3.51%
Performance Changes
Comparing Footnotes
|
Collaborator
Tests Passed |
bgw
approved these changes
Mar 4, 2026
Comment on lines
+73
to
+86
| /// List of node.js internals that are supported by edge runtime. | ||
| /// If anything Node.js builtin module apart from these these imports are | ||
| /// used and user does not provide alias for the polyfill, a runtime error will be thrown. | ||
| /// See https://vercel.com/docs/functions/runtimes/edge-runtime#compatible-node.js-modules | ||
| // SAFETY: This has to be sorted alphabetically since we are doing binary search on it | ||
| pub const EDGE_NODE_EXTERNALS: [&str; 7] = [ | ||
| "assert", | ||
| "assert/strict", | ||
| "async_hooks", | ||
| "buffer", | ||
| "events", | ||
| "util", | ||
| "util/types", | ||
| ]; |
Member
There was a problem hiding this comment.
Yep, this is better, listing the thing that are supported instead of the things that aren't.
Member
Author
sokra
pushed a commit
that referenced
this pull request
Mar 6, 2026
Unify the list of Node/Edge iexternals. Turns out `readline/promises` and `stream/consumers` was missing in some places. Closes #90765
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Unify the list of Node/Edge iexternals.
Turns out
readline/promisesandstream/consumerswas missing in some places.Closes #90765