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
|
// Compiles additional names directly provided by other releases.
import {input, templateCompositeFrom} from '#composite';
import {exitWithoutDependency, exposeDependency}
from '#composite/control-flow';
import {withFlattenedList, withPropertyFromList} from '#composite/data';
import withOtherReleases from './withOtherReleases.js';
export default templateCompositeFrom({
annotation: `sharedAdditionalNameList`,
compose: false,
steps: () => [
withOtherReleases(),
exitWithoutDependency({
dependency: '#otherReleases',
mode: input.value('empty'),
value: input.value([]),
}),
withPropertyFromList({
list: '#otherReleases',
property: input.value('additionalNames'),
}),
withFlattenedList({
list: '#otherReleases.additionalNames',
}),
exposeDependency({
dependency: '#flattenedList',
}),
],
});
|