0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00
astro/turbo.json

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

26 lines
407 B
JSON
Raw Normal View History

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