setup-cpp/turbo.json

28 lines
536 B
JSON
Raw Permalink Normal View History

2024-08-16 06:55:02 +08:00
{
"$schema": "https://turbo.build/schema.json",
"globalEnv": ["OS", "RUNNER_OS"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/"]
2024-08-16 08:01:33 +08:00
},
2024-08-24 06:20:37 +08:00
"dev": {
"persistent": true,
"cache": false
},
2024-08-16 08:01:33 +08:00
"lint.tsc": {
"dependsOn": ["build", "^lint.tsc"]
2024-08-16 08:01:33 +08:00
},
"lint.eslint": {
"dependsOn": ["build", "^lint.eslint"]
2024-08-16 08:01:33 +08:00
},
"lint": {
"dependsOn": ["lint.tsc", "lint.eslint"]
},
"test": {
"dependsOn": ["build", "^test"]
2024-08-16 06:55:02 +08:00
}
},
"ui": "stream"
}