Scenario generator for vore roleplay and story ideas. https://scenario-generator.deliciousreya.net/responses
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
vore-scenario-generator/src/build/bundle-client.ts

16 lines
530 B

import { DEFAULT_IN_PATH, DEFAULT_OUT_PATH, getBundle, writeBundle } from './bundler.js';
async function main(inPath: string = DEFAULT_IN_PATH, outPath: string = DEFAULT_OUT_PATH) {
const bundle = await getBundle(inPath)
await writeBundle(bundle, outPath)
}
main(...process.argv.slice(2)).then(() => {
console.info('generated client helpers');
}).catch((err) => {
console.error('could not generate client helpers');
console.error(err && 'stack' in err ? err.stack : err);
throw err;
}).catch(() => {
process.exit(1);
});