-
Notifications
You must be signed in to change notification settings - Fork 27
/
turbo.json
53 lines (53 loc) · 1.2 KB
/
turbo.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"@quenti/next#build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"],
"env": ["DATABASE_URL"]
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**"],
"inputs": ["**/*", "!apps/cdn/**"]
},
"start": {
"outputs": ["dist/**", "build/**"],
"cache": false
},
"lint": {
"dependsOn": ["^lint"],
"passThroughEnv": ["ANALYZE"]
},
"dev": {
"cache": false
}
},
"globalDependencies": [
"**/.env",
"yarn.lock",
"packages/console/**/*",
"packages/integrations/**/*"
],
"globalEnv": [
"NODE_ENV",
"PORT",
"VERCEL",
"VERCEL_URL",
"STRIPE_PRIVATE_KEY",
"USERS_BUCKET_URL",
"ASSETS_BUCKET_URL",
"SKIP_ENV_VALIDATION",
"ANALYZE",
"NEXT_PUBLIC_APP_URL",
"NEXT_PUBLIC_WEBSITE_URL",
"NEXT_PUBLIC_DEPLOYMENT",
"NEXT_PUBLIC_HIGHLIGHT_PROJECT_ID",
"NEXT_PUBLIC_BETTERUPTIME_ID",
"NEXT_PUBLIC_STRIPE_PUBLIC_KEY",
"NEXT_PUBLIC_CDN_WORKER_ENDPOINT",
"NEXT_PUBLIC_CGI_ENDPOINT",
"NEXT_PUBLIC_TELEMETRY_HOST",
"NEXT_PUBLIC_TELEMETRY_KEY"
]
}