@wordpress/dependency-extraction-webpack-plugin 4.0.2 → 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 +3 -3
  2. package/CHANGELOG.md +0 -79
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/dependency-extraction-webpack-plugin",
3
- "version": "4.0.2",
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",
@@ -29,7 +29,7 @@
29
29
  "main": "lib/index.js",
30
30
  "types": "lib/types.d.ts",
31
31
  "dependencies": {
32
- "json2php": "^0.0.4",
32
+ "json2php": "^0.0.5",
33
33
  "webpack-sources": "^3.2.2"
34
34
  },
35
35
  "peerDependencies": {
@@ -38,5 +38,5 @@
38
38
  "publishConfig": {
39
39
  "access": "public"
40
40
  },
41
- "gitHead": "f6021282457317c7e12dcc3a3f02c9ac28e16a30"
41
+ "gitHead": "25054766423cb49d959eb656c2533530073ff5c2"
42
42
  }
package/CHANGELOG.md DELETED
@@ -1,79 +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
- ### New Features
6
-
7
- - 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)).
8
-
9
- ## 4.0.0 (2022-08-24)
10
-
11
- ### Breaking Change
12
-
13
- - Increase the minimum Node.js version to 14 ([#43141](https://github.com/WordPress/gutenberg/pull/43141)).
14
-
15
- ## 3.7.0 (2022-07-13)
16
-
17
- ### New Features
18
-
19
- - Output asset files for shared chunks, too ([#41002](https://github.com/WordPress/gutenberg/pull/41002)).
20
-
21
- ## 3.5.0 (2022-05-18)
22
-
23
- ### Bug Fix
24
-
25
- - Use OpenSSL provider supported in Node 17+ when calling `crypto.createHash` ([#40503](https://github.com/WordPress/gutenberg/pull/40503)).
26
- - Add new line at the end of generated `*.asset.php` files ([#40753](https://github.com/WordPress/gutenberg/pull/40753)).
27
- - 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)).
28
-
29
- ## 3.3.0 (2022-01-27)
30
-
31
- - Add the optional `externalizedReportFile` option ([#35106](https://github.com/WordPress/gutenberg/pull/35106)).
32
-
33
- ## 3.0.0 (2021-01-21)
34
-
35
- ### Breaking Changes
36
-
37
- - Increase the minimum Node.js version to 12 ([#27934](https://github.com/WordPress/gutenberg/pull/27934)).
38
-
39
- ## 2.9.0 (2020-12-17)
40
-
41
- ### New feature
42
-
43
- - Make the plugin compatible with webpack 5.
44
-
45
- ## 2.7.0 (2020-06-15)
46
-
47
- ### New feature
48
-
49
- - Include TypeScript type declarations ([#22498](https://github.com/WordPress/gutenberg/pull/22498))
50
-
51
- ## 2.5.0 (2020-04-01)
52
-
53
- ### New Features
54
-
55
- - 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)).
56
-
57
- ## 2.3.0 (2020-02-21)
58
-
59
- ### New Features
60
-
61
- - 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)).
62
-
63
- ## 2.0.0 (2019-09-16)
64
-
65
- ### Breaking Changes
66
-
67
- - 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.
68
-
69
- ## 1.0.1 (2019-05-22)
70
-
71
- ### Bug Fixes
72
-
73
- - Fix missing file entry for `util.js` in `package.json`
74
-
75
- ## 1.0.0 (2019-05-21)
76
-
77
- ### New Feature
78
-
79
- - Introduce the `@wordpress/dependency-extraction-webpack-plugin` package.