No need for worker proxying in website

This commit is contained in:
Alex Dima 2016-08-27 11:21:32 +02:00
parent f9905fad97
commit 196f355660
6 changed files with 1 additions and 26 deletions

View file

@ -343,7 +343,7 @@ gulp.task('website', ['clean-website', 'playground-samples'], function() {
return (
gulp.src('website/**/*', { dot: true })
.pipe(es.through(function(data) {
if (!data.contents || !/\.(js|html)$/.test(data.path)) {
if (!data.contents || !/\.(html)$/.test(data.path)) {
return this.emit('data', data);
}