Skip to content

Instantly share code, notes, and snippets.

@867
Last active July 9, 2018 11:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 867/53465b83bd64dea84303a4b5fbde24a0 to your computer and use it in GitHub Desktop.
Save 867/53465b83bd64dea84303a4b5fbde24a0 to your computer and use it in GitHub Desktop.
// task:nunjucks
gulp.task('nunjucks', function(){
return gulp.src(paths.src.html + '**/*.njk')
.pipe(nunjucks({
path: paths.src.template
}))
.pipe(gulp.dest(paths.dest.root))
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment