Files
nextcraft/turbo.json
T
CIAgent 9d2b5b6fc9 docs(P01): complete bootstrap-cli-core phase
---ci---
phase: 1
milestone: v0.4
status: complete
requirements:
  covered: [REQ-4-001, REQ-4-002]
  partial: []
---/ci---
2026-09-12 22:40:48 +00:00

51 lines
1.0 KiB
JSON

{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"lint": {
"dependsOn": ["^build"]
},
"typecheck": {
"dependsOn": ["^build"]
},
"clean": {
"cache": false
},
"@nextcraft/ai-service#dev": {
"cache": false,
"persistent": true,
"outputs": []
},
"@nextcraft/ai-service#test": {
"cache": false,
"outputs": []
},
"@nextcraft/ai-service#bootstrap": {
"cache": false,
"outputs": []
},
"@nextcraft/ai-service#lint": {
"cache": false,
"outputs": []
},
"@nextcraft/cli#test": {
"cache": false,
"outputs": []
},
"@nextcraft/cli#dev": {
"cache": false,
"persistent": true
},
"@nextcraft/cli#build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
}
}
}