mirror of
https://github.com/chrisbenincasa/tunarr.git
synced 2026-04-18 09:03:35 -04:00
27 lines
502 B
JSON
27 lines
502 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"extends": ["//"],
|
|
"tasks": {
|
|
"build-dev": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"clean-build": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"typecheck": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"bundle": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"generate-client": {
|
|
"dependsOn": ["@tunarr/server#generate-openapi"],
|
|
"cache": false
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"]
|
|
}
|
|
}
|
|
}
|