-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulpfile.coffee
More file actions
55 lines (40 loc) · 1.1 KB
/
gulpfile.coffee
File metadata and controls
55 lines (40 loc) · 1.1 KB
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
52
53
54
gulp = require('gulp')
plumber = require('gulp-plumber')
gutil = require('gulp-util')
coffee = require('gulp-coffee')
# Angular
ngAnnotate = require('gulp-ng-annotate')
# Code linting
coffeelint = require('gulp-coffeelint')
# Code minification
uglify = require('gulp-uglify')
# Notifications for OSX
notify = require('gulp-notify')
# Renaming the minified file
rename = require('gulp-rename')
errorHandler = notify.onError('Error: <%= error.message %>')
coffeeFiles = 'src/angular-imgur-upload.coffee'
gulp.task 'coffee', ->
gulp
.src(coffeeFiles)
.pipe(plumber({errorHandler}))
.pipe(coffee())
.pipe(ngAnnotate())
.on('error', gutil.log)
.pipe(gulp.dest('./dist'))
gulp.task 'coffeelint', ->
gulp
.src(coffeeFiles)
.pipe(plumber({errorHandler}))
.pipe(coffeelint())
.pipe(coffeelint.reporter())
.on('error', gutil.log)
gulp.task 'build', ['coffeelint', 'coffee'], ->
gulp
.src('dist/angular-imgur-upload.js')
.pipe(uglify())
.pipe rename
extname: '.min.js'
.pipe(gulp.dest('dist/'))
gulp.task 'watch', ->
gulp.watch coffeeFiles, ['build']