Generate app variations with fake list

This commit is contained in:
Sam Carlton 2021-06-11 16:30:53 -05:00
parent 85254fe0f4
commit 2cca34a689
4 changed files with 119 additions and 40 deletions

View file

@ -55,7 +55,7 @@ class BuildLists {
name: 'app',
path: '/static/app-list.json',
buildMethod: async () => (await Promise.all([
buildFakeList({ totalApps: !isProduction ? 500 : 0 }),
!isProduction && buildFakeList(),
buildAppList()
])).flat(1)
},