-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
57 lines (57 loc) · 1.45 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
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"//#format:check": {
"inputs": ["**/*.{yml,json,md,ts,tsx,js}"]
},
"//#ci": {},
"build": {
"dependsOn": ["clean:dist"],
"cache": false
},
"clean": {
"cache": false
},
"clean:dist": {
"cache": false
},
"logs": {},
"release": {
"dependsOn": ["zutron#build", "zutron#test:unit"]
},
"test:unit": {},
"test:e2e:reducers": {
"dependsOn": [
"zutron-example-reducers#build",
"zutron-example-separate-handlers#build",
"zutron-example-store-handlers#build"
]
},
"test:e2e:separate-handlers": {
"dependsOn": [
"zutron-example-reducers#build",
"zutron-example-separate-handlers#build",
"zutron-example-store-handlers#build",
"test:e2e:reducers"
]
},
"test:e2e:store-handlers": {
"dependsOn": [
"zutron-example-reducers#build",
"zutron-example-separate-handlers#build",
"zutron-example-store-handlers#build",
"test:e2e:separate-handlers"
]
},
"zutron-example-reducers#build": {
"dependsOn": ["zutron#build"]
},
"zutron-example-separate-handlers#build": {
"dependsOn": ["zutron#build", "zutron-example-reducers#build"]
},
"zutron-example-store-handlers#build": {
"dependsOn": ["zutron#build", "zutron-example-separate-handlers#build"]
}
}
}