webpack-merge
Advanced tools
Comparing version 5.0.7 to 5.0.8
# Changelog | ||
## 5.0.6 / 2020-07-06 | ||
## 5.0.8 / 2020-07-07 | ||
- Fix - Support Node 10 #138 | ||
## 5.0.7 / 2020-07-06 | ||
- Fix - Drop tslib dependency by setting `"importHelpers": false,` | ||
@@ -27,2 +31,3 @@ | ||
- Breaking - Merge customization has been moved behind `mergeWithCustomize`. | ||
- Breaking - Bump supported Node version to 12 | ||
- Feature - `customizeArray` supports wildcards now. Example: `'entry.*': 'prepend'`. #45 #99 | ||
@@ -29,0 +34,0 @@ - Feature - Throw an error in case a `Promise` is being merged. It's better to wrap configuration within a `Promise` and merge inside it. #81 |
@@ -5,3 +5,3 @@ { | ||
"author": "Juho Vepsalainen <bebraw@gmail.com>", | ||
"version": "5.0.7", | ||
"version": "5.0.8", | ||
"scripts": { | ||
@@ -44,6 +44,9 @@ "build": "tsc", | ||
"engines": { | ||
"node": ">=12.0.0" | ||
"node": ">=10.0.0" | ||
}, | ||
"jest": { | ||
"collectCoverage": true | ||
"collectCoverage": true, | ||
"collectCoverageFrom": [ | ||
"dist/*.js" | ||
] | ||
}, | ||
@@ -50,0 +53,0 @@ "license": "MIT", |
@@ -177,4 +177,6 @@ [![Financial Contributors on Open Collective](https://opencollective.com/webpack-merge/all/badge.svg?label=financial+contributors)](https://opencollective.com/webpack-merge) [![build status](https://secure.travis-ci.org/survivejs/webpack-merge.svg)](http://travis-ci.org/survivejs/webpack-merge) [![codecov](https://codecov.io/gh/survivejs/webpack-merge/branch/master/graph/badge.svg)](https://codecov.io/gh/survivejs/webpack-merge) | ||
1. `nvm use` | ||
1. `npm i` | ||
1. `npm t -- --watch` | ||
1. `npm run build -- --watch` in one terminal | ||
1. `npm t -- --watch` in another one | ||
@@ -181,0 +183,0 @@ Before contributing, please [open an issue](https://github.com/survivejs/webpack-merge/issues/new) where to discuss. |
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
37823
223