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