mirror of
https://github.com/chrisbenincasa/tunarr.git
synced 2026-04-18 09:03:35 -04:00
37 lines
773 B
JSON
37 lines
773 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"extends": ["//"],
|
|
"tasks": {
|
|
"build": {},
|
|
"typecheck": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"bundle": {
|
|
"inputs": ["./scripts/bundle.ts", "./src/**"],
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"build-dev": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"make-bin": {
|
|
"dependsOn": ["@tunarr/web#bundle", "bundle"],
|
|
"outputs": ["bin/**"]
|
|
},
|
|
"lint-staged": {},
|
|
"lint": {
|
|
"dependsOn": ["lint-staged"]
|
|
},
|
|
"dev": {
|
|
"dependsOn": ["@tunarr/shared#build"],
|
|
"persistent": true,
|
|
"cache": false,
|
|
"interruptible": true
|
|
},
|
|
"generate-openapi": {
|
|
"inputs": ["./src/**"],
|
|
"dependsOn": ["^build"]
|
|
}
|
|
}
|
|
}
|