| src
|subfolder
|____foo.hbs
|__subfolder2
|____foo.hbs
|
gulp.task('convert-hbs', function(){
return gulp.src('./src/**/*.hbs')
.pipe(gulpAssemble(assemble, {layout: 'default'}))
.pipe(gulp.dest(paths.build));
});
only renders "subfolder2 > foo.html". If give the files unique names they are both rendered.
| src
|subfolder
|____foo.hbs
|__subfolder2
|____foo.hbs
|
only renders "subfolder2 > foo.html". If give the files unique names they are both rendered.