Add dev recipe to justfile

This commit is contained in:
Jared Miller 2026-02-23 18:18:47 -05:00
parent dd80f894f8
commit 64dfee517c
Signed by: shmup
GPG key ID: 22B5C6D66A38B06C

View file

@ -1,13 +1,16 @@
default: default:
@just --list @just --list
dev:
bun run dev
lint: lint:
bun run lint bun run lint
typecheck: typecheck:
bun run typecheck bun run typecheck
test: test:
bun run test bun run test
check: lint typecheck test check: lint typecheck test