gulp-html2bemjson
v1.0.3
Published
Compile html files to bemjson.js with gulp
Downloads
1
Readme
gulp-html2bemjson
Compile html to bemjson with gulp and html2bemjson plugin.
Usage
Install
$ npm install gulp-html2bemjson --save-dev
Examples
import gulp from 'gulp';
import html2bemjson from 'gulp-html2bemjson';
export default () => {
return gulp.src('src/pages/index/index.html')
.pipe(html2bemjson())
.pipe(gulp.dest('src/pages'))
};