2023-01-24 19:51:29 +04:00
|
|
|
{
|
|
|
|
|
"$schema": "https://turbo.build/schema.json",
|
|
|
|
|
"globalEnv": ["NODE_ENV"],
|
2026-06-10 11:10:01 +04:00
|
|
|
"tasks": {
|
2023-01-24 19:51:29 +04:00
|
|
|
"build": {
|
|
|
|
|
"dependsOn": ["^build"],
|
|
|
|
|
"env": [
|
|
|
|
|
"NEXT_PUBLIC_APP_URL",
|
|
|
|
|
"UPSTASH_REDIS_REST_URL",
|
2023-03-08 11:37:15 +04:00
|
|
|
"UPSTASH_REDIS_REST_TOKEN",
|
2023-06-22 22:44:52 +04:00
|
|
|
"COMPONENTS_REGISTRY_URL",
|
2024-08-31 01:54:48 +04:00
|
|
|
"REGISTRY_URL",
|
2023-06-22 22:44:52 +04:00
|
|
|
"npm_config_user_agent",
|
2024-03-22 21:39:33 +04:00
|
|
|
"https_proxy",
|
|
|
|
|
"V0_URL",
|
|
|
|
|
"V0_EDIT_SECRET",
|
|
|
|
|
"DEPLOYMENT_PROTECTION_BYPASS"
|
2023-01-24 19:51:29 +04:00
|
|
|
],
|
2026-02-26 13:42:50 +04:00
|
|
|
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
|
2023-01-24 19:51:29 +04:00
|
|
|
},
|
|
|
|
|
"preview": {
|
|
|
|
|
"env": ["NEXT_PUBLIC_APP_URL"],
|
|
|
|
|
"outputs": ["dist/**", ".next/**"]
|
|
|
|
|
},
|
2023-03-08 13:24:16 +04:00
|
|
|
"start": {
|
|
|
|
|
"dependsOn": ["^build"]
|
|
|
|
|
},
|
2023-01-24 19:51:29 +04:00
|
|
|
"lint": {
|
2023-03-08 13:24:16 +04:00
|
|
|
"cache": false,
|
2023-01-24 19:51:29 +04:00
|
|
|
"outputs": []
|
|
|
|
|
},
|
2023-04-17 19:19:40 +04:00
|
|
|
"lint:fix": {
|
|
|
|
|
"cache": false,
|
|
|
|
|
"outputs": []
|
|
|
|
|
},
|
2023-02-10 11:15:33 +04:00
|
|
|
"format:check": {
|
2023-03-08 13:24:16 +04:00
|
|
|
"cache": false,
|
2023-02-10 11:15:33 +04:00
|
|
|
"outputs": []
|
|
|
|
|
},
|
2023-04-17 19:19:40 +04:00
|
|
|
"format:write": {
|
|
|
|
|
"outputs": []
|
|
|
|
|
},
|
2023-02-10 11:15:33 +04:00
|
|
|
"typecheck": {},
|
2023-01-24 19:51:29 +04:00
|
|
|
"dev": {
|
2026-06-10 11:10:01 +04:00
|
|
|
"cache": false,
|
|
|
|
|
"persistent": true
|
2023-03-08 13:24:16 +04:00
|
|
|
},
|
|
|
|
|
"check": {
|
|
|
|
|
"cache": false
|
2023-06-22 22:44:52 +04:00
|
|
|
},
|
|
|
|
|
"test": {
|
2026-04-16 14:22:28 +04:00
|
|
|
"dependsOn": ["^build"],
|
2023-06-22 22:44:52 +04:00
|
|
|
"cache": false,
|
|
|
|
|
"outputs": []
|
2025-03-13 13:06:08 +04:00
|
|
|
},
|
|
|
|
|
"registry:build": {
|
2025-12-12 21:01:44 +04:00
|
|
|
"outputs": []
|
2023-01-24 19:51:29 +04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|