-
Notifications
You must be signed in to change notification settings - Fork 11
/
gulpfile.js
84 lines (70 loc) · 2.06 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
'use strict';
const path = require('path');
const gulp = require('gulp');
const excludeGitignore = require('gulp-exclude-gitignore');
const mocha = require('gulp-mocha');
const istanbul = require('gulp-istanbul');
const nsp = require('gulp-nsp');
const plumber = require('gulp-plumber');
const babel = require('gulp-babel');
const del = require('del');
const isparta = require('isparta');
// Initialize the babel transpiler so ES2015 files gets compiled
// when they're loaded
require('babel-core/register');
gulp.task('nsp', function (cb) {
nsp({ package: path.resolve('package.json') }, cb);
});
gulp.task('pre-test', function () {
return gulp.src('lib/**/*.js')
.pipe(excludeGitignore())
.pipe(istanbul({
includeUntested: true,
instrumenter: isparta.Instrumenter
}))
.pipe(istanbul.hookRequire());
});
gulp.task('test', gulp.series('pre-test', function (cb) {
let mochaErr;
gulp.src('test/**/*.js')
.pipe(plumber())
.pipe(mocha({ reporter: 'spec' }))
.on('error', function (err) {
mochaErr = err;
})
.pipe(istanbul.writeReports())
.on('end', function () {
cb(mochaErr);
});
}));
gulp.task('watch', function () {
gulp.watch(['lib/**/*.js', 'test/**'], ['test']);
});
gulp.task('clean', function () {
return del(['dist', 'demo_build']);
});
gulp.task('babel', gulp.series('clean', function () {
return gulp.src('lib/**/*.js')
.pipe(babel())
.pipe(gulp.dest('dist'));
}));
gulp.task('build-demo', function () {
return gulp.src('demo/**/*.js')
.pipe(babel())
.pipe(gulp.dest('demo_build'));
});
gulp.task('lib-demo', function () {
return gulp.src('lib/**/*.js')
.pipe(babel())
.pipe(gulp.dest('demo_build/lib'));
});
gulp.task('json-demo', function () {
return gulp.src('demo/**/*.json')
.pipe(gulp.dest('demo_build'));
});
gulp.task('watch-demo', function () {
gulp.watch(['demo/**/*.json'], ['json-demo']);
});
gulp.task('demo', gulp.series('build-demo', 'lib-demo', 'json-demo'));
gulp.task('prepublish', gulp.series('nsp', 'babel'));
gulp.task('default', gulp.series('test'));