Lint, format

This commit is contained in:
Jon Staab
2026-03-26 10:56:42 -07:00
parent 5c06070913
commit 087405b1ac
7 changed files with 191 additions and 81 deletions
+10 -1
View File
@@ -5,6 +5,15 @@ dev:
cd frontend && bun dev &
wait
dev-frontend:
cd frontend && bun run dev
build-frontend:
cd frontend && bun run build
preview-frontend:
cd frontend && bun run preview
fmt-backend:
cd backend && cargo fmt
@@ -18,6 +27,6 @@ lint: lint-backend
build-backend:
cd backend && cargo build
build: build-backend
build: build-backend build-frontend
check: fmt lint build