mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-23 20:54:50 +03:00
29 lines
608 B
JSON
29 lines
608 B
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
"tasks": {
|
|
"package": {
|
|
"cache": false
|
|
},
|
|
"build": {
|
|
"dependsOn": ["^package"],
|
|
"passThroughEnv": ["SENTRY_AUTH_TOKEN", "GITHUB_TOKEN"],
|
|
"env": ["SENTRY_RELEASE"],
|
|
"cache": false
|
|
},
|
|
"dev": {
|
|
"dependsOn": ["^package"],
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"check": {
|
|
"dependsOn": ["^package"],
|
|
"cache": true
|
|
},
|
|
"//#globallint": {
|
|
// Root rules require dependencies to manually be listed https://github.com/vercel/turbo/discussions/7481
|
|
"dependsOn": ["@gitbutler/ui#package"],
|
|
"cache": true
|
|
}
|
|
}
|
|
}
|