From 100cd678239e1942c831ba48abef558332b5f216 Mon Sep 17 00:00:00 2001 From: Jared Miller Date: Tue, 27 Jan 2026 21:00:07 -0500 Subject: [PATCH] Add type checking and testing to check command --- justfile | 5 +---- package.json | 3 ++- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/justfile b/justfile index b870731..52b5fbc 100644 --- a/justfile +++ b/justfile @@ -8,10 +8,7 @@ start: bun run start check: - bun run check - -fix: - bun run fix + bun run lint && bun run typecheck && bun run test build: docker build -t collabd . diff --git a/package.json b/package.json index 0506cf9..b078fc5 100644 --- a/package.json +++ b/package.json @@ -3,10 +3,11 @@ "version": "0.1.0", "type": "module", "scripts": { + "lint": "bunx biome check --write .", "dev": "bun run --watch src/index.ts", "start": "bun run src/index.ts", "test": "bun test", - "check": "biome check --write ." + "typecheck": "bunx tsc" }, "dependencies": { "lib0": "^0.2.117",