Skip to content

Instantly share code, notes, and snippets.

@SevereOverfl0w
Created July 15, 2014 10:56
Show Gist options
  • Save SevereOverfl0w/4bc801b4f18e0ad9d01d to your computer and use it in GitHub Desktop.
Save SevereOverfl0w/4bc801b4f18e0ad9d01d to your computer and use it in GitHub Desktop.
gulp.task('templates', function() {
return gulp.src(config.jade)
.pipe($.plumber())
.pipe($.jade())
.pipe($.if(isDev, $.embedlr()))
.pipe($.if(isDev, gulp.dest(config.tmp)))
.pipe($.if(isBuild, gulp.dest(config.dist)))
.pipe($.if(isDev, reload({stream: true})));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment