Files
publisher-dashboard/turbo.json
RevIQ 93abba044a Add root test script using Turborepo
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-10 15:56:51 +08:00

40 lines
861 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalEnv": ["DATABASE_URL", "PORT"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".svelte-kit/**", "build/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"typecheck": {
"dependsOn": ["^build"]
},
"lint": {
"dependsOn": ["^build"]
},
"clean": {
"cache": false
},
"test:e2e": {
"dependsOn": ["^build"],
"inputs": ["src/**/*.ts", "src/**/*.test.ts"],
"env": ["TEST_DATABASE_URL"],
"cache": false
},
"test:unit": {
"dependsOn": ["^build"],
"inputs": ["src/**/*.ts", "src/**/*.test.ts"],
"cache": false
},
"test": {
"dependsOn": ["^build"],
"inputs": ["src/**/*.ts", "src/**/*.test.ts"],
"cache": false
}
}
}