1
0
Fork 0
freesewing/sites/backend/prebuild.mjs
2023-07-31 18:16:45 +02:00

14 lines
339 B
JavaScript

import { prebuildRunner } from '../shared/prebuild/runner.mjs'
/*
* This handles the prebuild step for the FreeSewing backend
* It runs via an NPM run script, so in a pure NodeJS context
*
* See `sites/org/prebuild.mjs` for an example with inline comments
*/
prebuildRunner({
site: 'backend',
prebuild: {
i18n: true,
},
})