-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
60 lines (60 loc) · 1.33 KB
/
turbo.json
File metadata and controls
60 lines (60 loc) · 1.33 KB
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
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"globalEnv": [
"FIGMA_APP_CLIENT_ID",
"FIGMA_APP_CLIENT_SECRET",
"GITHUB_APP_CLIENT_ID",
"GITHUB_APP_CLIENT_SECRET",
"GITHUB_APP_ID",
"GITHUB_APP_PRIVATE_KEY",
"NEXT_PUBLIC_POSTHOG_HOST",
"NEXT_PUBLIC_POSTHOG_KEY",
"NEXT_PUBLIC_VERCEL_ENV",
"NEXT_PUBLIC_VERCEL_PROJECT_PRODUCTION_URL",
"NEXT_PUBLIC_VERCEL_URL",
"NEXT_RUNTIME",
"POSTGRES_URL",
"RESEND_API_KEY",
"SEND_EMAIL_HOOK_SECRET",
"CRON_SECRET",
"SUPABASE_SERVICE_ROLE_KEY",
"SUPABASE_ANON_KEY",
"SUPABASE_URL",
"VITE_HOST_URL"
],
"tasks": {
"topo": {
"dependsOn": ["^topo"]
},
"build": {
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [
".cache/tsbuildinfo.json",
"dist/**",
"storybook-static/**",
".next/**"
],
"dependsOn": ["^build"]
},
"format": {
"outputs": [".cache/.prettiercache"],
"outputLogs": "new-only"
},
"lint": {
"dependsOn": ["^topo", "^build"],
"outputs": [".cache/.eslintcache"]
},
"type-check": {
"dependsOn": ["^topo", "^build"],
"outputs": [".cache/tsbuildinfo.json"]
},
"dev": {
"cache": false,
"persistent": true
},
"clean": {
"cache": false
}
}
}