Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Jun 18, 2024
1 parent 4d3d93c commit c27b8bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/turbopack-ecmascript/src/tree_shake/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ async fn get_part_id(result: &SplitResult, part: Vc<ModulePart>) -> Result<u32>
None => {
// This is required to handle `export * from 'foo'`
if let ModulePart::Export(..) = &*part {
if let Some(&v) = entrypoints.get(&key) {
if let Some(&v) = entrypoints.get(&Key::ModuleEvaluation) {
return Ok(v);
}
}
Expand Down

0 comments on commit c27b8bc

Please sign in to comment.