Core Commands (REQUIRED)
- •Root scripts are Turborepo-driven:
- •
pnpm dev->turbo run dev - •
pnpm build->turbo run build - •
pnpm lint->turbo run lint - •
pnpm check-types->turbo run check-types
- •
Task Principles (REQUIRED)
- •ALWAYS define tasks in
turbo.json. - •ALWAYS keep
devnon-cached and persistent. - •ALWAYS keep build outputs accurate for caching.
When Editing turbo.json
- •Ensure task dependencies include
^taskwhen packages depend on other packages. - •Keep inputs/outputs minimal and correct so caching is reliable.