@wordpress/dependency-extraction-webpack-plugin 3.3.0 → 3.3.2

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/README.md CHANGED
@@ -109,8 +109,8 @@ The output format for the generated asset file. There are two options available:
109
109
 
110
110
  ##### `outputFilename`
111
111
 
112
- - Type: string | function
113
- - Default: null
112
+ - Type: string | function
113
+ - Default: null
114
114
 
115
115
  The filename for the generated asset file. Accepts the same values as the Webpack `output.filename` option.
116
116
 
@@ -233,4 +233,10 @@ $script_url = plugins_url( $script_path, __FILE__ );
233
233
  wp_enqueue_script( 'script', $script_url, $script_asset['dependencies'], $script_asset['version'] );
234
234
  ```
235
235
 
236
- <br/><br/><p align="center"><img src="https://s.w.org/style/images/codeispoetry.png?1" alt="Code is Poetry." /></p>
236
+ ## Contributing to this package
237
+
238
+ This is an individual package that's part of the Gutenberg project. The project is organized as a monorepo. It's made up of multiple self-contained software packages, each with a specific purpose. The packages in this monorepo are published to [npm](https://www.npmjs.com/) and used by [WordPress](https://make.wordpress.org/core/) as well as other software projects.
239
+
240
+ To find out more about contributing to this package or Gutenberg as a whole, please read the project's main [contributor guide](https://github.com/WordPress/gutenberg/tree/HEAD/CONTRIBUTING.md).
241
+
242
+ <br /><br /><p align="center"><img src="https://s.w.org/style/images/codeispoetry.png?1" alt="Code is Poetry." /></p>
package/lib/util.js CHANGED
@@ -1,5 +1,9 @@
1
1
  const WORDPRESS_NAMESPACE = '@wordpress/';
2
- const BUNDLED_PACKAGES = [ '@wordpress/icons', '@wordpress/interface' ];
2
+ const BUNDLED_PACKAGES = [
3
+ '@wordpress/icons',
4
+ '@wordpress/interface',
5
+ '@wordpress/style-engine',
6
+ ];
3
7
 
4
8
  /**
5
9
  * Default request to global transformation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/dependency-extraction-webpack-plugin",
3
- "version": "3.3.0",
3
+ "version": "3.3.2",
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": "d95ccb9366e249133cdb1d7b25c382446b9ee502"
41
+ "gitHead": "4566ac290359553d04de4eb574545309343f790b"
42
42
  }