mirror of
https://github.com/vercel/streamdown.git
synced 2026-09-19 02:18:37 +08:00
04f6f3aaba
* Extract images from paragraph tags * Create image-hydration.test.tsx * Create tangy-taxis-hammer.md * Fix linting and formatting commands
28 lines
549 B
JSON
28 lines
549 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
|
|
}
|
|
}
|
|
}
|