-
Notifications
You must be signed in to change notification settings - Fork 2
/
gulpfile.js
91 lines (72 loc) · 1.6 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
'use strict';
var gulp = require('gulp');
var gutil = require('gulp-util');
var istanbul = require('gulp-istanbul');
var mocha = require('gulp-mocha');
var plato = require('gulp-plato');
var runSequence = require('run-sequence');
var coveralls = require('gulp-coveralls');
var taskListing = require('gulp-task-listing');
var debug = require('gulp-debug');
var srcGlob = [
'./slushfile.js',
'./slush/**/*.js'
];
var testGlob = ['./test/**/*.js']
var mochaOpts = {
reporter: 'nyan'
},
istanbulOpts = {
includeUntested: true,
debug: true
};
function test(cb) {
function runner() {
return gulp
.src(testGlob)
.pipe(mocha(mochaOpts))
// .on('error', function (err) {
// gutil.log(err);
// this.emit('end');
// })
.pipe(istanbul.writeReports())
.on('end', cb);
}
gulp
.src(srcGlob)
//.pipe(debug())
.pipe(istanbul(istanbulOpts))
.pipe(istanbul.hookRequire())
.on('finish', runner)
.on('error', gutil.log);
}
function complexity() {
var jsHintArgs = {
options: {
strict: true
}
},
complexityArgs = {
trycatch: true
},
platoArgs = {
jshint: jsHintArgs,
complexity: complexityArgs
};
gulp.src(['slushfile.js'])
.pipe(plato('plato', platoArgs));
}
function lcov() {
gulp
.src('coverage/**/lcov.info')
.pipe(coveralls());
}
function ci(cb) {
runSequence('test', 'complexity', cb);
}
gulp
.task('default', taskListing)
.task('test', test)
.task('complexity', complexity)
.task('coveralls', lcov)
.task('ci', ci);