-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgulpfile.js
More file actions
52 lines (44 loc) · 1.32 KB
/
gulpfile.js
File metadata and controls
52 lines (44 loc) · 1.32 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
'use strict';
var gulp = require('gulp');
var jshint = require('gulp-jshint');
var jscs = require('gulp-jscs');
var istanbul = require('gulp-istanbul');
var mocha = require('gulp-mocha');
var bump = require('gulp-bump');
var _ = require('lodash');
var paths = {
lint: ['./gulpfile.js', './lib/**/*.js'],
tests: ['./test/**/*.js', '!test/{temp,temp/**}'],
source: ['./lib/*.js']
};
gulp.task('lint', function () {
return gulp.src(paths.lint)
.pipe(jshint('.jshintrc'))
.pipe(jscs())
.pipe(jshint.reporter('jshint-stylish'));
});
gulp.task('istanbul', function (cb) {
gulp.src(paths.source)
.pipe(istanbul()) // Covering files
.on('finish', function () {
gulp.src(paths.tests)
.pipe(mocha())
.pipe(istanbul.writeReports()) // Creating the reports after tests runned
.on('finish', function() {
process.chdir(__dirname);
cb();
});
});
});
gulp.task('bump', ['test'], function () {
var bumpType = process.env.BUMP || 'patch'; // major.minor.patch
return gulp.src(['./package.json'])
.pipe(bump({ type: bumpType }))
.pipe(gulp.dest('./'));
});
gulp.task('watch', function () {
gulp.run('istanbul');
gulp.watch(_.union(paths.lint, paths.tests), ['istanbul']);
});
gulp.task('test', ['lint', 'istanbul']);
gulp.task('release', ['bump']);