Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
bundler.on("end", () => {
const bundling = Object.keys(bundles).length > 0;
if(options.json) {
mkdirp.sync(path.dirname(options.json));
fs.writeFileSync(
options.json,
JSON.stringify(output.compositions(processor), null, 4)
);
}
if(!options.css) {
return;
}
const common = processor.dependencies();
mkdirp.sync(path.dirname(options.css));
// Write out each bundle's CSS files (if they have any)
each(
Object.keys(bundles).map((key) => ({
bundle : key,
files : bundles[key],