Socket
Socket
Sign inDemoInstall

webpack-merge

Package Overview
Dependencies
6
Maintainers
1
Versions
89
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install
Previous1
35
9Next

4.1.5

Diff

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
bebraw
published 2.6.1 •

Changelog

Source

2.6.1 / 2017-01-29

  • Bug fix - merge.smart should not merge rules that have differing enforce fields. #65
bebraw
published 2.6.0 •

Changelog

Source

2.6.0 / 2017-01-27

  • Bug fix - Support replace mode for merge.smartStrategy. #63
SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc