-
Notifications
You must be signed in to change notification settings - Fork 4
/
gulpfile.js
executable file
·80 lines (69 loc) · 1.45 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
'use strict';
let gulp = require('gulp');
let rimraf = require('gulp-rimraf');
let tslint = require('gulp-tslint');
let mocha = require('gulp-mocha');
let path = require('path');
let exec = require('child_process').exec;
/**
* Remove build directory.
*/
gulp.task('clean', function () {
return gulp.src(outDir, { read: false })
.pipe(rimraf());
});
/**
* Lint all custom TypeScript files.
*/
gulp.task('tslint', () => {
return gulp.src('src/**/*.ts')
.pipe(tslint())
.pipe(tslint.report('prose'));
});
/**
* Compile TypeScript.
*/
function compileTS(args, cb) {
exec('tsc --version', (err, stdout, stderr) => {
console.log('TypeScript ', stdout);
if (stderr) {
console.log(stderr);
}
});
return exec('tsc' + args, (err, stdout, stderr) => {
console.log(stdout);
if (stderr) {
console.log(stderr);
}
cb(err);
});
}
gulp.task('compile', (cb) => {
compileTS('', cb);
});
/**
* Watch for changes in TypeScript
*/
gulp.task('watch', (cb) => {
compileTS(' -w', cb);
});
/**
* Build the project.
*/
gulp.task('build', ['tslint', 'compile'], () => {
console.log('Building the project ...');
});
/**
* Run tests.
*/
gulp.task('test', ['compile'], (cb) => {
gulp.src(['build/test/**/*.js'])
.pipe(mocha())
.once('error', () => {
process.exit(1);
})
.once('end', () => {
process.exit();
});
});
gulp.task('default', ['watch']);