forked from dalelotts/angular-bootstrap-datetimepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
55 lines (46 loc) · 1.25 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
/*globals require, __dirname */
/* jshint node:true */
'use strict';
var gulp = require('gulp');
var jshint = require('gulp-jshint');
var karma = require('karma').server;
var lodash = require('lodash');
var plato = require('gulp-plato');
var karmaConfig = __dirname + '/karma.conf.js';
var paths = require('./paths');
gulp.task('complexity', function () {
return gulp.src('src/**/*.js')
.pipe(plato('complexity'));
});
var testConfig = function (options) {
var travisOptions = process.env.TRAVIS &&
{
browsers: ['Firefox'],
reporters: ['dots', 'coverage', 'threshold']
};
return lodash.assign(options, travisOptions);
};
gulp.task('test', function (done) {
karma.start(testConfig(
{
configFile: karmaConfig,
singleRun: true,
reporters: ['progress', 'coverage', 'threshold']
}
), done);
});
gulp.task('tdd', function (done) {
gulp.watch(paths.all, ['lint']);
karma.start({
configFile: karmaConfig
}, done);
});
gulp.task('lint', function () {
return gulp
.src(paths.lint)
.pipe(jshint('.jshintrc'))
.pipe(jshint.reporter('default', {verbose: true}))
.pipe(jshint.reporter('jshint-stylish'))
.pipe(jshint.reporter('fail'));
});
gulp.task('default', ['lint', 'complexity', 'test']);