-
Notifications
You must be signed in to change notification settings - Fork 176
/
gulpfile.js
239 lines (207 loc) · 6.57 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
/**
* @license
* Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
* This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
* The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
* The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
* Code distributed by Google as part of the polymer project is also
* subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/
'use strict';
const concat = require('gulp-concat');
const depcheck = require('depcheck');
const fs = require('fs');
const glob = require('glob');
const gulp = require('gulp');
const bower = require('gulp-bower');
const mocha = require('gulp-spawn-mocha');
const tslint = require('gulp-tslint');
const ts = require('gulp-typescript');
const lazypipe = require('lazypipe');
const path = require('path');
const rollup = require('rollup');
const runSequence = require('run-sequence');
const typescript = require('typescript');
const mochaConfig = { reporter: 'spec' };
if (process.env.MOCHA_TIMEOUT) {
mochaConfig.timeout = parseInt(process.env.MOCHA_TIMEOUT, 10);
}
// const commonTools = require('tools-common/gulpfile');
const commonTools = {
depcheck: commonDepCheck
};
gulp.task('lint', ['tslint', 'depcheck']);
// Meta tasks
gulp.task('default', ['test']);
function removeFile(path) {
try {
fs.unlinkSync(path);
return;
} catch (e) {
try {
fs.statSync(path);
} catch (e) {
return;
}
throw new Error('Unable to remove file: ' + path);
}
}
gulp.task('clean', (done) => {
removeFile('browser.js');
removeFile('browser.js.map');
const patterns = ['runner/*.js', 'browser/**/*.js', 'browser/**/*.js.map'];
for (const pattern of patterns) {
glob(pattern, (err, files) => {
if (err) {
return done(err);
}
try {
for (const file of files) {
removeFile(file);
}
} catch (e) {
return done(e);
}
});
}
done();
});
gulp.task('test', function (done) {
runSequence(
'build:typescript-server',
'lint',
'test:unit',
'test:integration',
done);
});
gulp.task('build-all', (done) => {
runSequence('clean', 'lint', 'build', done);
});
gulp.task('build',
['build:typescript-server', 'build:browser', 'build:wct-browser-legacy']);
const tsProject = ts.createProject('tsconfig.json', { typescript });
gulp.task('build:typescript-server', function () {
// Ignore typescript errors, because gulp-typescript, like most things
// gulp, can't be trusted.
return tsProject.src().pipe(tsProject(ts.reporter.nullReporter())).js.pipe(gulp.dest('./'));
});
const browserTsProject = ts.createProject('browser/tsconfig.json', {
typescript
});
gulp.task('build:typescript-browser', function () {
return browserTsProject.src().pipe(
browserTsProject(ts.reporter.nullReporter())).js.pipe(gulp.dest('./browser/'));
});
// Specific tasks
gulp.task('build:browser', ['build:typescript-browser'], function (done) {
rollup.rollup({
entry: 'browser/index.js',
}).then(function (bundle) {
bundle.write({
indent: false,
format: 'iife',
banner: fs.readFileSync('browser-js-header.txt', 'utf-8'),
intro: 'window.__wctUseNpm = false;',
dest: 'browser.js',
sourceMap: true,
sourceMapFile: path.resolve('browser.js.map')
}).then(function () {
done();
});
}).catch(done);
});
gulp.task('build:wct-browser-legacy:a11ySuite', function () {
return gulp.src(['data/a11ySuite-npm-header.txt', 'data/a11ySuite.js'])
.pipe(concat('a11ySuite.js'))
.pipe(gulp.dest('wct-browser-legacy/'));
});
gulp.task('build:wct-browser-legacy:browser', ['build:typescript-browser'], function (done) {
rollup.rollup({
entry: 'browser/index.js',
}).then(function (bundle) {
bundle.write({
indent: false,
format: 'iife',
banner: fs.readFileSync('browser-js-header.txt', 'utf-8'),
intro: 'window.__wctUseNpm = true;',
dest: 'wct-browser-legacy/browser.js',
sourceMap: true,
sourceMapFile: path.resolve('browser.js.map')
}).then(function () {
done();
});
}).catch(done);
});
gulp.task('build:wct-browser-legacy', [
'build:wct-browser-legacy:a11ySuite',
'build:wct-browser-legacy:browser',
]);
gulp.task('test:unit', function () {
return gulp.src('test/unit/*.js', { read: false })
.pipe(mocha(mochaConfig));
});
gulp.task('bower', function () {
return bower();
});
gulp.task('test:integration', ['bower'], function () {
return gulp.src('test/integration/*.js', { read: false })
.pipe(mocha(mochaConfig));
});
gulp.task('tslint', () =>
gulp.src([
'runner/**/*.ts', '!runner/**/*.d.ts',
'test/**/*.ts', '!test/**/*.d.ts',
'custom_typings/*.d.ts', 'browser/**/*.ts', '!browser/**/*.ts'
])
.pipe(tslint())
.pipe(tslint.report({ formatter: 'verbose' })));
// Flows
commonTools.depcheck({
stickyDeps: new Set([
// Used in browser.js
'accessibility-developer-tools',
'mocha',
'test-fixture',
'@polymer/sinonjs',
'@polymer/test-fixture',
'@webcomponents/webcomponentsjs',
'async',
'findup-sync',
// Only included to satisfy peer dependency and suppress error on install
'sinon',
// Used in the wct binary
'resolve'
])
});
function commonDepCheck(options) {
const defaultOptions = { stickyDeps: new Set() };
options = Object.assign({}, defaultOptions, options);
gulp.task('depcheck', () => {
return new Promise((resolve, reject) => {
depcheck(
__dirname, { ignoreDirs: [], ignoreMatches: ['@types/*'] }, resolve);
}).then((result) => {
const invalidFiles = Object.keys(result.invalidFiles) || [];
const invalidJsFiles = invalidFiles.filter((f) => f.endsWith('.js'));
if (invalidJsFiles.length > 0) {
console.log('Invalid files:', result.invalidFiles);
throw new Error('Invalid files');
}
const unused = new Set(result.dependencies);
for (const falseUnused of options.stickyDeps) {
unused.delete(falseUnused);
}
if (unused.size > 0) {
console.log('Unused dependencies:', unused);
throw new Error('Unused dependencies');
}
});
});
}
gulp.task('prepublish', function (done) {
// We can't run the integration tests here because on travis we may not
// be running with an x instance when we do `npm install`. We can change
// this to just `test` from `test:unit` once all supported npm versions
// no longer run `prepublish` on install.
runSequence('build-all', 'test:unit', done);
});