-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathnx.json
executable file
·60 lines (60 loc) · 1.21 KB
/
nx.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
{
"namedInputs": {
"src": ["{projectRoot}/src/**"],
"generated": ["{projectRoot}/.generated"]
},
"targetDefaults": {
"build": {
"inputs": ["src", "generated"],
"dependsOn": ["prepare", "^build", "build/restore"],
"cache": true
},
"build/restore": {
"dependsOn": [],
"cache": true
},
"prepare": {
"outputs": ["{projectRoot}/.generated"],
"dependsOn": ["^prepare"],
"cache": true
},
"start": {
"dependsOn": ["prepare"],
"cache": false
},
"package": {
"cache": true
},
"publish": {
"dependsOn": ["package"],
"cache": false
},
"test/unit": {
"dependsOn": ["prepare", "test/unit/restore", "test/unit/build"],
"cache": true
},
"test/unit/restore": {
"dependsOn": ["build/restore"],
"cache": true
},
"test/components": {
"dependsOn": ["prepare"],
"cache": false
},
"test/components/update": {
"dependsOn": [],
"cache": false
},
"test/e2e": {
"dependsOn": [],
"cache": false
},
"test/e2e/update": {
"dependsOn": [],
"cache": false
}
},
"affected": {
"defaultBase": "main"
}
}