mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-02-09 02:49:29 +08:00
* feat: update dark colors * feat(v4): update dark mode colors * fix * fix * fix: slate and stone mismatches * feat(v4): update skeleton and switch colors * feat(v4): add dashboard example * fix(v4): update dashboard components * fix: themes * feat: update sonner * feat(v4): update dashboard buttons * fix: test new colors * fix: build commands * feat(v4): more color updates * feat(v4): update theme selector * fix(v4): minor component fixes
61 lines
1.2 KiB
JSON
61 lines
1.2 KiB
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalEnv": ["NODE_ENV"],
|
|
"pipeline": {
|
|
"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/**"]
|
|
},
|
|
"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": {
|
|
"cache": false,
|
|
"outputs": []
|
|
},
|
|
"typecheck": {},
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"check": {
|
|
"cache": false
|
|
},
|
|
"test": {
|
|
"cache": false,
|
|
"outputs": []
|
|
},
|
|
"registry:build": {
|
|
"cache": false,
|
|
"outputs": []
|
|
}
|
|
}
|
|
}
|