-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathturbo.rs.json
More file actions
38 lines (38 loc) · 926 Bytes
/
turbo.rs.json
File metadata and controls
38 lines (38 loc) · 926 Bytes
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
{
"$schema": "https://turbo.build/schema.json",
"extends": ["//"],
"tags": ["rust-crate"],
"tasks": {
"build": {
"dependsOn": ["^do:nothing"],
"outputs": ["dist/**/*"],
"outputLogs": "errors-only"
},
"test": {
"dependsOn": ["^do:nothing"],
"outputLogs": "errors-only"
},
"typecheck": {
"dependsOn": ["^do:nothing"],
"outputs": [],
"outputLogs": "errors-only"
},
"bench": {
"dependsOn": ["build"],
"cache": false,
"outputLogs": "errors-only"
},
"test:coverage": {
"dependsOn": ["^do:nothing"],
"cache": false,
"outputs": ["target/llvm-cov/**/*", "**/*.profraw"],
"outputLogs": "errors-only"
},
"test:flamegraph": {
"dependsOn": ["^do:nothing"],
"cache": false,
"outputs": ["**/flamegraph.svg", "target/flamegraph/**/*"],
"outputLogs": "errors-only"
}
}
}