clean up gulpfile

This commit is contained in:
Brittany Chiang
2017-03-15 13:59:59 -04:00
parent 3dde8789cf
commit 6344830957
2 changed files with 3 additions and 81 deletions

View File

@@ -9,9 +9,9 @@ const templatePath = [ '**/*.html', '**/*.yml', '_posts/*', '_drafts/*'];
module.exports = gulp => {
// Build the Jekyll Site
// run `jekyll build`
gulp.task('jekyll-build', done => {
return cp.spawn( jekyll , ['build', '--drafts', '--config', '_config.yml'], {stdio: 'inherit'})
return cp.spawn( jekyll , ['build'], {stdio: 'inherit'})
.on('close', done);
});