-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathturbo.json
49 lines (49 loc) · 1.05 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
{
"pipeline": {
"//#prettier-script": {
"outputs": ["node_modules/.cache/prettier/.prettier-cache"]
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "dist-site/**"]
},
"conformance": {
"dependsOn": ["^build"]
},
"dev": {
"dependsOn": ["^build"],
"cache": false
},
"dev-turbo": {
"dependsOn": ["^build"],
"cache": false
},
"dev-webpack": {
"dependsOn": ["^build"],
"cache": false
},
"eslint": {
"dependsOn": ["^build"]
},
"lint-copy": {
"inputs": ["**/*.{md,mdx}"]
},
"build-release-packages": {
"dependsOn": ["@vercel/otel"]
},
"root-conformance": {},
"//#root-conformance": {},
"type-check": {
"dependsOn": ["^build"],
"outputs": ["**/node_modules/.cache/tsbuildinfo.json"]
},
"e2e-test": {
"dependsOn": ["^build"],
"inputs": ["**/*.{js,jsx,ts,tsx}"]
},
"unit-test": {
"dependsOn": ["^build"],
"inputs": ["**/*.{js,jsx,ts,tsx}"]
}
}
}