Skip to content

Instantly share code, notes, and snippets.

@hunterloftis
Created February 19, 2014 23:32
Show Gist options
  • Save hunterloftis/9103845 to your computer and use it in GitHub Desktop.
Save hunterloftis/9103845 to your computer and use it in GitHub Desktop.
builder
.on('building', console.log.bind(console, 'building...'))
.on('built', console.log.bind(console, 'built.'))
.on('ready', console.log.bind(console, 'ready.'))
.on('change', console.log.bind(console, 'changed:'))
.on('watching', function(files) {
console.log('watching', files.length, 'files.');
})
.build();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment