Connect to self-hosted turbo cache at turbo.mosaicstack.dev. Convert lint/typecheck/test/build steps to use pnpm turbo with remote cache env vars, removing manual build-shared steps since turbo handles the dependency graph automatically. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
44 lines
831 B
JSON
44 lines
831 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"remoteCache": {},
|
|
"tasks": {
|
|
"prisma:generate": {
|
|
"cache": false
|
|
},
|
|
"build": {
|
|
"dependsOn": ["^build", "prisma:generate"],
|
|
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
},
|
|
"lint:fix": {
|
|
"outputs": []
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["coverage/**"]
|
|
},
|
|
"test:watch": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"test:coverage": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["coverage/**"]
|
|
},
|
|
"typecheck": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|