Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

webpack-merge

Package Overview
Dependencies
Maintainers
1
Versions
91
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webpack-merge - npm Package Versions

1
10

4.2.2

Diff

Changelog

Source

4.2.2 / 2019-08-27

  • Fix - Update minimum version of lodash to 4.17.15 in order to avoid npm audit warning. #116
  • Docs - Improve merge.unique documentation. #103
  • Docs - Add clear note about precedence. #115
bebraw
published 4.2.1 •

Changelog

Source

4.2.1 / 2019-01-04

  • Feature - Support oneOf at merge.smart. #111
  • Fix - If there's only single array to merge, clone it. #106
bebraw
published 4.1.5 •

bebraw
published 4.1.4 •

Changelog

Source

4.1.4 / 2018-08-01

  • Maintenance - Remove bitHound from the README as it closed down. #102
bebraw
published 4.1.3 •

Changelog

Source

4.1.3 / 2018-06-14

  • Fix - Smart merge respects the existing loader order #79, #101
bebraw
published 4.1.2 •

Changelog

Source

4.1.2 / 2017-02-22

  • Maintenance - Update lodash, #97, #98
bebraw
published 4.1.1 •

Changelog

Source

4.1.1 / 2017-11-01

  • Docs - Add customizeArray and customizeObject examples. #93
bebraw
published 4.1.0 •

Changelog

Source

4.1.0 / 2017-03-16

  • Feature - merge.multiple to allow working with webpack multi-compiler mode. It accepts multiple objects and returns an array you can push to webpack. #74
bebraw
published 4.0.0 •

Changelog

Source

4.0.0 / 2017-03-06

  • Breaking feature - merge.smart allows re-ordering loaders like below. #70
merge.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"],
    },
  ];
}
bebraw
published 3.0.0 •

Changelog

Source

3.0.0 / 2017-02-19

  • Breaking fix - merge.smart should not merge a child missing include/exclude to a parent that has either. This is safer and more predictable behavior than the old one. #69
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc