Add sortedAppList variable

This commit is contained in:
Sam Carlton 2020-12-11 14:27:02 -06:00
parent 63c405943e
commit 4c2e70c95f

View file

@ -4,9 +4,10 @@ import homebrewList from '~/static/homebrew-list.json'
import { byTimeThenNull } from '~/helpers/sort-list.js'
export const sortedAppList = appList.sort(byTimeThenNull)
export const allList = [
...appList.sort(byTimeThenNull),
...sortedAppList,
...homebrewList,
...gameList,
]