UNPKG

bem.js

Version:

DOM selection and manipulation using BEM (Block, Element, Modifier).

17 lines (14 loc) 390 B
var gulp = require('gulp'); var webpack = require('webpack-stream'); var paths = require('../paths'); var webpackConfig = require('../../webpack.config.js'); /** * Build task * Run using "gulp build" * Runs webpack to compile javascript */ gulp.task('build', function() { gulp.src('') .pipe(webpack(webpackConfig)) .pipe(gulp.dest(webpackConfig.output.path)); });