Files
wehub-resource-sync 3a28426bf4
Lint and Format Check / lint-and-format (push) Failing after 0s
Check Migrations / Check for duplicate migration numbers (push) Failing after 1s
CI Pre-merge Check / CI Pre-merge Check (push) Failing after 2m17s
chore: import upstream snapshot with attribution
2026-07-13 12:23:40 +08:00

50 lines
1.1 KiB
JSON

{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["src/**", "tsconfig*.json", "package.json", "vite.config.*", "tsup.config.*"],
"env": ["VITE_*"]
},
"@insforge/backend#build": {
"outputs": ["../dist/server.js", "../dist/server.js.map"]
},
"frontend#build": {
"dependsOn": [],
"outputs": ["../dist/frontend/**"]
},
"@insforge/ui#build": {
"outputs": ["dist/**"]
},
"@insforge/dashboard#build": {
"outputs": ["dist/**"]
},
"@insforge/shared-schemas#build": {
"outputs": ["dist/**"]
},
"typecheck": {
"dependsOn": ["^build"],
"outputs": [],
"inputs": ["src/**", "tsconfig*.json", "package.json"]
},
"test": {
"dependsOn": ["^build"],
"outputs": [],
"cache": false
},
"lint": {
"outputs": [],
"inputs": ["src/**", "*.config.*", "package.json"],
"cache": false
},
"dev": {
"dependsOn": ["^build"],
"persistent": true,
"cache": false
},
"clean": {
"cache": false
}
}
}