gitbutler/turbo.json

27 lines
518 B
JSON
Raw Normal View History

2024-07-01 19:47:43 +03:00
{
"$schema": "https://turborepo.org/schema.json",
"tasks": {
"package": {
"cache": false
},
2024-07-02 14:15:26 +03:00
"build": {
"dependsOn": ["^package"],
"cache": false
},
"dev": {
"dependsOn": ["^package"],
"cache": false,
"persistent": true
2024-07-02 11:23:54 +03:00
},
2024-07-02 14:15:26 +03:00
"check": {
"dependsOn": ["^package"],
"cache": true
},
"//#globallint": {
// Root rules require dependencies to manually be listed https://github.com/vercel/turbo/discussions/7481
2024-07-02 14:15:26 +03:00
"dependsOn": ["@gitbutler/ui#package"],
2024-07-02 11:23:54 +03:00
"cache": true
}
}
2024-07-01 19:47:43 +03:00
}