mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 11:42:13 +03:00
b02e189d07
swc_ecma_codegen: - Fix codegen of `U+0028` and `U+0029`. swc_ecma_minifier: - Implement MVP. swc_ecma_transforms_base: - `fixer`: Handle seq/await in rhs of for-of.
9 lines
215 B
Bash
Executable File
9 lines
215 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eu
|
|
|
|
export RUST_LOG=swc_ecma_minifier=trace
|
|
|
|
# To prevent regression, we run base test before real tests.
|
|
touch tests/compress.rs
|
|
cargo test --test compress ${1-base_exec} -q --all-features
|