mirror of
https://git.mills.io/prologic/zs
synced 2025-04-06 06:43:33 +03:00
19 lines
319 B
Bash
Executable file
19 lines
319 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
minify_assets() {
|
|
p="$1"
|
|
t="$2"
|
|
|
|
find "$p" -type f -name "*.$t" | while read -r file; do
|
|
name="${file#"$p"}"
|
|
name="${name#"/"}"
|
|
minify -o "${p}/${name}" "$file"
|
|
done
|
|
}
|
|
|
|
if command -v minify > /dev/null; then
|
|
minify_assets "$ZS_OUTDIR" "css"
|
|
minify_assets "$ZS_OUTDIR" "js"
|
|
fi
|