@automattic/i18n-check-webpack-plugin 1.1.25 → 1.1.26
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 +5 -0
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,10 @@ 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.1.26] - 2025-08-01
|
|
9
|
+
### Changed
|
|
10
|
+
- Internal updates.
|
|
11
|
+
|
|
8
12
|
## [1.1.25] - 2025-07-21
|
|
9
13
|
### Changed
|
|
10
14
|
- Update package dependencies. [#44356]
|
|
@@ -277,6 +281,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
277
281
|
### Added
|
|
278
282
|
- Initial release.
|
|
279
283
|
|
|
284
|
+
[1.1.26]: https://github.com/Automattic/i18n-check-webpack-plugin/compare/v1.1.25...v1.1.26
|
|
280
285
|
[1.1.25]: https://github.com/Automattic/i18n-check-webpack-plugin/compare/v1.1.24...v1.1.25
|
|
281
286
|
[1.1.24]: https://github.com/Automattic/i18n-check-webpack-plugin/compare/v1.1.23...v1.1.24
|
|
282
287
|
[1.1.23]: https://github.com/Automattic/i18n-check-webpack-plugin/compare/v1.1.22...v1.1.23
|
package/package.json
CHANGED
|
@@ -1,11 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/i18n-check-webpack-plugin",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.26",
|
|
4
4
|
"description": "A Webpack plugin to check that WordPress i18n hasn't been mangled by Webpack optimizations.",
|
|
5
|
-
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/i18n-check-webpack-plugin/#readme",
|
|
6
|
-
"bugs": {
|
|
7
|
-
"url": "https://github.com/Automattic/jetpack/labels/[JS Package] I18n Check Webpack Plugin"
|
|
8
|
-
},
|
|
9
5
|
"keywords": [
|
|
10
6
|
"webpack",
|
|
11
7
|
"plugin",
|
|
@@ -14,6 +10,10 @@
|
|
|
14
10
|
"gettext",
|
|
15
11
|
"i18n"
|
|
16
12
|
],
|
|
13
|
+
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/i18n-check-webpack-plugin/#readme",
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/Automattic/jetpack/labels/[JS Package] I18n Check Webpack Plugin"
|
|
16
|
+
},
|
|
17
17
|
"repository": {
|
|
18
18
|
"type": "git",
|
|
19
19
|
"url": "https://github.com/Automattic/jetpack.git",
|
|
@@ -21,6 +21,13 @@
|
|
|
21
21
|
},
|
|
22
22
|
"license": "GPL-2.0-or-later",
|
|
23
23
|
"author": "Automattic",
|
|
24
|
+
"exports": {
|
|
25
|
+
".": "./src/I18nCheckPlugin.js",
|
|
26
|
+
"./GettextEntries": "./src/GettextEntries.js",
|
|
27
|
+
"./GettextEntry": "./src/GettextEntry.js",
|
|
28
|
+
"./GettextExtractor": "./src/GettextExtractor.js",
|
|
29
|
+
"./I18nSafeMangleExportsPlugin": "./src/I18nSafeMangleExportsPlugin.js"
|
|
30
|
+
},
|
|
24
31
|
"scripts": {
|
|
25
32
|
"test": "jest --config=tests/jest.config.cjs",
|
|
26
33
|
"test-coverage": "pnpm run test --coverage"
|
|
@@ -38,12 +45,5 @@
|
|
|
38
45
|
"peerDependencies": {
|
|
39
46
|
"@babel/core": "^7.0.0",
|
|
40
47
|
"webpack": "^5.94.0"
|
|
41
|
-
},
|
|
42
|
-
"exports": {
|
|
43
|
-
".": "./src/I18nCheckPlugin.js",
|
|
44
|
-
"./I18nSafeMangleExportsPlugin": "./src/I18nSafeMangleExportsPlugin.js",
|
|
45
|
-
"./GettextExtractor": "./src/GettextExtractor.js",
|
|
46
|
-
"./GettextEntries": "./src/GettextEntries.js",
|
|
47
|
-
"./GettextEntry": "./src/GettextEntry.js"
|
|
48
48
|
}
|
|
49
49
|
}
|