-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathturbo.json
More file actions
43 lines (43 loc) · 1.17 KB
/
turbo.json
File metadata and controls
43 lines (43 loc) · 1.17 KB
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
{
"$schema": "https://turborepo.org/schema.json",
"//": "XXX: the line below is EXTREMELY IMPORTANT. This does most of the work of binding playwright to the browser list from the docker container. THIS SHOULD NOT BE REMOVED as it affects docker builds and CI.",
"globalPassThroughEnv": ["PLAYWRIGHT_BROWSERS_PATH"],
"tasks": {
"@esnet/esnet-tokens#build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"@esnet/packets-ui-css#build": {
"dependsOn": ["@esnet/esnet-tokens#build"],
"outputs": ["dist/**"]
},
"@esnet/packets-ui-react#build": {
"dependsOn": ["@esnet/packets-ui-css#build", "^build"],
"outputs": ["dist/**"]
},
"@esnet/packets-ui-web#build": {
"dependsOn": ["@esnet/packets-ui-css#build", "^build"],
"outputs": ["dist/**"]
},
"build": {
"dependsOn": ["@esnet/esnet-tokens#build", "^build"],
"outputs": ["dist/**"]
},
"lint": {
"outputs": []
},
"dev": {
"cache": false,
"persistent": true
},
"clean": {
"cache": false
},
"test": {
"cache": false
},
"test:updatesnaps": {
"cache": false
}
}
}