DEPRECATED repository, moved to mono repository gulp-bem
Gulp plugin for executing https://github.com/bem/bh templates.
var gulp = require('gulp'),
bh = require('@bem/gulp-bh')();
gulp.task('default', function() {
gulp.src('*.bh.js')
.pipe(bh.match());
return gulp.src('index.bemjson.js')
.pipe(bh.apply('index.html'))
.pipe(gulp.dest('./bundle'));
});