ants/justfile

13 lines
136 B
Makefile

default:
@just --list
lint:
bun run lint
typecheck:
bun run typecheck
test:
bun run test
check: lint typecheck test