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
|
{
"parts": [
{
"name": "somepart",
"pre": [],
"post": ["pluginomatic_onemoreplugin/partone"]
},
{
"name": "partlast",
"pre": ["pluginomatic_fintest/otherpart"],
"post": [],
"hooks": {
"somehookname": "pluginomatic_fintest/partlast:somehook"
}
},
{
"name": "partfirst",
"pre": [],
"post": ["pluginomatic_onemoreplugin/somepart"]
},
{
"name": "otherpart",
"pre": ["pluginomatic_fintest/somepart", "pluginomatic_otherplugin/main"],
"post": [],
"hooks": {
"somehookname": "pluginomatic_fintest/otherpart:somehook",
"morehook": "pluginomatic_fintest/otherpart:morehook",
"expressServer": "pluginomatic_fintest/otherpart:expressServer"
}
}
]
}
|