@automattic/remove-asset-webpack-plugin 1.0.34 → 1.0.36
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 +11 -0
- package/package.json +4 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,15 @@ 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.36] - 2026-03-30
|
|
9
|
+
### Changed
|
|
10
|
+
- Update package dependencies. [#47799]
|
|
11
|
+
|
|
12
|
+
## [1.0.35] - 2026-02-23
|
|
13
|
+
### Changed
|
|
14
|
+
- Set `.repository.url` in `package.json` to the mirror repo rather than the monorepo. Required for enabling provenance. [#47149]
|
|
15
|
+
- Update package dependencies. [#47173]
|
|
16
|
+
|
|
8
17
|
## [1.0.34] - 2026-02-10
|
|
9
18
|
### Changed
|
|
10
19
|
- Update package dependencies. [#47002]
|
|
@@ -151,6 +160,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
151
160
|
### Added
|
|
152
161
|
- Initial release.
|
|
153
162
|
|
|
163
|
+
[1.0.36]: https://github.com/Automattic/remove-asset-webpack-plugin/compare/v1.0.35...v1.0.36
|
|
164
|
+
[1.0.35]: https://github.com/Automattic/remove-asset-webpack-plugin/compare/v1.0.34...v1.0.35
|
|
154
165
|
[1.0.34]: https://github.com/Automattic/remove-asset-webpack-plugin/compare/v1.0.33...v1.0.34
|
|
155
166
|
[1.0.33]: https://github.com/Automattic/remove-asset-webpack-plugin/compare/v1.0.32...v1.0.33
|
|
156
167
|
[1.0.32]: https://github.com/Automattic/remove-asset-webpack-plugin/compare/v1.0.31...v1.0.32
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/remove-asset-webpack-plugin",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.36",
|
|
4
4
|
"description": "A Webpack plugin to remove assets from the build.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"webpack",
|
|
@@ -14,8 +14,7 @@
|
|
|
14
14
|
},
|
|
15
15
|
"repository": {
|
|
16
16
|
"type": "git",
|
|
17
|
-
"url": "https://github.com/Automattic/
|
|
18
|
-
"directory": "projects/js-packages/remove-asset-webpack-plugin"
|
|
17
|
+
"url": "git+https://github.com/Automattic/remove-asset-webpack-plugin.git"
|
|
19
18
|
},
|
|
20
19
|
"license": "GPL-2.0-or-later",
|
|
21
20
|
"author": "Automattic",
|
|
@@ -30,8 +29,8 @@
|
|
|
30
29
|
"debug": "^4.3.2"
|
|
31
30
|
},
|
|
32
31
|
"devDependencies": {
|
|
33
|
-
"jest": "30.
|
|
34
|
-
"webpack": "5.
|
|
32
|
+
"jest": "30.3.0",
|
|
33
|
+
"webpack": "5.105.2",
|
|
35
34
|
"webpack-cli": "6.0.1"
|
|
36
35
|
},
|
|
37
36
|
"peerDependencies": {
|