Files
vue-flow/turbo.json
2022-04-11 11:30:10 +02:00

30 lines
528 B
JSON

{
"$schema": "https://turborepo.org/schema.json",
"baseBranch": "origin/master",
"pipeline": {
"build": {
"dependsOn": ["^build", "types", "theme"],
"outputs": ["dist/**", ".vuepress/dist/**"]
},
"types": {
"outputs": []
},
"theme": {
"outputs": []
},
"test": {
"dependsOn": ["^build"],
"outputs": []
},
"lint": {
"dependsOn": ["^build"],
"outputs": []
},
"dev": {
"dependsOn": ["^build"],
"cache": false
}
}
}