monorepo/turbo.json

27 lines
518 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-12 20:48:51 +08:00
"web2:dev": {
"cache": false,
"persistent": true,
"env": ["NODE_ENV=development"]
2025-06-06 21:29:06 +08:00
},
2025-06-12 20:48:51 +08:00
"talk:dev": {
"cache": false,
"persistent": true,
"env": ["NODE_ENV=development"]
}
2024-06-25 21:59:50 +08:00
}
2025-03-31 19:43:56 +08:00
}