gulp-bemjson2html-updated
v0.0.1
Published
Gulp plugin which convert bemjson to html. Used updated bem-xjst. Original author: vitkarpov
Downloads
3
Readme
Gulp plugin which compiles bemjson to html
Optionally you can specify bemhtml templates` file.
var gulp = require('gulp');
var bemjson2html = require('gulp-bemjson2html');
var rename = require('gulp-rename');
gulp.task('html', function() {
return gulp.src('page.bemjson.js')
.pipe(bemjson2html({ template: 'page.bemhtml.js' }))
.pipe(rename('index.html'))
.pipe(gulp.dest('./'));
});