mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +03:00
8 lines
217 B
Bash
Executable File
8 lines
217 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eu
|
|
|
|
export UPDATE=1
|
|
export DIFF=0
|
|
export RUST_LOG=off
|
|
|
|
for f in ./benches/full/*.js; do cargo run --release --features concurrent --example minifier -- $f && gzip -9 -c output.js | wc -c; done |