monorepo/turbo.json

20 lines
356 B
JSON
Raw Normal View History

2024-06-25 21:59:50 +08:00
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
2024-11-01 14:03:16 +08:00
"dependsOn": ["^build"],
2024-06-25 21:59:50 +08:00
"outputs": ["dist/**",".next/**","!.next/cache/**"]
},
"lint": {
"dependsOn": ["^lint"]
},
"dev": {
"cache": false,
"persistent": true
},
2025-06-24 10:14:38 +08:00
"web:dev":{
"dependsOn": ["honoapi:build"]
2025-06-12 20:48:51 +08:00
}
2024-06-25 21:59:50 +08:00
}
2025-03-31 19:43:56 +08:00
}