jonnybarnes.uk/scripts/compress.sh
Jonny Barnes 70e5b9bec7
Some checks failed
Laravel Pint / Laravel Pint (pull_request) Has been cancelled
PHP Unit / PHPUnit test suite (pull_request) Has been cancelled
Add snow fall to the site
Some tweaks to the node dependencies and compression script also done
2024-11-30 15:58:25 +00:00

13 lines
276 B
Bash
Executable file

#!/usr/bin/env zsh
if ! type fd &> /dev/null; then
echo "fd not installed"
exit 1
fi
if ! type brotli &> /dev/null; then
echo "brotli not installed"
exit 1
fi
fd -e css -e js --search-path ./public/assets --type f -x brotli --force --best --output={}.br {}