Add dev recipe to justfile
This commit is contained in:
parent
dd80f894f8
commit
64dfee517c
1 changed files with 7 additions and 4 deletions
11
justfile
11
justfile
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue