forked from firebase/firebase-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
66 lines (56 loc) · 1.26 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
/**************/
/* REQUIRES */
/**************/
var gulp = require('gulp');
// File I/O
var exit = require('gulp-exit');
var eslint = require('gulp-eslint');
// Testing
var mocha = require('gulp-mocha');
var istanbul = require('gulp-istanbul');
var _ = require('lodash');
/****************/
/* FILE PATHS */
/****************/
var paths = {
js: [
'index.js',
'lib/**/*.js',
'commands/**/*.js'
],
tests: [
'test/**/*.spec.js'
]
};
/***********/
/* TASKS */
/***********/
// Lints the JavaScript files
gulp.task('lint', function() {
var filesToLint = _.union(paths.js, paths.tests);
return gulp.src(filesToLint)
.pipe(eslint())
.pipe(eslint.format())
.pipe(eslint.failAfterError());
});
// Runs the Mocha test suite
gulp.task('test', function() {
return gulp.src(paths.js)
.pipe(istanbul())
.pipe(istanbul.hookRequire())
.on('finish', function () {
gulp.src(paths.tests)
.pipe(mocha({
reporter: 'spec',
timeout: 5000
}))
.pipe(istanbul.writeReports())
.pipe(exit());
});
});
// Reruns the linter every time a JavaScript file changes
gulp.task('watch', function() {
gulp.watch(paths.js, ['lint']);
});
// Default task
gulp.task('default', ['lint', 'test']);