Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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`.
- Host: GitHub
- URL: https://github.com/andrey-skl/webpack-config-merger
- Owner: andrey-skl
- License: mit
- Created: 2014-12-09T10:30:20.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-01-18T13:14:35.000Z (about 8 years ago)
- Last Synced: 2024-09-17T09:23:48.294Z (4 months ago)
- Language: JavaScript
- Size: 7.81 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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'
}
})
```