mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 22:01:09 +02:00
- Remove recursive `turbo run type-check` from parent packages (chat, zitare, voxel-lava) - Increase turbo concurrency from 2 to 5 - Add documentation for turbo anti-pattern in CLAUDE.md - Skip type-check temporarily for apps with pending migrations - Update picture mobile stores to use camelCase API response properties - Add shared-nestjs-auth dependency to chat and picture backends - Clean up unused design-token files from picture package - Update shared-landing-ui components and feedback service config
36 lines
645 B
JSON
36 lines
645 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"concurrency": "5",
|
|
"globalEnv": [
|
|
"NODE_ENV",
|
|
"MANA_CORE_AUTH_URL",
|
|
"JWT_PUBLIC_KEY",
|
|
"AZURE_OPENAI_ENDPOINT",
|
|
"AZURE_OPENAI_API_KEY"
|
|
],
|
|
"tasks": {
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**", "build/**", ".next/**", ".svelte-kit/**", ".astro/**"]
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^lint"],
|
|
"outputs": []
|
|
},
|
|
"type-check": {
|
|
"dependsOn": ["^type-check"],
|
|
"outputs": []
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["coverage/**"]
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|