Skip to content

Commit

Permalink
added build task
Browse files Browse the repository at this point in the history
  • Loading branch information
mwittig committed Jan 2, 2017
1 parent 0b10da9 commit 264939b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions gulpfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,11 @@ gulp.task('default', ->
.pipe(plumber()) # This will keep pipes working after error event
.pipe(coffee(bare: yes))
.pipe(gulp.dest('lib'))
)

gulp.task('build', ->
gulp.src('src/**/*.coffee')
.pipe(plumber()) # This will keep pipes working after error event
.pipe(coffee(bare: yes))
.pipe(gulp.dest('lib'))
)

0 comments on commit 264939b

Please sign in to comment.