-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulpfile.js
More file actions
32 lines (28 loc) · 802 Bytes
/
gulpfile.js
File metadata and controls
32 lines (28 loc) · 802 Bytes
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
const gulp = require('gulp')
, vfs = require('vinyl-fs')
, jshint = require('gulp-jshint')
, jscs = require('gulp-jscs')
, babel = require('gulp-babel')
, manifest = require('./package.json')
, config = manifest.babelOptions
, mocha = require('gulp-mocha');
gulp.task('jscs', function () {
vfs.src('./api/*.js')
.pipe(jscs({
esnext: true,
configPath: '.jscsrc'
}));
});
gulp.task('lint', function () {
vfs.src('./api/*.js')
.pipe(jshint())
.pipe(jshint.reporter('jshint-stylish'));
});
function test() {
return gulp.src(['tests/setup/node.js', 'tests/spec/**/*.js'], {read: false})
.pipe(mocha({reporter: 'dot', globals: config.mochaGlobals}));
}
gulp.task('test', ['jscs', 'lint'], function() {
require('babel/register');
return test();
});