mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 21:21:10 +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).
20 lines
611 B
JSON
20 lines
611 B
JSON
{
|
|
"name": "zitare",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Zitare App - Daily Inspiration",
|
|
"scripts": {
|
|
"dev": "turbo run dev",
|
|
"dev:backend": "pnpm --filter @zitare/backend dev",
|
|
"dev:web": "pnpm --filter @zitare/web dev",
|
|
"dev:landing": "pnpm --filter @zitare/landing dev",
|
|
"dev:mobile": "pnpm --filter @zitare/mobile dev",
|
|
"db:push": "pnpm --filter @zitare/backend db:push",
|
|
"db:studio": "pnpm --filter @zitare/backend db:studio",
|
|
"db:seed": "pnpm --filter @zitare/backend db:seed"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"packageManager": "pnpm@9.15.0"
|
|
}
|