-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
72 lines (72 loc) · 1.41 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
{
"$schema": "https://turbo.build/schema.json",
"globalEnv": [
"VSCODE_INSPECTOR_OPTIONS",
"VITEST_JUNIT_SUITE_NAME",
"npm_package_name"
],
"pipeline": {
"build": {
"dependsOn": ["^build"],
"inputs": ["src/**/*"],
"outputs": ["dist/**"]
},
"//#build": {
"dependsOn": ["//#spellcheck", "//#lint", "//#test"]
},
"//#spellcheck": {
"dependsOn": []
},
"//#lint": {
"dependsOn": ["//#lint:xo", "//#lint:markdown"]
},
"//#lint:xo": {
"dependsOn": []
},
"//#lint:markdown": {
"dependsOn": [],
"inputs": ["**/*.md"]
},
"//#test": {
"dependsOn": []
},
"//#bench": {
"dependsOn": []
},
"//#ci:lint": {
"dependsOn": []
},
"//#ci:test": {
"dependsOn": []
},
"ci:build": {
"dependsOn": ["build"],
"inputs": ["src/**/*"],
"outputs": ["dist/**"]
},
"//#ci:build": {
"dependsOn": ["//#ci:lint", "//#ci:test"]
},
"ci:version": {
"dependsOn": ["build"]
},
"//#ci:version": {
"dependsOn": ["ci:build"],
"cache": false
},
"ci:publish": {
"dependsOn": ["build"]
},
"//#ci:publish": {
"dependsOn": ["ci:build"],
"cache": false
}
},
"globalDependencies": [
"tsconfig.json",
"tsconfig.build.json",
"vite.config.ts",
"vite.config.ci.ts",
"vite.workspace.ts"
]
}