Files
landing/scripts/dev.sh
2026-08-18 14:05:11 +07:00

16 lines
313 B
Bash

#!/bin/sh
set -e
SITE="$1"
if [ -z "$SITE" ]; then
echo "Usage: npm run dev -- <site-folder> (e.g. npm run dev -- folder-1)"
exit 1
fi
if [ ! -d "$SITE" ]; then
echo "Error: '$SITE' is not a folder in this project."
exit 1
fi
npx tailwindcss -i ./src/input.css -o "./$SITE/assets/styles.css" --watch