-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulpfile.js
More file actions
57 lines (46 loc) · 1.45 KB
/
gulpfile.js
File metadata and controls
57 lines (46 loc) · 1.45 KB
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
var gulp = require('gulp')
, cache = require('gulp-cached')
, babel = require('gulp-babel')
, mocha = require('gulp-mocha')
, eslint = require('gulp-eslint')
, babelr = require('babel/register');
var watch_glob;
var all_glob = ['lib/**/*.js', 'test/**/*.js'];
function glob() {
return watch_glob || all_glob
}
gulp.task('default', ['watch']);
/**
* Watch lib & test files an on change
* lint, build and run mocha
*/
gulp.task('watch', function() {
// Do the tasks so it will cache them
// this way when you actually change something
// it only lints/tests what you changed
// gulp.start(['lint', 'test']);
gulp.watch(all_glob, function(event) {
watch_glob = ['test/_bootstrap.js', event.path];
gulp.start(['lint', 'test']);
});
});
gulp.task('test', function(){
return gulp.src(glob())
//.pipe(cache('test'))
.pipe(mocha({
compilers: { js: babelr }
}));
});
gulp.task('lint', function (param) {
return gulp.src(glob())
//.pipe(cache('linting'))
// 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 failOnError last.
.pipe(eslint.failOnError());
});