mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 02:29:04 +03:00
9 lines
214 B
Bash
Executable File
9 lines
214 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Generates reference output for the mangler, using terser
|
|
#
|
|
set -eu
|
|
|
|
output="${1/input/output.mangleOnly}"
|
|
npx terser --mangle --toplevel --output "$output" $1
|
|
npx prettier --write "$output" |