-
Notifications
You must be signed in to change notification settings - Fork 30.3k
Turbopack: avoid chunk_item_id task and use selective cell access instead #88411
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: sokra/aggregation-update-tracing
Are you sure you want to change the base?
Turbopack: avoid chunk_item_id task and use selective cell access instead #88411
Conversation
|
Allow CI Workflow Run
Note: this should only be enabled once the PR is ready to go and can only be enabled by a maintainer |
| && let Some(module_id) = module_id_map.get(&ident).await? | ||
| { | ||
| return Ok((*module_id).clone()); |
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.
| && let Some(module_id) = module_id_map.get(&ident).await? | |
| { | |
| return Ok((*module_id).clone()); | |
| && let Some(module_id) = module_id_map.get(&ident).await?.as_deref().cloned() | |
| { | |
| return Ok(module_id); |
Non-idiomatic keyed cell access pattern using (*module_id).clone() instead of .as_deref().cloned()
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: **430 kB** → **430 kB** ✅ -29 B82 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
|

No description provided.