-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.js
78 lines (64 loc) · 1.84 KB
/
example.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
'use strict';
var argv = require('minimist')(process.argv.slice(2));
var through = require('through2');
var istanbul = require('gulp-istanbul');
var eslint = require('gulp-eslint');
var mocha = require('gulp-mocha');
var base = require('base');
var pipeline = require('./');
var runtimes = require('base-runtimes');
var option = require('base-option');
var task = require('base-task');
var fs = require('base-fs');
// plugins
var app = base()
.use(task())
.use(option())
.use(runtimes())
.use(pipeline())
.use(fs())
var lint = ['index.js', 'utils.js', 'test/*.js'];
var tasks = argv._.length ? argv._ : ['default'];
app.plugin('lint', function(options, stream) {
return stream
.pipe(eslint())
.pipe(eslint.format());
});
app.plugin('coverage', function(options, stream) {
return stream
.pipe(istanbul({includeUntested: true}))
.pipe(istanbul.hookRequire());
});
app.plugin('mocha', function(options, stream) {
return stream.pipe(mocha(options));
});
app.plugin('reports', function(options, stream) {
return stream
.pipe(istanbul.writeReports())
.pipe(istanbul.writeReports({
reporters: ['html', 'text', 'text-summary'],
reportOpts: {dir: 'coverage', file: 'summary.txt'}
}))
});
app.task('lint', function() {
return app.src(lint)
.pipe(app.pipeline('lint'))
});
app.task('coverage', function() {
return app.src(lint)
.pipe(app.pipeline('coverage'));
});
app.task('test', ['coverage'], function() {
return app.src('test/*.js')
.pipe(app.pipeline('mocha'))
.pipe(istanbul.writeReports())
// .pipe(istanbul.writeReports({
// reporters: ['html', 'text', 'text-summary'],
// reportOpts: {dir: 'coverage', file: 'summary.txt'}
// }));
});
app.task('default', ['lint', 'test']);
app.build(tasks, function(err) {
if (err) return console.log(err);
console.log('done!');
});