I'm trying to grab the base name of each html file that passes through a stream. The code here obviously doesn't work because _base
is no longer in scope. It seems like there should be a really easy way to do this, or maybe there's something built into gulp-ejs that I don't know about. Thoughts?
gulp.task('html', function () {
return gulp.src('app/*.html')
.pipe(tap(function(file, t){
var _base = path.basename(file.path, '.html');
})
.pipe($.ejs(require('./app/'+_base+'.json')))
});
Can't you just declare
_base
above the return statement?