shampoo
Version:
The ultimate Grunt Browserify task. Run once or watch files for changes. Uses a cache for super speed (instant builds). CoffeeScript support built in. Alias mappings. Shimming. Everything in one easy to use package.
17 lines (16 loc) • 358 B
JavaScript
module.exports = {
// The "default" is run when you run "shampoo" without any arguments
default: {
options: {},
files: {
'./build.js': './source'
}
},
// Run when you call "shampoo custom". Make as many custom builds as you want.
custom: {
options: {},
files: {
'./build.js': './source'
}
}
};