-
Notifications
You must be signed in to change notification settings - Fork 4
/
turbo.json
58 lines (58 loc) · 1.15 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
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env"],
"pipeline": {
"build": {
"dependsOn": ["^build", "generate", "codegen"],
"outputs": ["dist/**", ".next/**", "public/dist/**"],
"env": [
"VERCEL_URL",
"PORT",
"NODE_ENV",
"DATABASE_URL",
"CLERK_JWSK_URL",
"CLERK_ISSUER"
]
},
"generate": {
"cache": false
},
"codegen": {
"cache": false
},
"lint": {
"dependsOn": ["generate", "codegen"],
"outputs": []
},
"format": {
"outputs": []
},
"clean": {
"cache": false
},
"test": {
"outputs": []
},
"precommit:format": {
"cache": false
},
"health-check": {
"cache": false
},
"dev": {
"cache": false
},
"@apps/web#dev": {
"cache": false,
"dependsOn": ["@apps/graphql-gateway#health-check"]
},
"@apps/graphql-gateway#dev": {
"cache": false,
"dependsOn": [
"@apps/todo-graphql#health-check",
"@apps/user-graphql#health-check",
"@apps/blog-graphql#health-check"
]
}
}
}