-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathturbo.json
More file actions
52 lines (52 loc) · 1.09 KB
/
turbo.json
File metadata and controls
52 lines (52 loc) · 1.09 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
{
"$schema": "https://turbo.build/schema.json",
"ui": "stream",
"tasks": {
"build": {
"env": [
"APP_URL",
"STRIPE_SECRET_KEY",
"ACCOUNT_SECRET",
"AIRTABLE_TOKEN",
"AIRTABLE_BASE",
"POSTMARK_SERVER_TOKEN",
"CLEAR_TOKEN",
"CLEAR_SECRET",
"LABS_SECRET",
"DOI_PREFIX"
],
"dependsOn": ["^build", "codegen"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
},
"dev": {
"dependsOn": ["codegen"],
"cache": false,
"persistent": true
},
"start": {
"cache": false,
"persistent": true
},
"codegen": {
"outputs": ["src/@types/**"]
},
"//#lint": {
"dependsOn": ["^build"]
},
"//#lint:fix": {
"cache": false,
"dependsOn": ["^build"]
},
"//#format": {},
"//#format:fix": {
"cache": false
},
"//#quality": {
"dependsOn": ["//#lint", "//#format"]
},
"//#quality:fix": {
"dependsOn": ["//#lint:fix", "//#format:fix"]
}
}
}