doesitarm/scripts/build-stork-index.js
2022-05-10 13:18:38 -05:00

12 lines
194 B
JavaScript

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