Skip to content

Instantly share code, notes, and snippets.

@nerdpruitt
Last active August 29, 2015 14:08
Show Gist options
  • Save nerdpruitt/e023dff48cd81a52db11 to your computer and use it in GitHub Desktop.
Save nerdpruitt/e023dff48cd81a52db11 to your computer and use it in GitHub Desktop.
Start Jekyll from Gulp using vanilla Node
gulp.task('jekyll', function(){
return require('child_process').spawn('jekyll', ['serve', '--watch'], { stdio: 'inherit' });
});
gulp.task('default', ['jekyll']);
@nerdpruitt
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment