betterNAS/turbo.json
Harivansh Rathi b74db855c8 Migrate apps/web to shadcn/ui with preset b2D1F1IZv
Replace custom CSS module UI with shadcn radix-luma components,
Tailwind v4, and Manrope font. Remove packages/ui.
2026-04-01 18:11:52 +00:00

36 lines
749 B
JSON

{
"$schema": "https://turborepo.dev/schema.json",
"ui": "tui",
"globalEnv": [
"BETTERNAS_CLONE_NAME",
"BETTERNAS_CONTROL_PLANE_CLIENT_TOKEN",
"BETTERNAS_CONTROL_PLANE_PORT",
"BETTERNAS_CONTROL_PLANE_URL"
],
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
},
"lint": {
"dependsOn": ["^lint"]
},
"format": {
"cache": false
},
"format:check": {
"dependsOn": ["^format:check"]
},
"check-types": {
"dependsOn": ["^check-types"]
},
"test": {
"dependsOn": ["^test"]
},
"dev": {
"cache": false,
"persistent": true
}
}
}