-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.coffee
51 lines (36 loc) · 1010 Bytes
/
gulpfile.coffee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
gulp = require('gulp')
plumber = require('gulp-plumber')
gutil = require('gulp-util')
coffee = require('gulp-coffee')
# Code linting
coffeelint = require('gulp-coffeelint')
# Notifications for OSX
notify = require('gulp-notify')
errorHandler = notify.onError('Error: <%= error.message %>')
defaultTasks = [
'coffee'
]
coffeeFiles = 'src/*.coffee'
exampleFiles = 'examples/*.coffee'
buildCoffee = (src, dest) ->
gulp
.src(src)
.pipe(plumber({errorHandler}))
.pipe(coffee())
.on('error', gutil.log)
.pipe(gulp.dest(dest))
coffeelintTask = (src) ->
gulp
.src(src)
.pipe(plumber({errorHandler}))
.pipe(coffeelint())
.pipe(coffeelint.reporter())
.on('error', gutil.log)
gulp.task 'coffee', ['coffeelint'], ->
buildCoffee(coffeeFiles, './')
buildCoffee(exampleFiles, './examples')
gulp.task 'coffeelint', ->
coffeelintTask(coffeeFiles)
gulp.task 'default', defaultTasks, ->
gulp.watch coffeeFiles, ['coffee']
gulp.watch exampleFiles, ['coffee']