mirror of
https://github.com/vercel/streamdown.git
synced 2026-09-19 02:18:37 +08:00
62888665f8
* Add functional benchmarking suite * Optimize regex performance * Fix rendering issue with code blocks * Fix bench commands * Table optimizations * Math Block Detection Caching * Parse blocks optimizations * More regex-to-loop optimizations * Update layout.tsx * Remove dependency on vfile * Optimize string operations * Create markdown.test.tsx * Optimized cache key generation * Fix display issue * Add core Markdown parsing benchmarks * Update section.tsx * CSV / TSV escaping optimization * More optimizations * Run Ultracite * Fix remaining lint issues
34 lines
659 B
JSON
34 lines
659 B
JSON
{
|
|
"$schema": "https://turborepo.com/schema.json",
|
|
"ui": "tui",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
|
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
|
|
},
|
|
"check-types": {
|
|
"dependsOn": ["^check-types"]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^test"]
|
|
},
|
|
"test:coverage": {
|
|
"dependsOn": ["^test:coverage"]
|
|
},
|
|
"test:ui": {
|
|
"dependsOn": ["^test:ui"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"bench": {
|
|
"dependsOn": ["^bench"]
|
|
},
|
|
"bench:ui": {
|
|
"dependsOn": ["^bench:ui"]
|
|
}
|
|
}
|
|
}
|