UNPKG

347 Btext/coffeescriptView Raw
1gulp = require 'gulp'
2gutil = require 'gulp-util'
3
4gulp.on 'err', (e) ->
5gulp.on 'task_err', (e) ->
6 gutil.log e.err.stack
7 if process.env.CI
8 gutil.log e
9 process.exit 1
10
11gulp.task 'watch', ->
12 gulp.watch [
13 'src/*.coffee'
14 ], [
15 'spec'
16 ]
17
18require('./gulp/build')(gulp)
19require('./gulp/spec')(gulp)
20require('./gulp/bump')(gulp)
\No newline at end of file