Fix gulpfile

This commit is contained in:
Alex Dima 2016-06-24 21:23:23 +02:00
parent 88216552d9
commit deeac70d58

View file

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