-
-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathturbo.json
More file actions
93 lines (93 loc) · 1.89 KB
/
Copy pathturbo.json
File metadata and controls
93 lines (93 loc) · 1.89 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
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
{
"$schema": "https://turbo.build/schema.json",
"ui": "stream",
"globalDependencies": ["**/.env*", "**/tsconfig*.json"],
"globalEnv": [
"AUTH_MODE",
"AUTH_JWT_TOKEN",
"NEXT_PUBLIC_BRAND_NAME",
"NEXT_PUBLIC_USE_AUTH_WORKER",
"BETTER_AUTH_URL",
"NEXT_PUBLIC_BETTER_AUTH_URL",
"BETTER_AUTH_SECRET",
"JWT_SECRET",
"DATABASE_URL",
"GITHUB_CLIENT_ID",
"GITHUB_CLIENT_SECRET",
"NEXT_PUBLIC_GOOGLE_CLIENT_ID",
"GOOGLE_CLIENT_SECRET",
"RESEND_API_KEY",
"FROM_EMAIL",
"NEXT_PUBLIC_DEEPCRAWL_API_URL"
],
"tasks": {
"auth:generate": {
"cache": false
},
"db:sync": {
"cache": false
},
"db:sync:prod": {
"cache": false
},
"db:generate": {
"cache": false
},
"db:generate:prod": {
"cache": false
},
"db:migrate": {
"cache": false
},
"db:migrate:prod": {
"cache": false
},
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"],
"cache": true
},
"lint": {
"dependsOn": ["^lint"],
"outputs": [],
"cache": true
},
"format": {
"dependsOn": ["^format"],
"outputs": [],
"cache": true
},
"check": {
"dependsOn": ["^check"],
"outputs": [],
"cache": true
},
"fix": {
"dependsOn": ["^fix"],
"outputs": [],
"cache": true
},
"typecheck": {
"dependsOn": ["^typecheck"],
"outputs": [],
"cache": true
},
"check-types": {
"dependsOn": ["^check-types"],
"outputs": [],
"cache": true
},
"dev": {
"cache": false,
"persistent": true,
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": []
},
"cf-typegen": {
"dependsOn": ["^cf-typegen"],
"outputs": [],
"cache": false
}
}
}