When creating a new bundl collection, you can pass some options...
var Bundl = require('bundl');
var options = {...};
new Bundl(targets, options);Should the destination directories be emptied before running the bundl pipeline? Default is false.
clean: trueOptions for concatenating multiple files together. Default glue is \n.
concat: {
glue: ','
}If provided, devserver will remap request paths using this function before returning file contents.
liveRequestPathMap: function (browserPath) {
return browserPath.split('javascripts/').pop();
}Specify the destination directory for your bundles. Default is process.cwd() + '/bundled'.
outputDir: '../dist'Prevent some log messages from showing. Default is false.
quiet: trueSpecify the source directory for your targets. Default is process.cwd().
srcDir: './src/javascripts'Specify the directory to watch for changes. Useful with devserver. Default is srcDir.
watch: './src/javascripts'