build: split tsgo prod and test graphs

This commit is contained in:
Peter Steinberger
2026-04-18 18:04:16 +01:00
parent 753183e081
commit 07785c6dbc
6 changed files with 37 additions and 8 deletions

View File

@@ -50,13 +50,13 @@
- Keep files under ~700 LOC - extract helpers when larger
- Colocated tests: `*.test.ts` next to source files
- Run `pnpm check` before commits (lint + format)
- Run `pnpm tsgo` for type checking
- Run `pnpm tsgo` for production type checking, or `pnpm tsgo:all` for production plus test types
## Stack & Commands
- **Package manager**: pnpm (`pnpm install`)
- **Dev**: `pnpm openclaw ...` or `pnpm dev`
- **Type-check**: `pnpm tsgo`
- **Type-check**: `pnpm tsgo` (production), `pnpm tsgo:all` (production plus tests)
- **Lint/format**: `pnpm check`
- **Tests**: `pnpm test`
- **Build**: `pnpm build`