mirror of
https://github.com/swc-project/swc.git
synced 2024-12-27 15:42:51 +03:00
9 lines
225 B
Bash
Executable File
9 lines
225 B
Bash
Executable File
#!/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 |