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.
15 lines (13 loc) • 363 B
text/coffeescript
module.exports =
# The "default" is run when you run "shampoo" without any arguments
default:
options: {
watch: false
}
files:
"./tmp/build.js": "./example/simple/alpha"
# Run when you call "shampoo custom". Make as many custom builds as you want.
custom:
options: {}
files:
"./build.js": "./source"