-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathturbo.json
More file actions
47 lines (45 loc) · 884 Bytes
/
turbo.json
File metadata and controls
47 lines (45 loc) · 884 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
39
40
41
42
43
44
45
46
47
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"test-unit" : {
"dependsOn": []
},
"test": {
"dependsOn": [
"^test"
]
},
"lint": {
"outputs": []
},
"deploy" : {
"dependsOn": ["build"]
},
"dev": {
"cache": false
},
"@3squared/forge-ui#make-icons" : {
"inputs" : ["src/icons/icons/*.svg", "src/icons/icons.ts"],
"outputs" : ["src/icons/icons.ts"]
},
"@3squared/forge-ui#create-css": {
"inputs": [
"src/styles/**"
],
"outputs": [
"dist/styles/**"
]
},
"@3squared/forge-ui#build": {
"dependsOn": [
"@3squared/forge-ui#make-icons",
"@3squared/forge-ui#create-css"
],
"outputs": []
}
}
}