mirror of
https://github.com/kremalicious/blog.git
synced 2024-12-25 02:36: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) {
|
if (isProduction) {
|
||||||
var jekyll = spawn('bundle', ['exec', 'jekyll', 'build', '--lsi'], { stdio: 'inherit' });
|
var jekyll = spawn('bundle', ['exec', 'jekyll', 'build', '--lsi'], { stdio: 'inherit' });
|
||||||
} else {
|
} 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) {
|
jekyll.on('exit', function(code) {
|
||||||
|
Loading…
Reference in New Issue
Block a user