mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 12:41:04 +00:00
- Remove orphaned container publish route (service method dropped on develop) - turbo.json concurrency as string "12" (parse + 11 persistent-task limit) - database.config: synchronize false (migrations only; fixes weight_limit_rules boot crash) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
26 lines
468 B
JSON
26 lines
468 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"concurrency": "12",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**", "build/**", ".next/**"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["coverage/**"]
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"type-check": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
}
|
|
}
|
|
}
|