forked from typehero/typehero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
89 lines (89 loc) · 2.36 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
{
"experimentalSpaces": { "id": "space_CWwpUyi1jEpIayj8iSDdz2Ze" },
"pipeline": {
"build": {
"dependsOn": ["^build", "@repo/db#db:generate"],
"outputs": ["dist/**", ".next/**", "!.next/cache/**"],
"env": [
"VERCEL_URL",
"VERCEL_ENV",
"STAGING",
"NODE_ENV",
"DATABASE_URL",
"GITHUB_ID",
"GITHUB_SECRET",
"GITHUB_ADMIN_ID",
"GITHUB_ADMIN_SECRET",
"UPLOADTHING_SECRET",
"UPLOADTHING_APP_ID",
"EDGE_CONFIG",
"NEXTAUTH_SECRET",
"NEXTAUTH_URL",
"RESEND_API_KEY",
"PORT",
"USERNAME",
"PASSWORD",
"CI",
"MAILCHIMP_API_KEY",
"MAILCHIMP_AUDIENCE_ID",
"MAILCHIMP_API_SERVER"
]
},
"topo": {
"dependsOn": ["^topo"]
},
"//#format": {
"outputs": ["node_modules/.cache/prettiercache"],
"outputMode": "errors-only"
},
"format": {
"dependsOn": ["@repo/db#db:generate", "^topo"],
"outputs": ["node_modules/.cache/prettiercache"],
"outputMode": "errors-only"
},
"//#format:fix": {
"outputs": ["node_modules/.cache/prettiercache"],
"outputMode": "errors-only"
},
"format:fix": {
"dependsOn": ["@repo/db#db:generate", "^topo"],
"outputs": ["node_modules/.cache/prettiercache"],
"outputMode": "errors-only"
},
"//#lint": {
"outputs": ["node_modules/.cache/.eslintcache"],
"outputMode": "errors-only"
},
"lint": {
"dependsOn": ["@repo/db#db:generate", "^topo"],
"outputs": ["node_modules/.cache/.eslintcache"],
"outputMode": "errors-only"
},
"//#lint:fix": {
"dependsOn": ["@repo/db#db:generate", "^topo"],
"outputs": ["node_modules/.cache/.eslintcache"],
"outputMode": "errors-only"
},
"lint:fix": {
"dependsOn": ["@repo/db#db:generate", "^topo"],
"outputs": ["node_modules/.cache/.eslintcache"],
"outputMode": "errors-only"
},
"typecheck": {
"dependsOn": ["@repo/db#db:generate", "^topo"],
"outputs": ["node_modules/.cache/tsbuildinfo.json"],
"outputMode": "errors-only"
},
"clean": {
"cache": false
},
"dev": {
"dependsOn": ["@repo/db#db:generate"],
"persistent": true,
"cache": false
},
"test:e2e": {
"outputs": ["playwright-report/**"]
}
}
}