aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/minify-images.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/minify-images.sh b/scripts/minify-images.sh
new file mode 100755
index 0000000..c248e08
--- /dev/null
+++ b/scripts/minify-images.sh
@@ -0,0 +1,12 @@
1#!/usr/bin/env sh
2
3# Note: This script is needed due to this bug: https://github.com/imagemin/imagemin/issues/348
4# once the above is fixed, we should simply be able to specify the input directory where all image files are to be processed recursively
5FILES=`find . -name "*.jpg" -o -name "*.jpeg" -o -name "*.bmp" -o -name "*.png" -type f | GREP_OPTIONS= egrep -v "node_modules"`
6for file in $FILES; do
7 echo "Minifying file: $file"
8 size_before=`/usr/bin/du $file | cut -f1`
9 npx imagemin $file > $file.tmp && mv $file.tmp $file
10 size_after=`/usr/bin/du $file | cut -f1`
11 echo "$size_before -> $size_after"
12done