gomoku/justfile
2025-07-29 20:54:58 -05:00

24 lines
388 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
ansible-playbook -i ansible/hosts.ini ansible/deploy.yml
test:
bun test
check:
bunx tsc --noEmit --skipLibCheck
clean:
rm -rf node_modules
rm -rf dist
format:
bun run prettier . --write