« get me outta code hell

data: Track: chop withAllReleases - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/data/composite/things/track/withOtherReleases.js
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2025-11-25 16:15:00 -0400
committer(quasar) nebula <qznebula@protonmail.com>2025-11-25 16:15:00 -0400
commit7cf701e6e44dbbd15694542969b48b6707ab0c24 (patch)
tree6e8ff13580b00a163d4d2faa161c314a0d0aae76 /src/data/composite/things/track/withOtherReleases.js
parent9c3f0a79ee38ee5a13617ed0406d42e579ed49f3 (diff)
data: Track: chop withAllReleases
Diffstat (limited to 'src/data/composite/things/track/withOtherReleases.js')
-rw-r--r--src/data/composite/things/track/withOtherReleases.js8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/data/composite/things/track/withOtherReleases.js b/src/data/composite/things/track/withOtherReleases.js
index bb3e8983..ccf57deb 100644
--- a/src/data/composite/things/track/withOtherReleases.js
+++ b/src/data/composite/things/track/withOtherReleases.js
@@ -3,21 +3,17 @@
 
 import {input, templateCompositeFrom} from '#composite';
 
-import withAllReleases from './withAllReleases.js';
-
 export default templateCompositeFrom({
   annotation: `withOtherReleases`,
 
   outputs: ['#otherReleases'],
 
   steps: () => [
-    withAllReleases(),
-
     {
-      dependencies: [input.myself(), '#allReleases'],
+      dependencies: [input.myself(), 'allReleases'],
       compute: (continuation, {
         [input.myself()]: thisTrack,
-        ['#allReleases']: allReleases,
+        ['allReleases']: allReleases,
       }) => continuation({
         ['#otherReleases']:
           allReleases.filter(track => track !== thisTrack),