webpack-merge
Advanced tools
Changelog
4.2.2 / 2019-08-27
npm audit warning
. #116merge.unique
documentation. #103Changelog
4.2.1 / 2019-01-04
oneOf
at merge.smart
. #111Changelog
4.1.4 / 2018-08-01
Changelog
4.1.0 / 2017-03-16
merge.multiple
to allow working with webpack multi-compiler mode. It accepts multiple objects and returns an array you can push to webpack. #74Changelog
4.0.0 / 2017-03-06
merge.smart
allows re-ordering loaders like below. #70merge.smart(
{
loaders: [
{
test: /\.js$/,
loaders: ["babel"],
},
],
},
{
loaders: [
{
test: /\.js$/,
loaders: ["react-hot", "babel"],
},
],
},
);
// will become
{
loaders: [
{
test: /\.js$/,
// order of second argument is respected
loaders: ["react-hot", "babel"],
},
];
}