Created
August 29, 2015 18:42
-
-
Save sondr3/94ba11bf831b4bab0d68 to your computer and use it in GitHub Desktop.
Gulpfile v2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gulp.task('assets:dev', gulp.series('styles:dev', 'javascript:dev', 'fonts', 'images')); | |
gulp.task('assets', gulp.series('styles', 'javascript', 'fonts', 'images')); | |
// Default task, run when just writing 'gulp' in the terminal | |
gulp.task('default', gulp.series( | |
gulp.series('assets:dev'), | |
gulp.series('inject:head:dev', 'inject:footer:dev'), | |
gulp.series('jekyll:dev'), | |
gulp.series('serve') | |
)); | |
gulp.task('build', gulp.series( | |
gulp.series('assets'), | |
gulp.series('inject:head', 'inject:footer'), | |
gulp.series('jekyll:prod') | |
)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment