mirror of
https://github.com/harivansh-afk/betterNAS.git
synced 2026-04-15 08:03:42 +00:00
Replace custom CSS module UI with shadcn radix-luma components, Tailwind v4, and Manrope font. Remove packages/ui.
36 lines
749 B
JSON
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
|
|
}
|
|
}
|
|
}
|