-
Notifications
You must be signed in to change notification settings - Fork 2
/
turbo.json
101 lines (101 loc) · 1.78 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"baseBranch": "origin/main",
"pipeline": {
"web:ignore-build": {
"comment": "this is used by vercel to cancel builds if not web"
},
"prepare": {
"inputs": [
"package.json"
],
"outputs": [
"src/**/__generated__/**",
"src/types/v3/**",
"src/locales/**",
"src/abis/types/**",
"src/constants/tokenLists/**"
],
"dependsOn": []
},
"typecheck": {
"inputs": [
"src/**.ts",
"src/**.tsx"
],
"outputs": [],
"dependsOn": [
"prepare"
]
},
"check:circular": {},
"lint": {
"dependsOn": [
"typecheck"
]
},
"lint:fix": {
"dependsOn": [
"typecheck"
]
},
"//#staged:lint:fix": {
"outputs": []
},
"//#staged:format": {
"outputs": []
},
"test": {
"dependsOn": [
"prepare",
"typecheck",
"lint"
]
},
"snapshots": {
"dependsOn": [
"typecheck",
"lint"
]
},
"build:production": {
"inputs": [
"yarn.lock",
"**/package.json",
"{packages,apps}/src/**/*"
],
"outputs": [
"**/build/**"
],
"dependsOn": [
"prepare",
"build"
]
},
"build": {
"inputs": [
"yarn.lock",
"**/package.json",
"{packages,apps}/src/**.ts",
"{packages,apps}/src/**.tsx"
],
"outputs": [
"**/dist/**",
"./apps/next/.next/**"
],
"dependsOn": [
"^build"
]
},
"storybook#build": {
"dependsOn": [
"ui#build"
],
"inputs": [
"packages/ui/**"
],
"outputs": [
"apps/storybook/dist/**"
]
}
}
}