gomoku/justfile
sepia 79ae2c5d2b - update deploy script
- random +x stuff because I switched directories
- change heart stones to use inline svgs
2025-07-27 16:58:37 -05:00

25 lines
448 B
Makefile
Executable file

install:
bun install
dev:
bun run --watch src/index.ts
build:
bun build --compile --minify --target bun --outfile ./target/gomoku ./src/index.ts
deploy: build
rsync -avz target/gomoku sepiatonesxyz:~/gomoku/gomoku
rsync -avz --delete public/ sepiatonesxyz:~/gomoku/public
test:
bun test
check:
bunx tsc --noEmit --skipLibCheck
clean:
rm -rf node_modules
rm -rf dist
format:
bun run prettier . --write