mhsf-dev/turbo.json

37 lines
722 B
JSON
Raw Permalink Normal View History

2024-07-26 00:46:53 -05:00
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [".next/**", "!.next/cache/**"],
"env": [
"NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY",
"CLERK_SECRET_KEY",
"NEXT_PUBLIC_IS_AUTH",
"NEXT_PUBLIC_CLERK_SWITCH_DOMAIN",
"MHSF_BACKEND_API_LOCATION",
"MHSF_BACKEND_SECRET",
"MONGO_DB",
"WEBHOOK_AUTH",
"LINEAR",
"BS_TOKEN",
"BS_STATUS_PAGE",
"BS_STATUS_MAIN_WEBSITE",
"CLERK_USER_PREFIX"
]
},
"lint": {
"dependsOn": ["^lint"]
},
"check-types": {
"dependsOn": ["^check-types"]
},
"dev": {
"cache": false,
"persistent": true
}
}
2024-07-26 00:46:53 -05:00
}