mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-11 23:55:16 +01:00
add --incremental flag to dev build
This commit is contained in:
parent
af4db388f9
commit
8b431ab622
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user