README
Vocus UI
H1 Add this to your Gulpfile in order to get v-ui into your build process
H6 create an entry.js file which feeds webpack with your apps css like so require('yourcss.css');
var webpack = require('webpack-stream');
// POST CSSify
gulp.task('postcss', function() {
return gulp.src(['./node_modules/v-ui/entry.js', './public/css/entry.js'])
.pipe(webpack(require('./node_modules/v-ui/webpack.config.js')))
.pipe(gulp.dest('public/css'));
});