@wordpress/dependency-extraction-webpack-plugin 3.3.0 → 3.3.1
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 +9 -3
- package/package.json +2 -2
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
|
-
-
|
|
113
|
-
-
|
|
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
|
-
|
|
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/dependency-extraction-webpack-plugin",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.1",
|
|
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": "
|
|
41
|
+
"gitHead": "2e4922861e49f5a090f9dc52056165092cfba163"
|
|
42
42
|
}
|