@wordpress/dependency-extraction-webpack-plugin 3.7.0 → 4.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 4.0.0 (2022-08-24)
6
+
7
+ ### Breaking Change
8
+
9
+ - Increase the minimum Node.js version to 14 ([#43141](https://github.com/WordPress/gutenberg/pull/43141)).
10
+
5
11
  ## 3.7.0 (2022-07-13)
6
12
 
7
13
  ### New Features
package/README.md CHANGED
@@ -17,7 +17,7 @@ Install the module
17
17
  npm install @wordpress/dependency-extraction-webpack-plugin --save-dev
18
18
  ```
19
19
 
20
- **Note**: This package requires Node.js 12.0.0 or later. It also requires webpack 4.8.3 and newer. It is not compatible with older versions.
20
+ **Note**: This package requires Node.js 14.0.0 or later. It also requires webpack 4.8.3 and newer. It is not compatible with older versions.
21
21
 
22
22
  ## Usage
23
23
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/dependency-extraction-webpack-plugin",
3
- "version": "3.7.0",
3
+ "version": "4.0.0",
4
4
  "description": "Extract WordPress script dependencies from webpack bundles.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -20,7 +20,7 @@
20
20
  "url": "https://github.com/WordPress/gutenberg/issues"
21
21
  },
22
22
  "engines": {
23
- "node": ">=12"
23
+ "node": ">=14"
24
24
  },
25
25
  "files": [
26
26
  "lib",
@@ -38,5 +38,5 @@
38
38
  "publishConfig": {
39
39
  "access": "public"
40
40
  },
41
- "gitHead": "9d9d33bbdf317a4381b8ca1713e43bb50df653b3"
41
+ "gitHead": "171b87c7465b93e685e081c5f57f153507363c95"
42
42
  }