Files

67 lines
1.6 KiB
JSON
Raw Permalink Normal View History

2026-04-20 22:24:39 +09:00
{
"$schema": "https://turborepo.dev/schema.json",
"ui": "stream",
2026-08-04 01:02:04 +09:00
"globalEnv": ["NODE_ENV", "VERCEL", "VERCEL_URL", "LOGOS_CONTENT_ROOT"],
2026-04-20 22:24:39 +09:00
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [".next/**", "!.next/cache/**", "dist/**", "out/**"],
"env": [
"PAYLOAD_SECRET",
"DATABASE_URL",
"DATABASE_AUTH_TOKEN",
"PAYLOAD_DB_SCHEMA",
"PAYLOAD_DB_PUSH",
2026-07-02 21:57:04 +09:00
"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",
2026-07-02 22:10:10 +09:00
"VERCEL_BRANCH_URL",
"VERCEL_ENV",
"NEXT_PUBLIC_SERVER_URL",
"NEXT_PUBLIC_WEB_URL"
],
"passThroughEnv": ["GITHUB_TOKEN"]
2026-04-20 22:24:39 +09:00
},
"lint": {
"dependsOn": ["^lint"]
},
"lint:fix": {
"cache": false
},
"test": {
"dependsOn": ["^build"],
"outputs": []
},
2026-05-18 14:24:33 +09:00
"test:static": {
"dependsOn": ["build"],
"outputs": []
},
"test:perf": {
"dependsOn": ["build"],
"outputs": []
},
2026-04-20 22:24:39 +09:00
"check-types": {
"dependsOn": ["^build", "^check-types"]
2026-04-20 22:24:39 +09:00
},
"generate-types": {
"cache": false,
"outputs": ["packages/types/src/payload.ts"]
},
"dev": {
2026-05-27 04:11:06 +09:00
"dependsOn": ["^build"],
2026-04-20 22:24:39 +09:00
"cache": false,
2026-08-04 01:02:04 +09:00
"persistent": true,
"env": ["DATABASE_URL"]
},
"@acid-info/logos-ui#dev": {
"dependsOn": ["build"],
"cache": false,
"persistent": true
2026-04-20 22:24:39 +09:00
}
}
}