@automattic/remove-asset-webpack-plugin 1.0.34 → 1.0.35
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 +6 -0
- package/package.json +3 -4
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,11 @@ 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.35] - 2026-02-23
|
|
9
|
+
### Changed
|
|
10
|
+
- Set `.repository.url` in `package.json` to the mirror repo rather than the monorepo. Required for enabling provenance. [#47149]
|
|
11
|
+
- Update package dependencies. [#47173]
|
|
12
|
+
|
|
8
13
|
## [1.0.34] - 2026-02-10
|
|
9
14
|
### Changed
|
|
10
15
|
- Update package dependencies. [#47002]
|
|
@@ -151,6 +156,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
151
156
|
### Added
|
|
152
157
|
- Initial release.
|
|
153
158
|
|
|
159
|
+
[1.0.35]: https://github.com/Automattic/remove-asset-webpack-plugin/compare/v1.0.34...v1.0.35
|
|
154
160
|
[1.0.34]: https://github.com/Automattic/remove-asset-webpack-plugin/compare/v1.0.33...v1.0.34
|
|
155
161
|
[1.0.33]: https://github.com/Automattic/remove-asset-webpack-plugin/compare/v1.0.32...v1.0.33
|
|
156
162
|
[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.35",
|
|
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",
|
|
@@ -31,7 +30,7 @@
|
|
|
31
30
|
},
|
|
32
31
|
"devDependencies": {
|
|
33
32
|
"jest": "30.2.0",
|
|
34
|
-
"webpack": "5.
|
|
33
|
+
"webpack": "5.105.2",
|
|
35
34
|
"webpack-cli": "6.0.1"
|
|
36
35
|
},
|
|
37
36
|
"peerDependencies": {
|