Open qfox opened 8 years ago
why tenorok?
gulp-bem-walk is better
@blond what do u think?
@Yeti-or why you need this module?
If this module to convert bem files to vinyl and back, then suitable gulp-bem-fs
.
Example: convert bem files to vinyl-fs
.
const toVinyl = require('gulp-bem-fs').toVinyl;
const walk = require('bem-walk');
walk(levels, config)
.pipe(toVinyl());
Example: convert vinyl
files to bem files.
const toBem = require('gulp-bem-fs').toBem;
gulp.src('lib/**')
.pipe(toBem());
Can we try to use Vinyls instead of BemFiles?
@zxqfox we can do everything that you can imagine :sparkles:
Maybe gulp-bem-walk?