-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathturbo.json
59 lines (59 loc) · 1.25 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
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env"],
"tasks": {
"client#build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"],
"env": ["SENTRY_AUTH_TOKEN"],
"cache": true
},
"server#build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"],
"cache": true
},
"@kasca/types#build": {
"outputs": ["dist/**/*.d.ts", "dist/**/*.js"],
"cache": true
},
"build": {
"dependsOn": ["^build"],
"cache": true,
"outputs": []
},
"dev": {
"cache": false,
"persistent": true
},
"client#test:e2e": {
"cache": false,
"outputs": ["playwright-report/**", "test-results/**"],
"env": ["BETTERSTACK_API_KEY"]
},
"client#test:e2e:ui": {
"cache": false,
"env": ["BETTERSTACK_API_KEY"]
},
"server#test:socket": {
"cache": true,
"outputs": ["test-results/**"]
},
"server#test:socket:remote": {
"cache": true,
"outputs": ["test-results/**"]
},
"lint:check": {
"cache": true
},
"lint:fix": {
"cache": true
},
"format:check": {
"cache": true
},
"format:fix": {
"cache": true
}
}
}