Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/andrey-skl/webpack-config-merger

A simple module for merging webpack configs. Inspired by `grunt-webpack`.
https://github.com/andrey-skl/webpack-config-merger

Last synced: 3 months ago
JSON representation

A simple module for merging webpack configs. Inspired by `grunt-webpack`.

Awesome Lists containing this project

README

        

webpack-config-merger
=====================

A simple module for merge webpack configs. Inspired by the [grunt-webpack](https://github.com/webpack/grunt-webpack).

Usage:

```javascript
var mergeWebpackConfig = require('webpack-config-merger');

mergeWebpackConfig(require('./node_modules/packageToBuild/webpack.config.js'), {
entry: 'path/to/entry.js',
output: {
path: 'path/to/dest',
filename: 'dest.js'
}
})
```