mirror of
https://github.com/vercel/streamdown.git
synced 2026-09-19 02:18:37 +08:00
a4647ccd8e
* fix: add Vercel link to header * turbo: include dist/** in build outputs * fix: replace Link with anchor for external Vercel link
35 lines
631 B
JSON
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
|
|
}
|
|
}
|
|
}
|