mirror of
https://github.com/vercel/streamdown.git
synced 2026-09-19 02:18:37 +08:00
5a50f22008
* Bump deps * Transpile shiki * Create afraid-kiwis-bathe.md * Update biome.jsonc * Ignore shadcn files * Run Ultracite * Run unsafe fixes
31 lines
599 B
JSON
31 lines
599 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
|
|
}
|
|
}
|
|
}
|