We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
oxc/crates/oxc_minifier/src/ast_passes/peephole_remove_dead_code.rs
Line 76 in 6c7acac
oxc/crates/oxc_minifier/src/ast_passes/statement_fusion.rs
Line 36 in 772b71c
minimize_exit_points
continue
return
break
oxc/crates/oxc_minifier/src/ast_passes/peephole_substitute_alternate_syntax.rs
Line 191 in 772b71c
Originally posted by @camc314 in #8264 (comment)
The text was updated successfully, but these errors were encountered:
Had a quick look at https://github.com/tdewolff/minify, it produces slightly better minification due to
Sorry, something went wrong.
Enabling the mangler in test262 reveals the need of
--keep-names
eval
I'm going to clear #8604 and then overhaul the current architecture for performance, the minifier is running too slow for my likings.
Boshen
No branches or pull requests
https://github.com/evanw/esbuild/blob/v0.24.2/internal/js_ast/js_ast_helpers.go#L2745
oxc/crates/oxc_minifier/src/ast_passes/peephole_remove_dead_code.rs
Line 76 in 6c7acac
oxc/crates/oxc_minifier/src/ast_passes/statement_fusion.rs
Line 36 in 772b71c
minimize_exit_points
implementation #8349continue
/return
/break
stmts at the end of control flow are droppedoxc/crates/oxc_minifier/src/ast_passes/peephole_substitute_alternate_syntax.rs
Line 191 in 772b71c
Originally posted by @camc314 in #8264 (comment)
The text was updated successfully, but these errors were encountered: