-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathgulpfile.babel.js
138 lines (123 loc) · 3.91 KB
/
gulpfile.babel.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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
import gulp from 'gulp';
import gulpLoadPlugins from 'gulp-load-plugins';
import path from 'path';
import del from 'del';
import runSequence from 'run-sequence';
import * as isparta from 'isparta';
const plugins = gulpLoadPlugins();
const paths = {
js: ['./**/*.js', '!dist/**', '!node_modules/**', '!coverage/**'],
nonJs: ['./package.json', './.gitignore', './.env'],
tests: './server/tests/*.js',
};
const options = {
codeCoverage: {
reporters: ['lcov', 'text-summary'],
thresholds: {
global: {
statements: 50,
branches: 50,
functions: 50,
lines: 50,
},
},
},
};
// Clean up dist and coverage directory
gulp.task('clean', () => del.sync(['dist/**', 'dist/.*', 'coverage/**', '!dist', '!coverage']));
// Copy non-js files to dist
gulp.task('copy', () =>
gulp
.src(paths.nonJs)
.pipe(plugins.newer('dist'))
.pipe(gulp.dest('dist')));
// Compile ES6 to ES5 and copy to dist
gulp.task('babel', () =>
gulp
.src([...paths.js, '!gulpfile.babel.js'], { base: '.' })
.pipe(plugins.newer('dist'))
.pipe(plugins.sourcemaps.init())
.pipe(plugins.babel())
.pipe(plugins.sourcemaps.write('.', {
includeContent: false,
sourceRoot(file) {
return path.relative(file.path, __dirname);
},
}))
.pipe(gulp.dest('dist')));
// Start server with restart on file changes
gulp.task('nodemon', ['copy', 'babel'], () =>
plugins.nodemon({
script: path.join('dist', 'index.js'),
ext: 'js',
ignore: ['node_modules/**/*.js', 'dist/**/*.js'],
tasks: ['copy', 'babel'],
}));
// gulp serve for development
gulp.task('serve', ['clean'], () => runSequence('nodemon'));
// default task: clean dist, compile js files and copy non-js files.
gulp.task('default', ['clean'], () => {
runSequence(['copy', 'babel']);
});
// clean dist, compile js files, copy non-js files and execute tests
gulp.task('mocha', ['clean'], () => {
runSequence(['copy', 'babel'], 'test');
});
// Set env variables
gulp.task('set-env', () => {
plugins.env({
vars: {
NODE_ENV: 'test',
},
});
});
// covers files for code coverage
gulp.task('pre-test', () =>
gulp
.src([...paths.js, '!gulpfile.babel.js'])
// Covering files
.pipe(plugins.istanbul({
instrumenter: isparta.Instrumenter,
includeUntested: true,
}))
// Force `require` to return covered files
.pipe(plugins.istanbul.hookRequire()));
// triggers mocha test with code coverage
gulp.task('test', ['pre-test', 'set-env'], () => {
let reporters;
let exitCode = 0;
if (plugins.util.env['code-coverage-reporter']) {
reporters = [...options.codeCoverage.reporters, plugins.util.env['code-coverage-reporter']];
} else {
reporters = options.codeCoverage.reporters;
}
return (
gulp
.src([paths.tests], { read: false })
.pipe(plugins.plumber())
.pipe(plugins.mocha({
reporter: 'spec',
ui: 'bdd',
timeout: 2000,
compilers: 'js:babel-core/register',
exit: true,
}))
.once('error', (err) => {
plugins.util.log(err);
exitCode = 1;
})
// Creating the reports after execution of test cases
.pipe(plugins.istanbul.writeReports({
dir: './coverage',
reporters,
}))
// Enforce test coverage
.pipe(plugins.istanbul.enforceThresholds({
thresholds: options.codeCoverage.thresholds,
}))
.on('end', () => {
plugins.util.log('completed !!');
process.exit(exitCode);
})
);
});