-
Notifications
You must be signed in to change notification settings - Fork 31
/
gulpfile.js
80 lines (65 loc) · 1.64 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
78
79
80
/* globals require, __dirname */
/* jshint node:true */
'use strict'
var gulp = require('gulp')
var lodash = require('lodash')
var path = require('path')
var paths = require('./paths')
var plato = require('plato')
var Server = require('karma').Server
var standard = require('gulp-standard')
var karmaConfig = path.join(__dirname, 'karma.conf.js')
gulp.task('clean', function () {
var del = require('del')
return del([
'build'
])
})
gulp.task('complexity', function (done) {
var callback = function () {
done()
}
plato.inspect(paths.lint, 'build/complexity', {title: 'prerender', recurse: true}, callback)
})
gulp.task('lint', function () {
return gulp
.src(paths.lint)
.pipe(standard())
.pipe(standard.reporter('default', {
breakOnError: true,
quiet: true
}))
})
gulp.task('tdd', function (done) {
gulp.watch(paths.all, ['jscs', 'lint'])
var config = testConfig(
{
autoWatch: true,
browsers: ['PhantomJS'],
configFile: karmaConfig,
singleRun: false
}
)
var server = new Server(config, done)
server.start()
})
gulp.task('test', ['lint'], function (done) {
var config = testConfig(
{
configFile: karmaConfig,
singleRun: true,
reporters: ['progress', 'coverage', 'threshold']
}
)
var server = new Server(config, done)
server.start()
})
gulp.task('default', ['complexity', 'test'])
var testConfig = function (options) {
var travisDefaultOptions = {
browsers: ['Firefox'],
reporters: ['dots', 'coverage', 'threshold']
}
var travisOptions = process.env.TRAVIS && travisDefaultOptions
return lodash.assign(options, travisOptions)
}