uitripled/turbo.json
Moumen Soliman 9fe7971759
Turbo merge (#5)
* Add turbo v2

* Refactor and format docs components and builders

This commit improves code consistency and readability across multiple files in the docs app, including formatting imports, adjusting code style, and updating layout and builder components. It also increases the min height for the animation detail preview, improves code formatting for query state hooks, and makes minor UI tweaks such as sidebar item rounding. No functional logic is changed.

* Migrate monorepo from Yarn to pnpm

Switched package manager from Yarn to pnpm across the monorepo, updating documentation, scripts, and workspace references. Updated all internal dependency versions to use 'workspace:*'. Adjusted tsup configs to disable type generation and sourcemaps. Added new dependencies to react-shadcn and react-carbon packages. Removed yarn.lock file.

* hotfix

* Update package.json

* hotfix

* hotfix builder issues
2026-01-06 04:20:09 +02:00

30 lines
638 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"lint": {
"dependsOn": ["^lint"]
},
"type-check": {
"dependsOn": ["^type-check"]
},
"registry:generate": {
"dependsOn": ["build"],
"outputs": ["registry.json", "public/r/**"]
},
"registry:sync": {
"dependsOn": ["registry:generate"]
},
"registry:validate": {
"dependsOn": ["registry:sync"],
"cache": false
}
}
}