2022-07-20 13:10:54 -04:00
|
|
|
import {build} from '../src/prebuild.mjs'
|
|
|
|
|
2022-07-23 23:16:25 -05:00
|
|
|
// use a deny-list to keep locales that aren't ready out of the build
|
|
|
|
export const denyList = ['uk']
|
|
|
|
|
2022-07-20 13:10:54 -04:00
|
|
|
// call this here instead of in the src/prebuild.mjs so that build isn't called by other files importing that build function
|
2022-07-23 23:16:25 -05:00
|
|
|
build((loc) => denyList.indexOf(loc) === -1)
|