webpack-atoms
v17.1.0
Published
Small atomic bits for crafting webpack configs
Downloads
1,494
Maintainers
Readme
webpack-atoms
Small atomic bits for crafting webpack configs
npm i webpack-atoms
webpack.config
const { rules, plugins, loaders } = require('webpack-atoms');
module.exports = {
entry: './src/app.js',
output: {
/* ... */
},
module: {
rules: [
rules.js(),
rules.images(),
rules.css(),
]
},
plugins: [
plugins.uglify(),
plugins.loaderOptions(),
plugins.extractText(),
]
}