From 64dfee517c4b382704fdfea2981eacc189492774 Mon Sep 17 00:00:00 2001 From: Jared Miller Date: Mon, 23 Feb 2026 18:18:47 -0500 Subject: [PATCH] Add dev recipe to justfile --- justfile | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/justfile b/justfile index 8e6c110..fb95c9e 100644 --- a/justfile +++ b/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