forked from supabase/supabase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
95 lines (95 loc) · 2.42 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"$schema": "https://turbo.build/schema.json",
"ui": "stream",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**"]
},
"design-system#build": {
"dependsOn": ["^build"],
"env": ["NEXT_PUBLIC_*"],
"outputs": [".next/**", "!.next/cache/**", ".contentlayer/**"]
},
"docs#build": {
"dependsOn": ["^build"],
"env": [
"ANALYZE",
"DOCS_GITHUB_APP_ID",
"DOCS_GITHUB_APP_INSTALLATION_ID",
"DOCS_GITHUB_APP_PRIVATE_KEY",
"DOCS_REVALIDATION_KEYS",
"DOCS_REVALIDATION_OVERRIDE_KEYS",
"NEXT_PUBLIC_*",
"NODE_ENV",
"OPENAI_API_KEY",
"SUPABASE_SECRET_KEY"
],
"inputs": ["$TURBO_DEFAULT$", "../../examples"],
"outputs": [".next/**", "!.next/cache/**"]
},
"studio#build": {
"dependsOn": ["^build"],
"env": [
"ANALYZE",
"AUTH_JWT_SECRET",
"DEFAULT_ORGANIZATION_NAME",
"DEFAULT_PROJECT_NAME",
"DOCS_GITHUB_APP_ID",
"DOCS_GITHUB_APP_INSTALLATION_ID",
"DOCS_GITHUB_APP_PRIVATE_KEY",
"LOGFLARE_API_KEY",
"LOGFLARE_URL",
"NEXT_PUBLIC_*",
"OPENAI_API_KEY",
"PLATFORM_PG_META_URL",
"READ_ONLY_API_KEY",
"READ_ONLY_URL",
"STUDIO_PG_META_URL",
"SUPABASE_ANON_KEY",
"SUPABASE_PUBLIC_URL",
"SUPABASE_SERVICE_KEY",
"SUPABASE_URL",
"VERCEL_GIT_COMMIT_SHA",
"VERCEL_ENV",
"VERCEL_URL"
],
"passThroughEnv": ["SENTRY_ORG", "SENTRY_PROJECT", "SENTRY_AUTH_TOKEN"],
"outputs": [".next/**", "!.next/cache/**"]
},
"www#build": {
"dependsOn": ["^build"],
"env": [
"ANALYZE",
"GITHUB_CHANGELOG_APP_*",
"MISC_USE_SERVICE_ROLE_KEY",
"NEXT_PUBLIC_*",
"NODE_ENV",
"OPENAI_API_KEY",
"npm_lifecycle_event",
"LIVE_SUPABASE_COM_SERVICE_ROLE_KEY",
"VERCEL_URL",
"HUBSPOT_PORTAL_ID",
"HUBSPOT_ENTERPRISE_FORM_GUID"
],
"outputs": [".next/**", "!.next/cache/**", ".contentlayer/**"]
},
"lint": {
"outputs": []
},
"clean": {
"outputs": [],
"cache": false
},
"dev": {
"cache": false
},
"test": {
"cache": false
},
"typecheck": {
"dependsOn": ["^typecheck"],
"outputs": ["**/node_modules/.cache/tsbuildinfo.json"]
}
}
}