16 lines
148 B
Makefile
16 lines
148 B
Makefile
default:
|
|
@just --list
|
|
|
|
dev:
|
|
bun run dev
|
|
|
|
lint:
|
|
bun run lint
|
|
|
|
typecheck:
|
|
bun run typecheck
|
|
|
|
test:
|
|
bun run test
|
|
|
|
check: lint typecheck test
|