mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Fetch formula status for homebrew
This commit is contained in:
parent
6338bff01c
commit
ec7a4eebff
7 changed files with 273 additions and 20 deletions
12
helpers/get-list.js
Normal file
12
helpers/get-list.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import appList from '~/static/app-list.json'
|
||||
import gameList from '~/static/game-list.json'
|
||||
import homebrewList from '~/static/homebrew-list.json'
|
||||
|
||||
import { byTimeThenNull } from '~/helpers/sort-list.js'
|
||||
|
||||
|
||||
export const allList = [
|
||||
...appList.sort(byTimeThenNull),
|
||||
...homebrewList,
|
||||
...gameList,
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue