-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
47 lines (41 loc) · 887 Bytes
/
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
'use strict';
// Include gulp and tools we'll use
var gulp = require('gulp');
var $ = require('gulp-load-plugins')();
var mocha = require('gulp-mocha');
var paths = {
js: [ '*.js' ]
};
// clear the console window
var clear = function () {
process.stdout.write('\u001B[2J\u001B[0;0f');
};
/**
* Lint task
*/
gulp.task('jshint', function () {
clear();
return gulp.src(paths.js)
.pipe($.jshint())
.pipe($.jshint.reporter('jshint-stylish'));
});
// Watch for file changes
gulp.task('lint', function () {
gulp.watch(paths.js, ['jshint']);
});
/**
* Test task
*/
gulp.task('runSpec', function () {
clear();
return gulp.src('./spec.js', { read: true })
.pipe(mocha({ reporter: 'list' } ));
});
// Watch for file changes
gulp.task('test', function () {
gulp.watch(paths.js, ['runSpec']);
});
/**
* Default task
*/
gulp.task('default', ['jshint', 'runSpec']);