Allow to specify a directory and skip node_modules and tests

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2020-04-21 13:50:26 +02:00
parent e49b6c576d
commit e9f0a388d9
No known key found for this signature in database
GPG Key ID: 7076EA9751AACDDA
1 changed files with 35 additions and 9 deletions

View File

@ -1,16 +1,42 @@
#!/usr/bin/env bash
CHECK_DIR='../'
if ! [ "$SERVER_VERSION" ]; then
CHECK_DIR=$1
fi
function recursive_optimize_images() {
cd "$1" || return
DIR_NAME=${PWD##*/}
# Optimize all JPGs and PNGs
optipng -o6 -strip all *.png
jpegoptim --strip-all *.jpg
if [[ "$DIR_NAME" == "node_modules" ]]; then
return
elif [[ "$DIR_NAME" == "tests" ]]; then
return
fi
# Optimize all PNGs
for png in *.png
do
[[ -e "$png" ]] || break
optipng -o6 -strip all "$png"
done
# Optimize all JPGs
for jpg in *.jpg
do
[[ -e "$jpg" ]] || break
jpegoptim --strip-all "$jpg"
done
# Optimize all SVGs
for svg in *.svg
do
mv $svg $svg.opttmp;
[[ -e "$svg" ]] || break
mv $svg $svg.opttmp
scour --create-groups \
--enable-id-stripping \
--enable-comment-stripping \
@ -20,19 +46,19 @@ function recursive_optimize_images() {
--no-line-breaks \
-i $svg.opttmp \
-o $svg
rm $svg.opttmp
done
# Remove temporary SVGs
rm *.opttmp
# Check all subfolders
for dir in */
do
if [[ -d "$DIR" ]]; then
[[ -e "$dir" ]] || break
if [[ -d "$dir" ]]; then
recursive_optimize_images "$dir"
cd ..
fi
done
}
recursive_optimize_images ../
recursive_optimize_images "$CHECK_DIR"