From deeac70d5840e6031a837895bf388719a707028c Mon Sep 17 00:00:00 2001 From: Alex Dima Date: Fri, 24 Jun 2016 21:23:23 +0200 Subject: [PATCH] Fix gulpfile --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index a11939e0..ed02c440 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -341,7 +341,7 @@ gulp.task('clean-website', function(cb) { rimraf('../monaco-editor-website', { m gulp.task('website', ['clean-website', 'playground-samples'], function() { return ( - gulp.src('website/**/*') + gulp.src('website/**/*', { dot: true }) .pipe(es.through(function(data) { if (!data.contents || !/\.(js|html)$/.test(data.path)) { return this.emit('data', data);