Add build-stork-index node script

This commit is contained in:
Sam Carlton 2022-05-10 13:18:38 -05:00
parent e1168e90c2
commit b345523e41
2 changed files with 13 additions and 0 deletions

View file

@ -0,0 +1,12 @@
import {
downloadStorkExecutable,
buildIndex
} from '~/helpers/stork/executable.js'
;(async () => {
await downloadStorkExecutable()
await buildIndex()
process.exit()
})()