-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathgulpfile.js
82 lines (68 loc) · 1.49 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
81
82
var gulp = require('gulp');
var jshint = require('gulp-jshint');
var concat = require('gulp-concat');
var clean = require('gulp-clean');
var nodemon = require('gulp-nodemon');
var mocha = require('gulp-spawn-mocha');
var karma = require('karma').server;
/**
* House Keeping
*/
gulp.task('lint', function(){
return gulp.src([
'client/**/*.js',
'server/**/*.js',
'gulpfile.js',
'!client/lib/**'
])
.pipe(jshint())
.pipe(jshint.reporter('jshint-stylish'))
.pipe(jshint.reporter('fail'));
});
gulp.task('clean', function(){
return gulp.src('./dist/*', { read: false })
.pipe(clean());
});
/**
* Environments
*/
gulp.task('develop', function () {
nodemon({
script: 'server.js',
env: { 'NODE_ENV': 'development' }
})
.on('change', ['lint'])
.on('restart', function () {
console.log('Server Restarted!');
});
});
/**
* Tests
*/
gulp.task('mocha', function(){
return gulp.src('server/test/server.pythonComm.test.js', { read: false })
.pipe(mocha({
env: {'NODE_ENV': 'test'},
reporter: 'nyan'
}));
});
// Karma Single Run Task. Used for Travis CI
gulp.task('karma', function(done) {
karma.start({
configFile: __dirname + '/karma.conf.js',
singleRun: true
}, done);
});
// Travis CI testing task. .travis.yml calls this task.
gulp.task('ci', ['lint', 'karma']);
/**
* Main Tasks
*/
// Catchall Default
gulp.task('default', [
]);
// Minification, etc.
gulp.task('build', [
'lint',
'clean'
]);