-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathgulpfile.js
130 lines (114 loc) · 3.21 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
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
var gulp = require('gulp');
var del = require('del'),
prepend = require('gulp-prepend'),
help = require('gulp-help-four'),
fs = require('fs'),
rename = require('gulp-rename'),
replace = require('gulp-replace'),
eslint = require('gulp-eslint'),
uglify = require('gulp-uglify'),
karma = require('karma'),
webpack = require('webpack'),
webpackStream = require('webpack-stream'),
webpackConfig = require('./webpack.config'),
webpackTestConfig = require('./webpack.test.config'),
runSequence = require('gulp4-run-sequence'),
argv = require('yargs').argv,
saveLicense = require('uglify-save-license')
;
help(gulp, undefined);
var package = require('./package.json');
var webpackBanner = package.name + " v" + package.version + " | (c) 2016 Microsoft Corporation " + package.license;
var gulpBanner = "/*! " + webpackBanner + " */\n";
gulp.task('build', 'Build for release', function (done) {
return runSequence(
'lint:ts',
'clean:dist',
'compile:ts',
'min',
'generatecustomdts',
'prepend',
done
);
});
gulp.task('test', 'Run all tests', function (done) {
return runSequence(
'lint:ts',
'clean:tmp',
'compile:spec',
'test:spec',
done
);
});
gulp.task('nojekyll', 'Add .nojekyll file to docs directory', function (done) {
fs.writeFile('./docs/.nojekyll', '', function (error) {
if (error) {
throw error;
}
done();
});
});
gulp.task('compile:ts', 'Compile source files', function () {
webpackConfig.plugins = [
new webpack.BannerPlugin(webpackBanner)
];
return gulp.src(['./src/**/*.ts'])
.pipe(webpackStream(webpackConfig))
.pipe(gulp.dest('./dist'));
});
gulp.task('prepend', 'Add header to distributed files', function () {
return gulp.src(['./dist/*.d.ts'])
.pipe(prepend(gulpBanner))
.pipe(gulp.dest('./dist'));
});
gulp.task('min', 'Minify build files', function () {
return gulp.src(['./dist/*.js'])
.pipe(uglify({
output: {
comments: saveLicense
}
}))
.pipe(rename({
suffix: '.min'
}))
.pipe(gulp.dest('./dist/'));
});
gulp.task('clean:dist', 'Clean dist directory', function () {
return del([
'./dist/**/*'
]);
});
gulp.task('clean:tmp', 'Clean tmp directory', function () {
return del([
'./tmp/**/*'
]);
});
gulp.task('compile:spec', 'Compile typescript for tests', function () {
return gulp.src(['./test/windowPostMessageProxy.spec.ts'])
.pipe(webpackStream(webpackTestConfig))
.pipe(gulp.dest('./tmp'));
});
gulp.task('generatecustomdts', 'Generate dts with no exports', function () {
return gulp.src(['./dist/*.d.ts'])
.pipe(replace(/export\s/g, ''))
.pipe(rename(function (path) {
path.basename = "windowPostMessageProxy-noexports.d";
}))
.pipe(gulp.dest('dist/'));
});
gulp.task('test:spec', 'Runs spec tests', function (done) {
new karma.Server({
configFile: __dirname + '/karma.conf.js',
singleRun: argv.watch ? false : true,
captureTimeout: argv.timeout || 20000
}, function () {
done();
}).start();
});
gulp.task('lint:ts', 'Lints all TypeScript', function () {
return gulp.src(['./src/**/*.ts', './test/**/*.ts'])
.pipe(eslint({
formatter: "verbose"
}))
.pipe(eslint.format());
});