swc/crates/swc_ecma_minifier/scripts/size.sh

9 lines
225 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -eu
export UPDATE=1
export DIFF=0
export RUST_LOG=off
cargo test --test compress --features concurrent full_libs || true
for f in ./tests/lib-output/*.js; do echo "$f:" && gzip -9 -c $f | wc -c; done