2023-12-21 17:57:48 +00:00
|
|
|
#!/usr/bin/env zsh
|
|
|
|
|
2024-11-30 15:58:25 +00:00
|
|
|
if ! type fd &> /dev/null; then
|
|
|
|
echo "fd not installed"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2023-12-21 17:57:48 +00:00
|
|
|
if ! type brotli &> /dev/null; then
|
|
|
|
echo "brotli not installed"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2024-11-30 15:58:25 +00:00
|
|
|
fd -e css -e js --search-path ./public/assets --type f -x brotli --force --best --output={}.br {}
|