Skip to content

Commit c3bb0f1

Browse files
authored
fix(turbopack): Apply hygiene if mangling is disabled (#77815)
### What? Apply the normal variable renamer when we are not going to apply minfiying var renamer. ### Why? Var renamer should be applied at least once. ### How? Closes PACK-4245
1 parent fc5bea4 commit c3bb0f1

File tree

1 file changed

+11
-1
lines changed
  • turbopack/crates/turbopack-ecmascript/src

1 file changed

+11
-1
lines changed

turbopack/crates/turbopack-ecmascript/src/minify.rs

+11-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ use swc_core::{
1616
},
1717
minifier::option::{CompressOptions, ExtraOptions, MangleOptions, MinifyOptions},
1818
parser::{lexer::Lexer, Parser, StringInput, Syntax},
19-
transforms::base::fixer::paren_remover,
19+
transforms::base::{
20+
fixer::paren_remover,
21+
hygiene::{self, hygiene_with_config},
22+
},
2023
},
2124
};
2225
use tracing::{instrument, Level};
@@ -99,6 +102,13 @@ pub fn minify(path: &FileSystemPath, code: &Code, source_maps: bool, mangle: boo
99102
},
100103
);
101104

105+
if !mangle {
106+
program.mutate(hygiene_with_config(hygiene::Config {
107+
top_level_mark,
108+
..Default::default()
109+
}));
110+
}
111+
102112
Ok(program.apply(ecma::transforms::base::fixer::fixer(Some(
103113
&comments as &dyn Comments,
104114
))))

0 commit comments

Comments
 (0)