From aa19fe0d6f51524c19d191bd3c2e1a93530498e8 Mon Sep 17 00:00:00 2001 From: Alex Dima Date: Fri, 21 Oct 2016 14:30:56 +0200 Subject: [PATCH] Generate .nojekyll on gh-pages branch --- gulpfile.js | 1 + 1 file changed, 1 insertion(+) diff --git a/gulpfile.js b/gulpfile.js index 2ce71406..ddc0c0f1 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -288,6 +288,7 @@ gulp.task('website', ['clean-website'], function() { // temporarily create package.json so that npm install doesn't bark fs.writeFileSync('../monaco-editor-website/package.json', '{}'); + fs.writeFileSync('../monaco-editor-website/.nojekyll', ''); cp.execSync('npm install monaco-editor', { cwd: path.join(__dirname, '../monaco-editor-website') });