-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
96 lines (84 loc) · 2.8 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
var gulp = require("gulp");
var ts = require("gulp-typescript");
var tslint = require("gulp-tslint");
var mocha = require('gulp-mocha');
var clean = require('gulp-clean');
var sourcemaps = require('gulp-sourcemaps');
var istanbul = require('gulp-istanbul');
var remapIstanbul = require('remap-istanbul/lib/gulpRemapIstanbul');
var through2 = require('through2');
var tsProject = ts.createProject('tsconfig.json');
var testFileGlob = 'test/**/*Test.js';
gulp.task('default', ['tslint', 'test']);
gulp.task('clean', function() {
return gulp.src(['target', 'coverage'], {read: false})
.pipe(clean());
});
gulp.task('compile', ['clean'], function() {
return tsProject.src()
.pipe(sourcemaps.init())
.pipe(tsProject())
.js
.pipe(sourcemaps.write())
.pipe(gulp.dest(tsProject.options.outDir));
});
gulp.task('tslint', function() {
return gulp.src('src/**/*.ts')
.pipe(tslint())
.pipe(tslint.report());
});
gulp.task('watch', function() {
gulp.watch('src/**/*.ts', ['compile']);
});
gulp.task('test', ['compile'], function() {
return gulp.src(testFileGlob, {read: false})
.pipe(mocha());
});
gulp.task('test:instrument', ['compile'], function() {
return gulp.src('target/**/*.js')
.pipe(istanbul())
.pipe(istanbul.hookRequire());
});
gulp.task('self-optimize', ['compile'], function() {
var optimize = require('./target/optimize');
return gulp.src('target/**/*.js')
.pipe(through2.obj(function(file, encoding, done) {
file.contents = new Buffer(optimize(file.contents.toString('UTF-8')));
this.push(file);
done();
}))
.pipe(gulp.dest(tsProject.options.outDir));
});
gulp.task('test:cover', ['test:instrument'], function() {
return gulp.src(testFileGlob, {read: false})
.pipe(mocha({timeout: 10000}))
.pipe(istanbul.writeReports({
reporters: ['json']
}))
.on('end', function() {
return gulp.src('coverage/coverage-final.json')
.pipe(remapIstanbul({
basePath: 'src',
reports: {
'json': 'coverage/coverage.json'
}
}))
.pipe(clean());
});
});
gulp.task('test:cover-html', ['test:instrument'], function() {
return gulp.src(testFileGlob, {read: false})
.pipe(mocha({timeout: 10000}))
.pipe(istanbul.writeReports({
reporters: ['json']
}))
.on('end', function() {
return gulp.src('coverage/coverage-final.json')
.pipe(remapIstanbul({
reports: {
'html': 'coverage/html',
'text-summary': null
}
}));
});
});