mirror of
https://github.com/chrisbenincasa/tunarr.git
synced 2026-04-18 00:53:35 -04:00
32 lines
592 B
JSON
32 lines
592 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"tasks": {
|
|
"topo": {
|
|
"dependsOn": ["^topo"]
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
},
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["build/**", "dist/**"]
|
|
},
|
|
"build-dev": {},
|
|
"lint": {},
|
|
"lint-fix": {},
|
|
"dev": {
|
|
"dependsOn": ["@tunarr/types#build", "@tunarr/shared#build"],
|
|
"cache": false,
|
|
"persistent": true,
|
|
"interruptible": true
|
|
},
|
|
"test": {
|
|
"cache": false
|
|
},
|
|
"test:watch": {
|
|
"cache": false,
|
|
"persistent": true
|
|
}
|
|
}
|
|
}
|