-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
46 lines (40 loc) · 1.24 KB
/
gulpfile.js
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
'use strict';
var gulp = require('gulp-help')(require('gulp')),
del = require('del'),
jshint = require('gulp-jshint'),
notify = require('gulp-notify'),
rename = require('gulp-rename'),
uglify = require('gulp-uglify');
// Clean
gulp.task('clean', 'Clean up!', function() {
return del('jquery.alertable.min.js');
});
// Minify
gulp.task('minify', 'Minify it!', ['jshint', 'clean'], function() {
return gulp.src('jquery.alertable.js')
.pipe(uglify({
preserveComments: 'license'
}))
.on('error', function(err) {
notify(err).write(err);
this.emit('end');
})
.pipe(rename({ suffix: '.min' }))
.pipe(gulp.dest(__dirname));
});
// JSHint
gulp.task('jshint', 'Lint it!', function() {
return gulp.src('jquery.alertable.js')
.pipe(jshint('.jshintrc'))
.pipe(jshint.reporter('jshint-stylish'))
.on('error', function(err) {
notify(err).write(err);
this.emit('end');
});
});
// Watch for changes
gulp.task('watch', 'Watch for changes!', function() {
gulp.watch('jquery.alertable.js', ['minify']);
});
// Default
gulp.task('default', 'The default task.', ['watch']);