forked from assemble/assemble
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
32 lines (26 loc) · 858 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
'use strict';
var gulp = require('gulp');
var mocha = require('gulp-mocha');
var istanbul = require('gulp-istanbul');
var eslint = require('gulp-eslint');
var unused = require('gulp-unused');
gulp.task('coverage', function() {
return gulp.src(['index.js', 'lib/**/*.js'])
.pipe(istanbul({includeUntested: true}))
.pipe(istanbul.hookRequire());
});
gulp.task('mocha', ['coverage'], function() {
return gulp.src('test/*.js')
.pipe(mocha())
.pipe(istanbul.writeReports());
});
gulp.task('eslint', function() {
return gulp.src(['*.js', 'lib/**/*.js', 'test/*.js', 'bin/*.js'])
.pipe(eslint())
.pipe(eslint.format());
});
gulp.task('unused', function() {
return gulp.src(['index.js', 'lib/**/*.js', 'bin/*.js'])
.pipe(unused({keys: Object.keys(require('./lib/utils.js'))}))
});
gulp.task('default', ['mocha', 'eslint']);