forked from darrylwest/mock-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
42 lines (33 loc) · 1.01 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
/**
* standard gulp build file for browser client projects
*/
'use strict';
var gulp = require('gulp'),
gutil = require('gulp-util'),
plumber = require('gulp-plumber'),
jshint = require('gulp-jshint'),
mocha = require('gulp-mocha');
var errorHandler = function(err) {
gutil.beep();
console.log( err );
};
var paths = {
src: 'lib/*.js',
tests: 'test/*.js'
};
gulp.task('jshint', function() {
return gulp.src([ paths.src, paths.tests ], { read:false } )
.pipe( plumber({ errorHandler:errorHandler }) )
.pipe( jshint() )
.pipe( jshint.reporter('jshint-stylish') );
});
gulp.task('mocha', function() {
return gulp.src( paths.tests, { read:false } )
.pipe( plumber({ errorHandler:errorHandler }) )
.pipe( mocha({ reporter:'spec' }) );
});
gulp.task('watch', function () {
gulp.watch([paths.src, paths.tests], gulp.series('test'));
});
gulp.task('test', gulp.series('jshint', 'mocha'));
gulp.task('default', gulp.series( 'test', 'watch' ));