blob: ccf57deb44b6a48ac2abe752fe1619e11107fde8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Gets all releases of the current track *except* this track itself;
// in other words, all other releases of the current track.
import {input, templateCompositeFrom} from '#composite';
export default templateCompositeFrom({
annotation: `withOtherReleases`,
outputs: ['#otherReleases'],
steps: () => [
{
dependencies: [input.myself(), 'allReleases'],
compute: (continuation, {
[input.myself()]: thisTrack,
['allReleases']: allReleases,
}) => continuation({
['#otherReleases']:
allReleases.filter(track => track !== thisTrack),
}),
},
],
});
|