mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
16 lines
219 B
Bash
Executable file
16 lines
219 B
Bash
Executable file
#!/bin/sh
|
|
|
|
DIR=$(dirname "$0")
|
|
UGLIFY="uglifyjs"
|
|
|
|
function minify() {
|
|
INPUT="$1"
|
|
"$UGLIFY" --compress --screw-ie8 "$INPUT"
|
|
}
|
|
|
|
if [[ "$1" != "" ]]; then
|
|
minify "$1"
|
|
else
|
|
echo "usage: $0 [input file]"
|
|
exit 1
|
|
fi
|