forked from Polymer/web-component-tester
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
196 lines (166 loc) · 5.09 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
/**
* @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 depcheck = require('depcheck');
const fs = require('fs');
const glob = require('glob');
const gulp = require('gulp');
const bower = require('gulp-bower');
const jshint = require('gulp-jshint');
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 commonTools = require('tools-common/gulpfile');
const commonTools = {
depcheck: commonDepCheck
};
const tsProject = ts.createProject('tsconfig.json', {
typescript: require('typescript')
});
gulp.task('lint', ['tslint', 'test:style', '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');
glob('runner/*.js', (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', 'lint'],
'test:unit',
'test:integration',
done);
});
gulp.task('build-all', (done) => {
runSequence('clean', 'lint', 'build', done);
});
gulp.task('build', ['build:typescript', 'build:browser']);
gulp.task('build:typescript', 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('./'));
});
// Specific tasks
gulp.task('build: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'),
dest: 'browser.js',
sourceMap: true,
sourceMapFile: path.resolve('browser.js.map')
}).then(function () {
done();
});
}).catch(done);
});
gulp.task('test:style', function () {
return gulp.src([
'{browser,runner,environment,tasks}/**/*.js',
'gulpfile.js',
'!runner/*.js',
]).pipe(jshintFlow());
});
gulp.task('test:unit', function () {
return gulp.src('test/unit/*.js', { read: false })
.pipe(mocha({ reporter: 'spec' }));
});
gulp.task('bower', function () {
return bower();
});
gulp.task('test:integration', ['bower'], function () {
return gulp.src('test/integration/*.js', { read: false })
.pipe(mocha({ reporter: 'spec' }));
});
gulp.task('tslint', () =>
gulp.src(['runner/**/*.ts', 'test/**/*.ts', 'custom_typings/*.d.ts'])
.pipe(tslint({
configuration: 'tslint.json',
}))
.pipe(tslint.report('verbose')));
// Flows
const jshintFlow = lazypipe()
.pipe(jshint)
.pipe(jshint.reporter, 'jshint-stylish')
.pipe(jshint.reporter, 'fail');
commonTools.depcheck({
stickyDeps: new Set([
// Used in browser.js
'accessibility-developer-tools',
'mocha',
'test-fixture',
'async',
// 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);
});