veza/turbo.json
v0 e23ccbf6ed
Some checks failed
Backend API CI / test-unit (push) Failing after 0s
Backend API CI / test-integration (push) Failing after 0s
Frontend CI / test (push) Failing after 0s
Storybook Audit / Build & audit Storybook (push) Failing after 0s
fix transitive dependency issue in apps/web
Add dev task to turbo.json, remove backstopjs, fix husky script
2026-03-16 10:39:21 +00:00

22 lines
420 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"dev": {
"cache": false,
"persistent": true
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
},
"test": {
"dependsOn": [],
"outputs": []
},
"lint": {
"dependsOn": [],
"outputs": []
}
},
"globalDependencies": ["**/.env.*local"]
}