Skip to content

Commit

Permalink
Allow for file watching with gulp.
Browse files Browse the repository at this point in the history
  • Loading branch information
torjusti committed Apr 25, 2014
1 parent fe11806 commit adcc00d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions gulpfile.js
Expand Up @@ -10,4 +10,8 @@ gulp.task('default', function() {
.pipe(rename({suffix: '.min'}))
.pipe(uglify({preserveComments: 'some'}))
.pipe(gulp.dest('lib'))
});

gulp.task('watch', function() {
gulp.watch('src/default.coffee', ['default']);
});

0 comments on commit adcc00d

Please sign in to comment.