This is the template project that's checked out and configured when you run the bando-up command from ljsthw-bandolier. This is where the code really lives.
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.
 
 
 
 
bandolier-template/commands/rendered.js

20 lines
487 B

export const description = "Generates the rendered content.";
export const options = [
["--source", "the source directory", "./rendered/"]
];
export const main = async (opts) => {
process.on('unhandledRejection', e => {
console.error(e)
process.exit(1)
})
process.chdir(opts.source);
const build_mod = await import('../node_modules/@jamcart/7ty/src/build.js');
console.log("---- RUNNING BUILD");
await build_mod.default({ watch: false });
process.exit(0);
}