blob: 51b4bb7cfbe77c24cc2d6648d85235f10300eeb7 [file] [log] [blame]
Earl Lee2e463fb2025-04-17 11:22:22 -07001all: install check build-tailwind
2
3install:
4 npm ci
5
6# TypeScript type checking
7# Note: The actual esbuild bundling happens in esbuild.go
8check:
9 npx tsc --noEmit
10
11build-tailwind:
12 npx postcss ./src/input.css -o ./src/tailwind.css
13
14watch-tailwind:
15 npx postcss -i ./src/input.css -o ./src/tailwind.css --watch
16
17clean:
18 rm -rf node_modules
19 -rm -f ./src/tailwind.css