Compile CoffeeScript by default when initializing watch task

This commit is contained in:
Juan Cruz Viotti 2015-05-05 00:21:30 -04:00
parent 144a155208
commit cf9b23b987

View File

@ -54,6 +54,6 @@ gulp.task 'build', [
'man'
]
gulp.task 'watch', [ 'test', 'lint' ], ->
gulp.task 'watch', [ 'test', 'lint', 'coffee' ], ->
gulp.watch([ OPTIONS.files.coffee, OPTIONS.files.json ], [ 'coffee' ])
gulp.watch([ OPTIONS.files.man ], [ 'man' ])