webpack-merge
Advanced tools
Comparing version 5.0.9 to 5.1.0
# Changelog | ||
## 5.1.0 / 2020-08-03 | ||
- Feature - Expose `merge` as `default` for backwards-compatibility with TypeScript. Now `import merge from "webpack-merge";` works there. In CommonJS, the default alias is exposed through `default` property due to technical constraints. | ||
## 5.0.9 / 2020-07-09 | ||
@@ -4,0 +8,0 @@ |
@@ -0,1 +1,2 @@ | ||
/// <reference types="webpack-dev-server" /> | ||
import { Configuration } from "webpack"; | ||
@@ -8,2 +9,2 @@ import unique from "./unique"; | ||
declare function customizeObject(rules: ICustomizeRules): (a: any, b: any, key: Key) => any; | ||
export { merge, mergeWithCustomize, unique, customizeArray, customizeObject }; | ||
export { merge as default, merge, mergeWithCustomize, unique, customizeArray, customizeObject, }; |
@@ -26,3 +26,3 @@ "use strict"; | ||
exports.__esModule = true; | ||
exports.customizeObject = exports.customizeArray = exports.unique = exports.mergeWithCustomize = exports.merge = void 0; | ||
exports.customizeObject = exports.customizeArray = exports.unique = exports.mergeWithCustomize = exports.merge = exports["default"] = void 0; | ||
var wildcard_1 = __importDefault(require("wildcard")); | ||
@@ -41,2 +41,3 @@ var merge_with_1 = __importDefault(require("./merge-with")); | ||
} | ||
exports["default"] = merge; | ||
exports.merge = merge; | ||
@@ -43,0 +44,0 @@ function mergeWithCustomize(options) { |
@@ -5,3 +5,3 @@ { | ||
"author": "Juho Vepsalainen <bebraw@gmail.com>", | ||
"version": "5.0.9", | ||
"version": "5.1.0", | ||
"scripts": { | ||
@@ -8,0 +8,0 @@ "build": "tsc", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
38712
290