Disable incremental regeneration by default in Jekyll 3.0

Disable the feature as it's still not 100% working 100% of the time. Feature
can be re-enabled by specifying `full_rebuild: false` in the configuration
This commit is contained in:
Alfred Xing 2015-10-26 13:37:47 -07:00
parent 74734d46f8
commit d9b12bc090
2 changed files with 3 additions and 2 deletions

View File

@ -22,7 +22,7 @@ module Jekyll
'keep_files' => ['.git','.svn'],
'encoding' => 'utf-8',
'markdown_ext' => 'markdown,mkdown,mkdn,mkd,md',
'full_rebuild' => false,
'full_rebuild' => true,
# Filtering Content
'show_drafts' => nil,

View File

@ -130,7 +130,8 @@ class TestRegenerator < JekyllUnitTest
@site = Site.new(Jekyll.configuration({
"source" => source_dir,
"destination" => dest_dir
"destination" => dest_dir,
"full_rebuild" => false
}))
@site.process