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:
|
||||
@just --list
|
||||
@just --list
|
||||
|
||||
dev:
|
||||
bun run dev
|
||||
|
||||
lint:
|
||||
bun run lint
|
||||
bun run lint
|
||||
|
||||
typecheck:
|
||||
bun run typecheck
|
||||
bun run typecheck
|
||||
|
||||
test:
|
||||
bun run test
|
||||
bun run test
|
||||
|
||||
check: lint typecheck test
|
||||
|
|
|
|||
Loading…
Reference in a new issue