From 8b431ab62286b3c984a300d72f79e31d7237efe1 Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Thu, 29 Oct 2015 21:23:01 +0100 Subject: [PATCH] add --incremental flag to dev build --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index a393e469..7346fdc9 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -117,7 +117,7 @@ gulp.task('jekyll', function(cb) { if (isProduction) { var jekyll = spawn('bundle', ['exec', 'jekyll', 'build', '--lsi'], { stdio: 'inherit' }); } else { - var jekyll = spawn('bundle', ['exec', 'jekyll', 'build', '--drafts', '--future'], { stdio: 'inherit' }); + var jekyll = spawn('bundle', ['exec', 'jekyll', 'build', '--drafts', '--future', '--incremental'], { stdio: 'inherit' }); } jekyll.on('exit', function(code) {