-
-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy pathturbo.json
108 lines (108 loc) · 2.39 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
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [".env.*local"],
"globalEnv": [
"NODE_ENV",
"CI",
"ANALYZE",
"PORT",
"SPOTIFY_CLIENT_ID",
"SPOTIFY_CLIENT_SECRET",
"SPOTIFY_REFRESH_TOKEN",
"GOOGLE_API_KEY",
"GITHUB_TOKEN",
"WAKATIME_API_KEY",
"AUTH_SECRET",
"AUTH_TRUST_HOST",
"GOOGLE_CLIENT_ID",
"GOOGLE_CLIENT_SECRET",
"GITHUB_CLIENT_ID",
"GITHUB_CLIENT_SECRET",
"DATABASE_URL",
"UPSTASH_REDIS_REST_URL",
"UPSTASH_REDIS_REST_TOKEN",
"IP_ADDRESS_SALT",
"DISCORD_WEBHOOK_URL",
"NEXT_PUBLIC_UMAMI_URL",
"NEXT_PUBLIC_UMAMI_WEBSITE_ID",
"RESEND_API_KEY",
"AUTHOR_EMAIL",
"REACT_SCAN_MONITOR_API_KEY",
"NEXT_PUBLIC_FLAG_COMMENT",
"NEXT_PUBLIC_FLAG_AUTH",
"NEXT_PUBLIC_FLAG_STATS",
"NEXT_PUBLIC_FLAG_SPOTIFY",
"NEXT_PUBLIC_FLAG_ANALYTICS",
"NEXT_PUBLIC_FLAG_GUESTBOOK_NOTIFICATION",
"NEXT_PUBLIC_FLAG_LIKE_BUTTON",
"NEXT_RUNTIME"
],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**", "dist/**", ".content-collections/**"]
},
"build:apps": {
"dependsOn": ["^build:apps"],
"outputs": [".next/**", "!.next/cache/**", ".content-collections/**"]
},
"build:mdx": {
"outputs": [".content-collections/**"]
},
"build:packages": {
"dependsOn": ["^build:packages"],
"outputs": ["dist/**"]
},
"clean": {
"cache": false
},
"db:check": {
"cache": false
},
"db:generate": {
"cache": false
},
"db:migrate": {
"cache": false
},
"db:push": {
"cache": false
},
"db:seed": {
"cache": false
},
"db:studio": {
"cache": false,
"persistent": true
},
"dev": {
"cache": false,
"persistent": true
},
"dev:docs": {
"cache": false,
"persistent": true
},
"dev:packages": {
"cache": false,
"persistent": true
},
"dev:web": {
"cache": false,
"persistent": true
},
"lint": {},
"lint:fix": {},
"test:e2e": {
"outputs": ["playwright-report/**", "test-results/**"]
},
"test:e2e:inspector": {
"outputs": ["playwright-report/**", "test-results/**"]
},
"test:e2e:ui": {
"outputs": ["playwright-report/**", "test-results/**"]
},
"type-check": {}
},
"ui": "stream"
}