Turborepo
Turborepo (cheat sheet)
Section titled “Turborepo (cheat sheet)”- Tasks are defined per package (
build,typecheck,lint,test). Root runsturbo run <task>over the graph. - From root:
pnpm run build→turbo run build;pnpm testruns Turbo tests and roottest/**/*.test.ts. - Cache: Turbo caches task outputs; clean builds if you suspect stale artifacts:
pnpm run clean(per package scripts).
More: Development guide.