-
Notifications
You must be signed in to change notification settings - Fork 12
/
turbo.json
157 lines (157 loc) · 3.88 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["turbo.json"],
"pipeline": {
"packages": {
"inputs": ["packages/*"]
},
"prebuild": {
"cache": true
},
"dev": {
"dependsOn": ["^dev"],
"cache": false
},
"dev:setup": {
"dependsOn": ["^dev:setup"],
"cache": false
},
"build": {
"dependsOn": ["prebuild", "^build"],
"outputs": ["dist/**"],
"inputs": ["src/**", "package.json", "tsconfig.json", "tsconfig_cjs.json"]
},
"build:dirty": {
"dependsOn": ["^build:dirty"],
"outputs": ["dist/**"],
"inputs": ["src/**", "package.json", "tsconfig.json", "tsconfig_cjs.json"]
},
"@cypherock/cysync-ui#build": {
"dependsOn": ["prebuild", "^build"],
"outputs": ["dist/**"],
"inputs": [
"!src/assets/icons/generated/**",
"src/**",
"package.json",
"tsconfig.json",
"tsconfig_cjs.json"
]
},
"@cypherock/cysync-ui#prebuild": {
"cache": true,
"outputs": ["src/assets/icons/generated/**"],
"inputs": ["icons/**"]
},
"@cypherock/cysync-core#prebuild": {
"dependsOn": ["^build"],
"cache": true,
"outputs": ["src/generated/**"],
"inputs": [
"package.json",
"scripts/prebuild.sh",
"scripts/dependencies/index.js",
"scripts/dependencies/package.json"
]
},
"@cypherock/cysync-core#build": {
"dependsOn": ["prebuild", "^build"],
"outputs": ["dist/**"],
"inputs": [
"src/**",
"package.json",
"tsconfig.json",
"tsconfig_cjs.json",
"!src/generated/**"
]
},
"@cypherock/cysync-core-workers#build": {
"dependsOn": ["^build"],
"outputs": ["lib/**"],
"inputs": ["src/**", "package.json", "tsconfig.json"]
},
"@cypherock/cysync-cli#dev": {
"dependsOn": ["build"],
"cache": false
},
"@cypherock/cysync-desktop#build": {
"dependsOn": ["@cypherock/cysync-desktop#prebuild", "^build"],
"outputs": ["dist/**", "dist-electron/**"],
"inputs": [
"!renderer/generated/**",
"src/**",
"renderer/**",
"public/**",
"html/**",
"package.json",
"tsconfig.json",
"tsconfig.node.json",
"vite.config.js",
"vite.loading.config.js"
]
},
"make": {
"dependsOn": ["build", "^make"],
"cache": false
},
"pre-commit": {
"cache": false
},
"test": {
"dependsOn": ["build"],
"inputs": ["src/**", "tests/**"],
"outputs": ["coverage/**"]
},
"e2e": {
"dependsOn": ["build"],
"inputs": ["e2e/**"],
"outputs": [
"playwright-report/**",
"test-results/**",
"screenshots/**",
"videos/**"
]
},
"lint:check": {
"inputs": ["src/**", "tests/**"]
},
"lint": {
"inputs": ["src/**", "tests/**"],
"cache": false
},
"pretty:check": {
"inputs": ["src/**", "tests/**"]
},
"pretty": {
"inputs": ["src/**", "tests/**"],
"cache": false
},
"storybook": {
"cache": false
},
"build:storybook": {
"cache": true
},
"@cypherock/cysync-ui#build:storybook": {
"dependsOn": ["^build"],
"inputs": ["src/**", "package.json", ".storybook/**"],
"outputs": ["storybook-static/**"],
"cache": true
},
"@cypherock/cysync-automation-scripts#erc20-diff": {
"dependsOn": ["build"],
"cache": false
},
"@cypherock/cysync-automation-scripts#gen-erc20-list": {
"dependsOn": ["build"],
"cache": false
},
"@cypherock/cysync-automation-scripts#download-erc20-images": {
"dependsOn": ["build"],
"cache": false
},
"@cypherock/cysync-automation-scripts#gen-translations": {
"dependsOn": ["build"],
"cache": true
}
}
}