mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-02-09 02:49:29 +08:00
53 lines
1004 B
JSON
53 lines
1004 B
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",
|
|
"npm_config_user_agent",
|
|
"https_proxy"
|
|
],
|
|
"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": []
|
|
}
|
|
}
|
|
}
|