1import{execSync}from"bun";23try{4// Precompile Pug templates in the `src` directory to the `dist` directory
5execSync("pug src -o dist");6console.log("Pug templates compiled successfully.");7}catch(error){8console.error("Failed to compile Pug templates:",error);9}