amis2/scripts/imagemin.sh

11 lines
305 B
Bash
Raw Normal View History

2024-09-13 10:40:50 +08:00
#!/bin/bash
for f in $(find . -type d \( -path ./node_modules -o -path ./dist -o -path ./esm -o -path ./lib -o -path ./packages/amis/sdk \) -prune -type f -o -name "*.svg"); do
#sed -i '' -e "s/@fex\///g" $f
echo "imagemin $f"
echo $(imagemin $f) >$f
# git checkout $f
# imagemin $f > $f
done