@automattic/remove-asset-webpack-plugin 1.0.21 → 1.0.23

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/CHANGELOG.md +10 -0
  2. package/package.json +5 -4
package/CHANGELOG.md CHANGED
@@ -5,6 +5,14 @@ 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.23] - 2024-11-04
9
+ ### Added
10
+ - Enable test coverage. [#39961]
11
+
12
+ ## [1.0.22] - 2024-08-30
13
+ ### Changed
14
+ - Updated package dependencies. [#39111]
15
+
8
16
  ## [1.0.21] - 2023-12-03
9
17
  ### Changed
10
18
  - Updated package dependencies. [#34427]
@@ -99,6 +107,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
107
  ### Added
100
108
  - Initial release.
101
109
 
110
+ [1.0.23]: https://github.com/Automattic/remove-asset-webpack-plugin/compare/v1.0.22...v1.0.23
111
+ [1.0.22]: https://github.com/Automattic/remove-asset-webpack-plugin/compare/v1.0.21...v1.0.22
102
112
  [1.0.21]: https://github.com/Automattic/remove-asset-webpack-plugin/compare/v1.0.20...v1.0.21
103
113
  [1.0.20]: https://github.com/Automattic/remove-asset-webpack-plugin/compare/v1.0.19...v1.0.20
104
114
  [1.0.19]: https://github.com/Automattic/remove-asset-webpack-plugin/compare/v1.0.18...v1.0.19
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automattic/remove-asset-webpack-plugin",
3
- "version": "1.0.21",
3
+ "version": "1.0.23",
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": {
@@ -14,18 +14,19 @@
14
14
  "license": "GPL-2.0-or-later",
15
15
  "author": "Automattic",
16
16
  "scripts": {
17
- "test": "jest tests"
17
+ "test": "jest --config=tests/jest.config.cjs",
18
+ "test-coverage": "pnpm run test --coverage"
18
19
  },
19
20
  "dependencies": {
20
21
  "debug": "^4.3.2"
21
22
  },
22
23
  "devDependencies": {
23
24
  "jest": "29.7.0",
24
- "webpack": "5.76.0",
25
+ "webpack": "5.94.0",
25
26
  "webpack-cli": "4.9.1"
26
27
  },
27
28
  "peerDependencies": {
28
- "webpack": "^5.8.0"
29
+ "webpack": "^5.94.0"
29
30
  },
30
31
  "exports": {
31
32
  ".": "./src/index.js"