mirror of
https://github.com/logos-co/logos-web.git
synced 2026-08-27 12:11:14 +00:00
72 lines
1.7 KiB
JSON
72 lines
1.7 KiB
JSON
{
|
|
"$schema": "https://turborepo.dev/schema.json",
|
|
"ui": "stream",
|
|
"globalEnv": ["NODE_ENV", "VERCEL", "VERCEL_URL", "LOGOS_CONTENT_ROOT"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
|
"outputs": [".next/**", "!.next/cache/**", "dist/**"],
|
|
"env": [
|
|
"PAYLOAD_SECRET",
|
|
"DATABASE_URL",
|
|
"DATABASE_AUTH_TOKEN",
|
|
"PAYLOAD_DB_SCHEMA",
|
|
"PAYLOAD_DB_PUSH",
|
|
"PAYLOAD_DB_POOL_MAX",
|
|
"PAYLOAD_DB_CONNECTION_TIMEOUT_MS",
|
|
"PAYLOAD_DB_QUERY_TIMEOUT_MS",
|
|
"PAYLOAD_DB_IDLE_TIMEOUT_MS",
|
|
"PAYLOAD_HEALTH_TIMEOUT_MS",
|
|
"NEXT_SERVER_ACTIONS_ENCRYPTION_KEY",
|
|
"VERCEL_BRANCH_URL",
|
|
"VERCEL_ENV",
|
|
"NEXT_PUBLIC_SERVER_URL",
|
|
"NEXT_PUBLIC_WEB_URL",
|
|
"CIVICRM_BASE_URL",
|
|
"CIVICRM_API_KEY",
|
|
"ACTIVE_VIEW",
|
|
"KEYCLOAK_USER_EMAIL_HEADER",
|
|
"DEV_USER_EMAIL_MOCK"
|
|
],
|
|
"passThroughEnv": ["GITHUB_TOKEN"]
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^lint"]
|
|
},
|
|
"lint:fix": {
|
|
"cache": false
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
},
|
|
"test:static": {
|
|
"dependsOn": ["build"],
|
|
"outputs": []
|
|
},
|
|
"test:perf": {
|
|
"dependsOn": ["build"],
|
|
"outputs": []
|
|
},
|
|
"check-types": {
|
|
"dependsOn": ["^build", "^check-types"]
|
|
},
|
|
"generate-types": {
|
|
"cache": false,
|
|
"outputs": ["packages/types/src/payload.ts"]
|
|
},
|
|
"dev": {
|
|
"dependsOn": ["^build"],
|
|
"cache": false,
|
|
"persistent": true,
|
|
"env": ["DATABASE_URL"]
|
|
},
|
|
"@acid-info/logos-ui#dev": {
|
|
"dependsOn": ["build"],
|
|
"cache": false,
|
|
"persistent": true
|
|
}
|
|
}
|
|
}
|