mirror of
https://github.com/CompeyDev/seal.devcomp.xyz.git
synced 2024-12-12 12:50:40 +00:00
15 lines
422 B
Bash
Executable file
15 lines
422 B
Bash
Executable file
##########################################################################
|
|
## 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"
|