monorepo/turbo.json

24 lines
439 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
},
"3rapp/api#cli":{
"cache": false
},
"3rapp/admin#dev":{
"dependsOn": ["@3rapp/utils#build"]
2025-06-06 21:29:06 +08:00
},
"start:dev":{}
2024-06-25 21:59:50 +08:00
}
2025-03-31 19:43:56 +08:00
}