webpack.cfg
v0.0.1
Published
An easy to use Webpack 2 configuration library
Downloads
2
Readme
Webpack.cfg
An easy to use Webpack configuration library without a need to learn new API
Installation
Same as Webpack itself:
$ npm install --save-dev webpack.cfg
or
$ yarn add --dev webpack.cfg
Usage
// webpack.config.js
const webpackCfg = require('webpack.cfg')
module.exports = webpackCfg({
entry: './index',
output: {
filename: 'build.js'
}
})