@automattic/remove-asset-webpack-plugin 1.0.7 → 1.0.10

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
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.0.10] - 2022-06-08
9
+ ### Changed
10
+ - Reorder JS imports for `import/order` eslint rule. [#24601]
11
+
12
+ ## [1.0.9] - 2022-05-18
13
+ ### Changed
14
+ - Updated package dependencies [#24372]
15
+
16
+ ## [1.0.8] - 2022-05-10
17
+ ### Changed
18
+ - Updated package dependencies [#24276]
19
+
8
20
  ## [1.0.7] - 2022-05-04
9
21
  ### Added
10
22
  - Add missing JavaScript dependencies. [#24096]
@@ -45,6 +57,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
45
57
  ### Added
46
58
  - Initial release.
47
59
 
60
+ [1.0.10]: https://github.com/Automattic/remove-asset-webpack-plugin/compare/v1.0.9...v1.0.10
61
+ [1.0.9]: https://github.com/Automattic/remove-asset-webpack-plugin/compare/v1.0.8...v1.0.9
62
+ [1.0.8]: https://github.com/Automattic/remove-asset-webpack-plugin/compare/v1.0.7...v1.0.8
48
63
  [1.0.7]: https://github.com/Automattic/remove-asset-webpack-plugin/compare/v1.0.6...v1.0.7
49
64
  [1.0.6]: https://github.com/Automattic/remove-asset-webpack-plugin/compare/v1.0.5...v1.0.6
50
65
  [1.0.5]: https://github.com/Automattic/remove-asset-webpack-plugin/compare/v1.0.4...v1.0.5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automattic/remove-asset-webpack-plugin",
3
- "version": "1.0.7",
3
+ "version": "1.0.10",
4
4
  "description": "A Webpack plugin to remove assets from the build.",
5
5
  "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/remove-asset-webpack-plugin/README.md#readme",
6
6
  "bugs": {
@@ -21,8 +21,8 @@
21
21
  "debug": "^4.3.2"
22
22
  },
23
23
  "devDependencies": {
24
- "jest": "27.3.1",
25
- "webpack": "5.65.0",
24
+ "jest": "28.1.0",
25
+ "webpack": "5.72.1",
26
26
  "webpack-cli": "4.9.1"
27
27
  },
28
28
  "peerDependencies": {
package/src/index.js CHANGED
@@ -1,10 +1,10 @@
1
1
  /**
2
2
  * Webpack plugin to avoid emitting certain assets.
3
3
  */
4
+ const debug = require( 'debug' )( '@automattic/remove-asset-webpack-plugin' );
4
5
  const webpack = require( 'webpack' );
5
- const PLUGIN_NAME = 'RemoveAsset';
6
6
 
7
- const debug = require( 'debug' )( '@automattic/remove-asset-webpack-plugin' );
7
+ const PLUGIN_NAME = 'RemoveAsset';
8
8
 
9
9
  const schema = {
10
10
  definitions: {