forked from Orbs/jspm-git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
44 lines (36 loc) · 986 Bytes
/
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
'use strict';
var gulp = require('gulp');
var rimraf = require('gulp-rimraf');
var jshint = require('gulp-jshint');
var mocha = require('gulp-mocha');
var istanbul = require('gulp-istanbul');
var sources = {
temp: '.tmp',
lib: ['git.js'],
test: ['git.test.js']
};
gulp.task('default', ['clean', 'lint', 'mocha']);
gulp.task('clean', function() {
return gulp.src(sources.temp, {read: false}).pipe(rimraf());
});
gulp.task('lint', function() {
gulp.src(sources.lib).pipe(jshint());
});
gulp.task('mocha', function() {
gulp.src(sources.test, {read: false})
.pipe(mocha({ reporter: 'spec'}));
});
gulp.task('coverage', function(cb) {
gulp.src(sources.lib)
.pipe(istanbul())
.pipe(istanbul.hookRequire())
.on('finish', function() {
gulp.src(sources.test)
.pipe(mocha({ reporter: 'spec'}))
.pipe(istanbul.writeReports({
dir: '.tmp/coverage'
}))
.on('end', cb);
});
});
gulp.task('test', ['default']);