We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7eb537f commit e85524aCopy full SHA for e85524a
turbopack/crates/turbopack-core/src/chunk/chunk_group.rs
@@ -242,7 +242,9 @@ pub async fn chunk_group_content(
242
};
243
244
Ok(match edge {
245
- ChunkingType::Parallel | ChunkingType::ParallelInheritAsync => {
+ ChunkingType::Parallel
246
+ | ChunkingType::ParallelInheritAsync
247
+ | ChunkingType::Shared { .. } => {
248
if is_available {
249
GraphTraversalAction::Skip
250
} else {
@@ -265,7 +267,7 @@ pub async fn chunk_group_content(
265
267
// handled above before the sidecast
266
268
unreachable!();
269
}
- ChunkingType::Isolated { .. } | ChunkingType::Shared { .. } => {
270
+ ChunkingType::Isolated { .. } => {
271
// TODO currently not implemented
272
273
0 commit comments