seal.devcomp.xyz/scripts/build.sh

16 lines
422 B
Bash
Raw Normal View History

2024-02-05 16:54:00 +00:00
##########################################################################
## None of this is required since trunk now natively supports tailwind ##
#########################################################################
!/bin/bash
set -e
source ./scripts/commons.sh
echo -e "$log_prefix Building tailwind stylesheet"
echo "$separator"
bun run tailwindcss -o ./styles/tailwind.css | sed 's/^/> /'
echo "$separator"