Gulp wrapper of bem-pack.
var gulp = require('gulp');
var bempack = require('gulp-bem-pack');
gulp.src(['base/*.js', 'main/*.js'])
.pipe(bempack('index.js'))
.pipe(gulp.dest('dist'));
Type: String
File name of generated JavaScript file.
Type: Object
Object with options, that will be directly passed to bem-pack.
MIT (c) 2014 Vsevolod Strukchinsky