gulp-bemjson2html

1.0.2 • Public • Published

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

Readme

Keywords

Package Sidebar

Install

npm i gulp-bemjson2html

Weekly Downloads

6

Version

1.0.2

License

ISC

Last publish

Collaborators

  • vitkarpov