0.0.1 • Published 7 years ago

gulp-bemjson2html-updated v0.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
7 years ago

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('./'));
});