gomoku/justfile

22 lines
303 B
Makefile

install:
bun install
dev:
bun run --watch src/index.ts
build:
bun build --compile --minify --target bun --outfile server ./src/index.ts
test:
bun test
check:
bunx tsc --noEmit --skipLibCheck
clean:
rm -rf node_modules
rm -rf dist
format:
bun run prettier . --write