turborepo-developmentlisted
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
```