-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulpfile.js
More file actions
executable file
·120 lines (100 loc) · 2.35 KB
/
gulpfile.js
File metadata and controls
executable file
·120 lines (100 loc) · 2.35 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
var gulp = require('gulp');
var nodemon = require('gulp-nodemon');
var mocha = require('gulp-mocha');
var istanbul = require('gulp-istanbul');
var eslint = require('gulp-eslint');
//GLOBAL TASKS
gulp.task('default', ['prod']);
gulp.task('ci', ['ci:lint', 'ci:test', 'ci:coverage'], function () {
process.exit();
});
//production
gulp.task('prod', function () {
nodemon({
script: './src/index.js',
ext: 'js',
env: {
NODE_ENV: 'production'
}
});
});
//developpement
gulp.task('dev', function () {
nodemon({
script: './src/index.js',
ext: 'js',
tasks: ['lint'],
env: {
NODE_ENV: 'development'
}
});
});
gulp.task('lint', function () {
return gulp.src(['./src/**/*.js'])
.pipe(eslint())
.pipe(eslint.format());
})
gulp.task('ci:lint', function () {
return gulp.src(['./src/**/*.js'])
.pipe(eslint())
.pipe(eslint.format())
.pipe(eslint.failAfterError());
});
gulp.task('pre-coverage', function () {
return gulp.src(['src/**/*.js', '!src/config/environment/*'])
// Covering files
.pipe(istanbul())
// Force `require` to return covered files
.pipe(istanbul.hookRequire());
});
gulp.task('coverage', ['pre-coverage'], function () {
process.env.NODE_ENV = 'test';
gulp.src(['test/**/*.js'])
.pipe(mocha())
.pipe(istanbul.writeReports({
dir: './target/coverage',
reporters: ['html']
}))
.once('end', function () {
process.exit();
});
});
gulp.task('ci:coverage', ['pre-coverage'], function () {
process.env.NODE_ENV = 'test';
gulp.src(['test/**/*.js'])
.pipe(mocha())
.pipe(istanbul.writeReports({
dir: './target',
reporters: ['cobertura']
}));
});
gulp.task('mocha', function () {
process.env.NODE_ENV = 'test';
return gulp
.src(['test/**/*.js'], {
read: false
})
.pipe(mocha({
reporter: 'spec'
})).on('error', handleError);
});
gulp.task('ci:test', function () {
process.env.NODE_ENV = 'test';
return gulp
.src(['test/**/*.js'], {
read: false
})
.pipe(mocha({
reporter: 'xunit',
reporterOptions: {
output: './target/test-reports.xml'
}
})).on('error', handleError);
});
//test live reload
gulp.task('test', ['mocha'], function () {
gulp.watch(['src/**/*.js', 'test/**/*.js'], ['mocha']);
});
function handleError(err) {
this.emit('end');
}