Files
vercel/turbo.json

58 lines
1.2 KiB
JSON

{
"$schema": "https://turborepo.org/schema.json",
"globalDependencies": [
"turbo-cache-key.json",
"package.json",
"test/lib/**",
"utils/build.mjs"
],
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputMode": "new-only",
"outputs": ["dist/**"]
},
"vitest-unit": {
"dependsOn": ["build"],
"outputMode": "new-only"
},
"vitest-run": {
"dependsOn": ["build"],
"outputMode": "new-only"
},
"vitest-e2e": {
"dependsOn": ["build"],
"outputMode": "new-only"
},
"test-unit": {
"dependsOn": ["build"],
"outputMode": "new-only"
},
"test-dev": {
"dependsOn": ["build"],
"outputMode": "new-only"
},
"test-cli": {
"dependsOn": ["build"],
"outputMode": "new-only"
},
"test-e2e": {
"dependsOn": ["build"],
"outputMode": "new-only"
},
"test-next-local": {
"dependsOn": ["build"],
"outputMode": "new-only"
},
"test-next-local-legacy": {
"dependsOn": ["build"],
"outputMode": "new-only"
},
"test": {
"dependsOn": ["build"],
"outputMode": "new-only"
},
"type-check": {}
}
}