refactor(just): reorganize Justfiles to match project architecture and format code

This commit is contained in:
2025-12-30 04:20:19 -06:00
parent 884f42a855
commit eedf22f86d
10 changed files with 161 additions and 83 deletions
+13
View File
@@ -21,3 +21,16 @@ serve *args:
bun run pacman/web.build.ts {{args}}
bun run --cwd web build
caddy file-server --root web/dist/client --listen :8547
# Run checks (type-checking and linting)
check:
bun run check
bun run lint
# Format code
format:
bun run format
# Run tests
test:
bun run test