oxc/tasks/minsize
camc314 860cbca446 feat(minifier): implement folding simple arrow fns (#6875)
basically
```ts
const foo = () => {
    return baz
}
```
becomes
```ts
const foo = () => baz
```
2024-10-25 10:26:33 +00:00
..
src refactor(oxc): remove useless allocator.alloc(program) calls (#6571) 2024-10-15 02:21:20 +00:00
Cargo.toml perf(ast-tools): use FxHashMap over std::collections::HashMap (#5997) 2024-09-23 18:28:54 +00:00
minsize.snap feat(minifier): implement folding simple arrow fns (#6875) 2024-10-25 10:26:33 +00:00
README.md feat: add cargo minsize task for tracking minification size (#276) 2023-04-14 13:07:37 +08:00

Track Minification size

See minification-benchmarks for baseline.