Files
vercel__streamdown/turbo.json
T
Yella Yohan Reddy a4647ccd8e Add Vercel header link and include dist in build outputs (#10)
* fix: add Vercel link to header

* turbo: include dist/** in build outputs

* fix: replace Link with anchor for external Vercel link
2025-08-21 09:52:43 -07:00

35 lines
631 B
JSON

{
"$schema": "https://turborepo.com/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [
"dist/**",
".next/**",
"!.next/cache/**"
]
},
"lint": {
"dependsOn": ["^lint"]
},
"check-types": {
"dependsOn": ["^check-types"]
},
"test": {
"dependsOn": ["^test"]
},
"test:coverage": {
"dependsOn": ["^test:coverage"]
},
"test:ui": {
"dependsOn": ["^test:ui"]
},
"dev": {
"cache": false,
"persistent": true
}
}
}