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