astro/turbo.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
515 B
JSON
Raw Normal View History

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