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 Compare versions

Comparing version 5.0.8 to 5.0.9

4

CHANGELOG.md
# Changelog
## 5.0.9 / 2020-07-09
- Fix - Don't crash on `merge()` and `merge([])`. Now `{}` is returned in these corner cases.
## 5.0.8 / 2020-07-07

@@ -4,0 +8,0 @@

@@ -47,2 +47,6 @@ "use strict";

}
// No configuration at all
if (!firstConfiguration) {
return {};
}
// @ts-ignore

@@ -54,2 +58,6 @@ if (firstConfiguration.then) {

if (Array.isArray(firstConfiguration)) {
// Empty array
if (firstConfiguration.length === 0) {
return {};
}
// @ts-ignore

@@ -56,0 +64,0 @@ if (firstConfiguration[0].then) {

2

package.json

@@ -5,3 +5,3 @@ {

"author": "Juho Vepsalainen <bebraw@gmail.com>",
"version": "5.0.8",
"version": "5.0.9",
"scripts": {

@@ -8,0 +8,0 @@ "build": "tsc",

Sorry, the diff of this file is not supported yet

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