← ClaudeAtlas

turborepo-developmentlisted

Guides Turborepo monorepo orchestration, task execution, caching rules, and workspace management. Use when managing monorepo workflows.
aldiipratama/dyy-plugin · ★ 0 · AI & Automation · score 68
Install: claude install-skill aldiipratama/dyy-plugin
# Turborepo Monorepo Development Skill ## Pipeline Configuration Define build and deployment pipelines in `turbo.json`: ```json { "$schema": "https://turbo.build/schema.json", "tasks": { "build": { "dependsOn": ["^build"], "outputs": [".next/**", "dist/**"] }, "dev": { "cache": false, "persistent": true } } } ``` ## Running Commands Always run filters from the root directory to limit the action scope: ```bash # Run dev task only on API backend pnpm --filter api dev # Build only the dashboard frontend pnpm --filter dashboard build ```