-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathturbo.json
More file actions
47 lines (47 loc) · 1.1 KB
/
turbo.json
File metadata and controls
47 lines (47 loc) · 1.1 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
{
"$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
},
"@codex/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", "PISTON_API_KEY"]
},
"client#test:e2e:ui": {
"cache": false,
"env": ["BETTERSTACK_API_KEY", "PISTON_API_KEY"]
},
"server#test:socket": {
"cache": true,
"outputs": ["test-results/**"]
},
"server#test:socket:remote": {
"cache": false,
"outputs": ["test-results/**"]
}
}
}