Skip to content

Commit

Permalink
placeholder_for_future_extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
mischnic committed Jan 20, 2025
1 parent 7e28813 commit 682eef3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ pub async fn make_production_chunks(
grouped_chunk_items.entry(key).or_default().push(chunk_item);
}

let &ChunkingConfig { min_chunk_size } = chunking_config;
let &ChunkingConfig { min_chunk_size, .. } = chunking_config;

if min_chunk_size == 0 {
span.record("chunks", grouped_chunk_items.len());
Expand Down
3 changes: 3 additions & 0 deletions turbopack/crates/turbopack-core/src/chunk/chunking_context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ pub struct EntryChunkGroupResult {
)]
pub struct ChunkingConfig {
pub min_chunk_size: usize,

#[allow(dead_code)]
pub placeholder_for_future_extensions: (),
}

#[turbo_tasks::value(transparent)]
Expand Down

0 comments on commit 682eef3

Please sign in to comment.