上部にメタデータ付きのコメントを含む HTML ファイルのフォルダーがあります。gulp-replace
メタデータが 1 つの正規表現と一致する場合は1 つの操作を実行し、一致gulp-replace
しない場合は別の操作を実行してから、残りのタスク パイプラインを続行します。を使用してさまざまな反復を試みgulp-if
たが、常に「TypeError: undefined is not a function」エラーが発生した場合
import gulp from 'gulp';
import plugins from 'gulp-load-plugins';
const $ = plugins();
function preprocess() {
var template_data = new RegExp('<!-- template_language:(\\w+)? -->\n', 'i');
var handlebars = new RegExp('<!-- template_language:handlebars -->', 'i');
var primaryColor = new RegExp('#dc002d', 'gi');
var mailchimpColorTag = '*|PRIMARY_COLOR|*';
var handlebarsColorTag = '{{PRIMARY_COLOR}}';
var replaceCondition = function (file) {
return file.contents.toString().match(handlebars);
}
return gulp.src('dist/**/*.html')
.pipe($.if(
replaceCondition,
$.replace(primaryColor, handlebarsColorTag),
$.replace(primaryColor, mailchimpColorTag)
))
.pipe($.replace, template_data, '')
.pipe(gulp.dest('dist'));
}
これについて最も効率的な方法は何ですか?