@wordpress/dependency-extraction-webpack-plugin 4.1.0 → 4.1.1-next.4d3b314fd5.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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/CHANGELOG.md +0 -81
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/dependency-extraction-webpack-plugin",
3
- "version": "4.1.0",
3
+ "version": "4.1.1-next.4d3b314fd5.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",
@@ -38,5 +38,5 @@
38
38
  "publishConfig": {
39
39
  "access": "public"
40
40
  },
41
- "gitHead": "23e136283fa1d3b8d9d8b33869f871ad5eb77726"
41
+ "gitHead": "25054766423cb49d959eb656c2533530073ff5c2"
42
42
  }
package/CHANGELOG.md DELETED
@@ -1,81 +0,0 @@
1
- <!-- Learn how to maintain this file at https://github.com/WordPress/gutenberg/tree/HEAD/packages#maintaining-changelogs. -->
2
-
3
- ## Unreleased
4
-
5
- ## 4.1.0 (2022-09-21)
6
-
7
- ### New Features
8
-
9
- - Include `@wordpress/style-engine` on the list of external dependencies to allow using `wp.styleEngine` global with WordPress 6.1 and beyond ([#43840](https://github.com/WordPress/gutenberg/pull/43840)).
10
-
11
- ## 4.0.0 (2022-08-24)
12
-
13
- ### Breaking Change
14
-
15
- - Increase the minimum Node.js version to 14 ([#43141](https://github.com/WordPress/gutenberg/pull/43141)).
16
-
17
- ## 3.7.0 (2022-07-13)
18
-
19
- ### New Features
20
-
21
- - Output asset files for shared chunks, too ([#41002](https://github.com/WordPress/gutenberg/pull/41002)).
22
-
23
- ## 3.5.0 (2022-05-18)
24
-
25
- ### Bug Fix
26
-
27
- - Use OpenSSL provider supported in Node 17+ when calling `crypto.createHash` ([#40503](https://github.com/WordPress/gutenberg/pull/40503)).
28
- - Add new line at the end of generated `*.asset.php` files ([#40753](https://github.com/WordPress/gutenberg/pull/40753)).
29
- - Calculate version hashes based on output file contents rather than input files and other Webpack internal state ([#34969](https://github.com/WordPress/gutenberg/pull/34969)).
30
-
31
- ## 3.3.0 (2022-01-27)
32
-
33
- - Add the optional `externalizedReportFile` option ([#35106](https://github.com/WordPress/gutenberg/pull/35106)).
34
-
35
- ## 3.0.0 (2021-01-21)
36
-
37
- ### Breaking Changes
38
-
39
- - Increase the minimum Node.js version to 12 ([#27934](https://github.com/WordPress/gutenberg/pull/27934)).
40
-
41
- ## 2.9.0 (2020-12-17)
42
-
43
- ### New feature
44
-
45
- - Make the plugin compatible with webpack 5.
46
-
47
- ## 2.7.0 (2020-06-15)
48
-
49
- ### New feature
50
-
51
- - Include TypeScript type declarations ([#22498](https://github.com/WordPress/gutenberg/pull/22498))
52
-
53
- ## 2.5.0 (2020-04-01)
54
-
55
- ### New Features
56
-
57
- - The plugin now supports an optional `combinedOutputFile` option that is useful only when another `combineAssets` option is enabled. It allows providing a custom output file for the generated single assets file ([#20844](https://github.com/WordPress/gutenberg/pull/20844)).
58
-
59
- ## 2.3.0 (2020-02-21)
60
-
61
- ### New Features
62
-
63
- - The plugin now supports optional `combineAssets` option. When this flag is set to `true`, all information about assets is combined into a single `assets.(json|php)` file generated in the output directory ([#20330](https://github.com/WordPress/gutenberg/pull/20330)).
64
-
65
- ## 2.0.0 (2019-09-16)
66
-
67
- ### Breaking Changes
68
-
69
- - The plugin now adds, for each entry point, an asset file saved by default in PHP format that declares an object with the list of WordPress script dependencies for the entry point ([#17298](https://github.com/WordPress/gutenberg/pull/17298)). There is also an option to use JSON as the output format. The shape of metadata is also different from the previous version. Note that the file name has also changed from `*.deps.json` to `*.asset.json` or `*.asset.php`. References to the `*.deps.json` filename will need to be updated, even if you choose to use the JSON formatted file. Read more in the [README](./README.md) file.
70
-
71
- ## 1.0.1 (2019-05-22)
72
-
73
- ### Bug Fixes
74
-
75
- - Fix missing file entry for `util.js` in `package.json`
76
-
77
- ## 1.0.0 (2019-05-21)
78
-
79
- ### New Feature
80
-
81
- - Introduce the `@wordpress/dependency-extraction-webpack-plugin` package.