This repository has been archived by the owner on Jun 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
77 lines (63 loc) · 1.69 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
67
68
69
70
71
72
73
74
75
76
77
/*globals require, __dirname */
/* jshint node:true */
'use strict';
var gulp = require('gulp');
var jscs = require('gulp-jscs');
var jshint = require('gulp-jshint');
var Server = require('karma').Server;
var karmaConfig = __dirname + '/karma.conf.js';
var lodash = require('lodash');
var paths = require('./paths');
var plato = require('plato');
gulp.task('complexity', function (done) {
var callback = function () {
done();
};
plato.inspect(paths.lint, 'complexity', {title: 'prerender', recurse: true}, callback);
});
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) {
var config = testConfig(
{
configFile: karmaConfig,
singleRun: true,
reporters: ['progress', 'coverage', 'threshold']
}
);
var server = new Server(config, done);
server.start();
});
gulp.task('tdd', function (done) {
gulp.watch(paths.all, ['jscs', 'lint', 'complexity']);
var config = testConfig(
{
autoWatch: true,
browsers: ['PhantomJS'],
configFile: karmaConfig,
singleRun: false
}
);
var server = new Server(config, done);
server.start();
});
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('jscs', function () {
return gulp
.src(paths.lint)
.pipe(jscs('.jscsrc'));
});
gulp.task('default', ['jscs', 'lint', 'complexity', 'test']);