-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturbo.json
79 lines (79 loc) · 2.18 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
{
"$schema": "https://turbo.build/schema.v2.json",
"tasks": {
"dev": {
"cache": false,
"persistent": true
},
"build": {
"dependsOn": ["^build"]
},
"nuqs#build": {
"outputs": ["dist/**", "size.json", ".tsup"]
},
"e2e-next#build": {
"outputs": [".next/**", "!.next/cache/**", "cypress/**"],
"dependsOn": ["^build"],
"env": ["BASE_PATH", "REACT_COMPILER", "E2E_NO_CACHE_ON_RERUN"]
},
"e2e-remix#build": {
"outputs": ["dist/**", "cypress/**"],
"dependsOn": ["^build"],
"env": ["REACT_COMPILER", "E2E_NO_CACHE_ON_RERUN"]
},
"e2e-react-router-v6#build": {
"outputs": ["dist/**", "cypress/**"],
"dependsOn": ["^build"],
"env": ["REACT_COMPILER", "E2E_NO_CACHE_ON_RERUN"]
},
"e2e-react-router-v7#build": {
"outputs": ["dist/**", "cypress/**"],
"dependsOn": ["^build"],
"env": ["REACT_COMPILER", "E2E_NO_CACHE_ON_RERUN"]
},
"e2e-react#build": {
"outputs": ["dist/**", "cypress/**"],
"dependsOn": ["^build"],
"env": ["REACT_COMPILER", "E2E_NO_CACHE_ON_RERUN"]
},
"docs#build": {
"outputs": [".next/**", "!.next/cache/**"],
"dependsOn": ["^build"],
"env": [
"VERCEL_ENV",
"VERCEL_URL",
"VERCEL_PROJECT_PRODUCTION_URL",
"SENTRY_ORG",
"SENTRY_PROJECT",
"SENTRY_AUTH_TOKEN",
"NEXT_PUBLIC_SENTRY_DSN",
"GITHUB_TOKEN",
"ISR_TOKEN"
]
},
"nuqs#test": {
"outputs": ["dist/**", "coverage/**"],
"dependsOn": ["build"]
},
"e2e-next#test": {
"dependsOn": ["build"],
"env": ["BASE_PATH", "REACT_COMPILER", "E2E_NO_CACHE_ON_RERUN"]
},
"e2e-remix#test": {
"dependsOn": ["build"],
"env": ["REACT_COMPILER", "E2E_NO_CACHE_ON_RERUN"]
},
"e2e-react-router-v6#test": {
"dependsOn": ["build"],
"env": ["REACT_COMPILER", "E2E_NO_CACHE_ON_RERUN"]
},
"e2e-react-router-v7#test": {
"dependsOn": ["build"],
"env": ["REACT_COMPILER", "E2E_NO_CACHE_ON_RERUN"]
},
"e2e-react#test": {
"dependsOn": ["build"],
"env": ["REACT_COMPILER", "E2E_NO_CACHE_ON_RERUN"]
}
}
}