astro/turbo.json

26 lines
407 B
JSON
Raw Normal View History

2022-01-29 16:54:43 +00:00
{
"baseBranch": "origin/main",
"pipeline": {
"build": {
2022-01-29 16:56:23 +00:00
"dependsOn": ["^build"],
"outputs": ["**/dist/**", "!**/vendor/**"]
2022-01-29 16:54:43 +00:00
},
"dev": {
"cache": false
},
"test": {
"outputs": []
},
"test:templates": {
"outputs": []
},
"benchmark": {
2022-01-29 16:56:23 +00:00
"dependsOn": ["^build"],
2022-01-29 16:54:43 +00:00
"outputs": []
},
"lint": {
"outputs": []
}
}
}