2
0
Files
bot/turbo.json

24 lines
441 B
JSON
Raw Normal View History

2022-01-28 17:57:14 +01:00
{
"baseBranch": "origin/main",
"pipeline": {
2022-11-21 11:12:43 +01:00
"lint": {
"outputs": []
},
2022-11-21 15:39:31 +01:00
"dev": {
"dependsOn": ["^dev", "^db:generate", "^db:push"],
"cache": false
},
2022-01-28 17:57:14 +01:00
"build": {
2022-11-21 15:39:31 +01:00
"dependsOn": ["^build", "^db:generate"],
2022-09-18 15:09:49 +02:00
"outputs": [".next/**", "dist/**", "build/**"],
"outputMode": "new-only"
2022-01-28 17:57:14 +01:00
},
2022-11-21 15:39:31 +01:00
"db:generate": {
"cache": false
},
2022-11-21 15:39:31 +01:00
"db:push": {
2022-11-02 19:45:46 +01:00
"cache": false
2022-01-28 17:57:14 +01:00
}
2022-08-08 08:21:36 +02:00
}
2022-01-28 17:57:14 +01:00
}