-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGulpfile.js
65 lines (55 loc) · 1.59 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
var gulp = require('gulp');
var jshint = require('gulp-jshint');
var jscs = require('gulp-jscs');
var jasmine = require('gulp-jasmine');
var istanbul = require('gulp-istanbul');
var nsp = require('gulp-nsp');
var paths = {
'spec' : 'spec/**/*.js',
'lib' : 'lib/**/*.js'
};
// Proofread the code
gulp.task('lint', function() {
return gulp.src([paths.lib, paths.spec])
.pipe(jshint())
.pipe(jshint.reporter('default'))
.pipe(jshint.reporter('fail'));
});
// Run the unit tests without any coverage calculations
gulp.task('test', function() {
return gulp.src([paths.spec])
.pipe(jasmine());
});
// Task that calculates the unit test coverage for the module
gulp.task('coverage', function() {
return gulp.src(paths.lib)
.pipe(istanbul())
.pipe(istanbul.hookRequire())
.on('finish', function() {
gulp.src([paths.spec])
.pipe(jasmine())
.pipe(istanbul.writeReports({
dir: 'build/coverage',
reportOpts: {dir: 'build/coverage'}
}));
});
});
gulp.task('style', function() {
return gulp.src(paths.lib)
.pipe(jscs());
});
gulp.task('security', function(cb) {
nsp({
package: __dirname + '/package.json',
stopOnError: true
}, cb);
});
gulp.task('default', ['lint', 'style', 'test', 'security']);
// alias watch === dev
gulp.task('watch', ['dev']);
// On change to JavaScript files, run lint & test tasks
// Do NOT run default: the style task breaks dev
gulp.task('dev', ['lint', 'test'], function() {
gulp.watch([paths.spec, paths.lib], ['lint', 'test']);
});
gulp.task('ci', ['default']);