carlitoplatanito / gulp-nunjucks-render

[Gulp](https://github.com/wearefractal/gulp) plugin to render [Nunjucks](http://mozilla.github.io/nunjucks/) templates
149 stars 33 forks source link

can we use globbing for path? #51

Closed jitendravyas closed 6 years ago

jitendravyas commented 7 years ago

like this src/pages/**/partials ?

mkoller commented 7 years ago

In my gulp task

    gulp.task('nunjucks', function() {
  // Gets .html and .nunjucks files in pages
    return gulp.src('app/pages/**/*.+(html|nunjucks)')
  // Renders template with nunjucks
});