Files
vercel__streamdown/turbo.json
T
Hayden Bleasel 04f6f3aaba fix: hydration error while rendering image (#172)
* Extract images from paragraph tags

* Create image-hydration.test.tsx

* Create tangy-taxis-hammer.md

* Fix linting and formatting commands
2025-10-09 17:22:40 -07:00

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
}
}
}