-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathgulpfile.babel.js
54 lines (47 loc) · 1.97 KB
/
gulpfile.babel.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
import gulp from 'gulp'
import mocha from 'gulp-mocha'
import jshint from 'gulp-jshint'
import istanbul from 'gulp-istanbul'
import babel from 'gulp-babel'
import sourcemaps from 'gulp-sourcemaps'
//TODO add this back at some point. There's a babel compilation issue in using this with gulp
//gulp.task('lint', () => {
// // ESLint ignores files with "node_modules" paths.
// // So, it's best to have gulp ignore the directory as well.
// // Also, Be sure to return the stream from the task;
// // Otherwise, the task may end before the stream has finished.
// return gulp.src(['lib/**/*.js', 'src/config.js', 'test/node/**/*.js', '!node_modules/**'])
// // eslint() attaches the lint output to the "eslint" property
// // of the file object so it can be used by other modules.
// .pipe(eslint())
// // eslint.format() outputs the lint results to the console.
// // Alternatively use eslint.formatEach() (see Docs).
// .pipe(eslint.format())
// // To have the process exit with an error code (1) on
// // lint error, return the stream and pipe to failAfterError last.
// .pipe(eslint.failAfterError());
//});
gulp.task('test', function () {
return gulp.src('./apis/**/**.js')
// Right there
.pipe(istanbul({includeUntested: true}))
.on('finish', function () {
gulp.src('./test/**/**.js')
.pipe(mocha({reporter: 'spec'}))
.pipe(istanbul.writeReports({
dir: './reports/unit-test-coverage',
reporters: [ 'lcov' ],
reportOpts: { dir: './reports/unit-test-coverage'}
}));
});
});
gulp.task('it:test', function () {
return gulp.src('./it-test/**/**.js')
.pipe(mocha({ reporter: 'spec', timeout: 20000 }));
});
gulp.task('build', function () {
return gulp.src('./lib/**/*.js')
.pipe(sourcemaps.init())
.pipe(babel())
.pipe(gulp.dest('dist'));
});