Merge pull request #39 from resin-io/feature/coffee-compile

Compile CoffeeScript by default when initializing watch task
This commit is contained in:
Juan Cruz Viotti 2015-05-05 06:49:45 -03:00
commit 2af54e2e28

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' ])