gulp-ejsで<%= filename %>が使えない問題の回避策としてgulp-dataを使う
以前のバージョンでは <%= finename %>
でEJSファイルのパスが取得できたんですが、
いつのまにか(gulp-ejs v3から?)これが取得できなくなって困っていました。
EJSをコンパイルする前に、gulp-data を挟んだら回避できました。
gulpfile.js
let gulp = require('gulp');
let $ = require('gulp-load-plugins')();
gulp.task("ejs", callback => {
return gulp.src([
"ejs/**/*.ejs",
'!' + "ejs/**/_*.ejs"
])
.pipe($.plumber())
.pipe($.data(file => {
return {
'filename': file.path
}
}))
.pipe(
$.ejs()
.on('error', $.util.log)
)
.pipe($.rename({
extname: '.html'
}))
.pipe(gulp.dest( yourDestDir ));
});
Author And Source
この問題について(gulp-ejsで<%= filename %>が使えない問題の回避策としてgulp-dataを使う), 我々は、より多くの情報をここで見つけました https://qiita.com/nibushibu/items/d1d9325a61520dc8c422著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .