@flickerbox/build
v21.1.6
Published
Flickerbox build module makes it easy to run webpack, babel, postcss, and more for a quality static resource build for your JS and CSS site assets.
Downloads
93
Readme
Flickerbox Build
Basic webpack.config.js
module.exports = require('@flickerbox/build/webpack.config')
.output
.path(__dirname)
.filename('js/[name].js')
.end()
.entry('css')
.add('./src/sass/main.scss')
.end()
.entry('main')
.add('./src/js/main.js')
.end()
.toConfig();