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

1.1.2

Diff

Changelog

Source

1.1.2 / 2016-12-18

  • Bug fix - merge({ entry: {} }) should return the same result as input instead of a function.
bebraw
published 1.1.1 •

Changelog

Source

1.1.1 / 2016-12-11

  • Bug fix - Support previously undocumented, yet used, merge([<object>]) format. This works with all available functions. #46
bebraw
published 1.1.0 •

Changelog

Source

1.1.0 / 2016-12-09

  • Feature - Allow merge behavior to be customized with overrides. Example:
var output = merge({
  customizeArray(a, b, key) { return [...a, ...b]; },
  customizeObject(a, b, key) { return mergeWith(a, b); }
})(object1, object2, object3, ...);

This allows you to guarantee array uniqueness and so on.

bebraw
published 1.0.2 •

Changelog

Source

1.0.2 / 2016-11-29

  • Bug fix - merge should not mutate inputs with mismatched keys.
bebraw
published 1.0.1 •

bebraw
published 1.0.0 •

Changelog

Source

1.0.0 / 2016-11-28

  • Feature: Support merging Webpack 2 Rule.use. #38
  • Bug fix - Don't concat loaders if the first matching entry's include/exclude doesn't match. #39
bebraw
published 1.0.0-beta1 •

bebraw
published 0.20.0 •

Changelog

Source

0.20.0 / 2016-11-27

  • Feature: Add support for merging functions. This feature has been designed postcss in mind. It executes the functions, picks their results, and packs them again.
bebraw
published 0.19.0 •

Changelog

Source

0.19.0 / 2016-11-26

  • Feature: Add support for 'replace' option at merge.strategy. It literally replaces the old field value with the newer one. #40
bebraw
published 0.18.0 •

Changelog

Source

0.18.0 / 2016-11-24

  • Feature: Add support for recursive definitions at merge.strategy. Example:
var output = merge.strategy({
  entry: 'prepend',
  'module.loaders': 'prepend'
})(object1, object2, object3, ...);
  • Feature: Add merge.smartStrategy. This combines the ideas of merge.smart and merge.strategy into one. Example:
var output = merge.smartStrategy({
  entry: 'prepend',
  'module.loaders': 'prepend'
})(object1, object2, object3, ...);
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