Show future post in dev mode (#59)

This commit is contained in:
Franck R 2022-04-20 21:06:53 +10:00 committed by GitHub
parent 5638aec1f6
commit 9d6ddec150
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,6 +27,7 @@ const content = () => {
const args = ['exec', jekyll, 'build'] const args = ['exec', jekyll, 'build']
if (isDevelopmentBuild) { if (isDevelopmentBuild) {
args.push('--incremental') args.push('--incremental')
args.push('--future')
} }
return spawn('bundle', args, { stdio: 'inherit' }) return spawn('bundle', args, { stdio: 'inherit' })