1184 releases (199 breaking)

new 0.200.3 Jul 24, 2024
0.199.0 Jul 17, 2024
0.192.19 Mar 26, 2024
0.190.8 Dec 29, 2023
0.16.1 Jul 31, 2021

#9 in #minify

Download history 3574/week @ 2024-04-04 3529/week @ 2024-04-11 3489/week @ 2024-04-18 2887/week @ 2024-04-25 2581/week @ 2024-05-02 3099/week @ 2024-05-09 3461/week @ 2024-05-16 2551/week @ 2024-05-23 2844/week @ 2024-05-30 3932/week @ 2024-06-06 3359/week @ 2024-06-13 2823/week @ 2024-06-20 3863/week @ 2024-06-27 3928/week @ 2024-07-04 5047/week @ 2024-07-11 3420/week @ 2024-07-18

16,748 downloads per month
Used in 64 crates (15 directly)

Apache-2.0

9.5MB
245K SLoC

Minifier

EcmaScript minifier for the SWC project. This is basically a port of terser.

Note

Currently name mangler is very simple. To focus on creating a MVP, I (kdy1) will use simple logic for name mangler and implement the content-aware name mangler after publishing first non-beta version.

Debugging tips

If the output contains variables named e, t, n it typically means the original library is published in a minified form and the input contains eval. The current swc name mangler does not do anything if eval is used.

Profiling the minifier

From mac os x, run

./scripts/instrument/all.sh path/to/input/dir

Contributing

Testing

Please prefer execution tests over unit tests. Execution tests are more useful because there's no chance of human error while reviewing.

Execution tests

You can add a test to ./tests/exec.rs

You can run ./scripts/exec.sh from ./crates/swc_ecma_minifier to run execution tests of SWC minifier. exec.sh runs the cargo test with --features debug, and it makes the cargo test print lots of debug logging. You can search for "change", and you can know the code responsible the optimization. The minifier has report_change! macro, and it prints the location of the relevant code.

Fixture tests

You can add a test to ./tests/fixture. You can select any directory, but please prefer to use the issues directory. You can run ./scripts/test.sh from ./crates/swc_ecma_minifier to run fixture tests. You can run it like ./scripts/test.sh foo to run test cases only with foo in the file path. If you want to get location of change, you can do ./scripts/test.sh foo --features debug.

Dependencies

~12–21MB
~316K SLoC