Files
openconcho/turbo.json
Offending Commit 34319db283 chore(test): catalog @playwright/test and wire e2e into turbo
- Promote @playwright/test to the workspace catalog
- Add test:e2e turbo task (uncached)
- Add root pnpm test:e2e script
- Vitest scopes to src/**/*.{test,spec} and excludes e2e/
2026-05-03 17:03:55 -05:00

36 lines
746 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "src-tauri/target/release/bundle/**"]
},
"typecheck": {
"dependsOn": ["^typecheck"],
"inputs": ["src/**", "tsconfig*.json"]
},
"lint": {
"inputs": ["src/**"]
},
"test": {
"inputs": ["src/**", "vitest.config.*", "package.json"]
},
"test:e2e": {
"cache": false,
"inputs": ["e2e/**", "src/**", "playwright.config.*", "package.json"]
},
"cargo-check": {
"inputs": ["src-tauri/src/**", "src-tauri/Cargo.toml", "src-tauri/Cargo.lock"],
"outputs": []
},
"dev": {
"cache": false,
"persistent": true
},
"tauri": {
"dependsOn": ["^build"],
"cache": false
}
}
}