forked from jsdoc/jsdoc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gulpfile.js
62 lines (52 loc) · 1.43 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
/* eslint max-nested-callbacks: 0 */
'use strict';
var eslint = require('gulp-eslint');
var exec = require('child_process').exec;
var gulp = require('gulp');
var jsonEditor = require('gulp-json-editor');
var path = require('path');
var util = require('util');
function execCb(cb, err, stdout, stderr) {
console.log(stdout);
console.error(stderr);
cb(err);
}
var options = {
coveragePaths: [
'*.js',
'lib/**/*.js',
'plugins/*.js'
],
lintPaths: [
'*.js',
'lib/**/*.js',
'plugins/*.js',
'templates/default/*.js',
'templates/haruki/*.js',
'test/specs/**/*.js'
],
nodeBin: path.resolve(__dirname, './jsdoc.js'),
nodePath: process.execPath
};
gulp.task('bump', function() {
gulp.src('./package.json')
.pipe(jsonEditor({
revision: String( Date.now() )
}))
.pipe(gulp.dest('./'));
});
gulp.task('coverage', function(cb) {
var cmd = util.format('./node_modules/.bin/nyc --reporter=html %s -T', options.nodeBin);
exec(cmd, execCb.bind(null, cb));
});
gulp.task('lint', function() {
return gulp.src(options.lintPaths)
.pipe(eslint())
.pipe(eslint.formatEach())
.pipe(eslint.failOnError());
});
gulp.task('test', function(cb) {
var cmd = util.format('%s "%s" -T', options.nodePath, options.nodeBin);
exec(cmd, execCb.bind(null, cb));
});
gulp.task('default', ['lint', 'test']);