mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 01:01:09 +02:00
Parent workspace packages (apps/*/package.json, games/*/package.json) had build scripts that called 'turbo run build' or 'pnpm run --recursive build', creating infinite recursion when root turbo orchestrates builds. When root turbo runs 'build', it finds packages with build scripts and executes them. If those scripts also call 'turbo run build', it spawns another turbo process → infinite loop. Changes: - Removed 'build' script from 7 parent packages (calendar, contacts, zitare, picture, presi, mana-games, voxel-lava) - Also removed redundant 'clean', 'lint', 'type-check' scripts where they had recursive calls - Root turbo.json already handles orchestration of these tasks This follows the guideline in CLAUDE.md: > Parent workspace packages must NEVER have scripts that call turbo run > for tasks that turbo orchestrates from the root. Fixes CI build timeout (was running for 10+ minutes with infinite task spawning). |
||
|---|---|---|
| .. | ||
| apps | ||
| CLAUDE.md | ||
| package.json | ||