« get me outta code hell
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import {sortAlphabetically} from '#sort'; export default ({ documentModes: {allInOne}, thingConstructors: {Artist}, }) => ({ title: `Process artists file`, file: 'artists.yaml', documentMode: allInOne, documentThing: Artist, sort({artistData}) { sortAlphabetically(artistData); }, });