Files
shadcn-ui/turbo.json
shadcn 1994caba0b perf: dev server (#10904)
* perf: dev server

* fix
2026-06-10 11:10:01 +04:00

61 lines
1.2 KiB
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalEnv": ["NODE_ENV"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"env": [
"NEXT_PUBLIC_APP_URL",
"UPSTASH_REDIS_REST_URL",
"UPSTASH_REDIS_REST_TOKEN",
"COMPONENTS_REGISTRY_URL",
"REGISTRY_URL",
"npm_config_user_agent",
"https_proxy",
"V0_URL",
"V0_EDIT_SECRET",
"DEPLOYMENT_PROTECTION_BYPASS"
],
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
},
"preview": {
"env": ["NEXT_PUBLIC_APP_URL"],
"outputs": ["dist/**", ".next/**"]
},
"start": {
"dependsOn": ["^build"]
},
"lint": {
"cache": false,
"outputs": []
},
"lint:fix": {
"cache": false,
"outputs": []
},
"format:check": {
"cache": false,
"outputs": []
},
"format:write": {
"outputs": []
},
"typecheck": {},
"dev": {
"cache": false,
"persistent": true
},
"check": {
"cache": false
},
"test": {
"dependsOn": ["^build"],
"cache": false,
"outputs": []
},
"registry:build": {
"outputs": []
}
}
}