@abdess76/i18nkit 1.0.2 → 1.0.3
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 +2 -1
- package/package.json +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -6,10 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
6
6
|
and this project adheres to
|
|
7
7
|
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
8
8
|
|
|
9
|
-
## [1.0.
|
|
9
|
+
## [1.0.3] - 05-01-2026
|
|
10
10
|
|
|
11
11
|
### Changed
|
|
12
12
|
|
|
13
|
+
- Removed generic `i18n` bin command to avoid conflicts
|
|
13
14
|
- Package published as scoped `@abdess76/i18nkit` on npm
|
|
14
15
|
- Updated documentation with correct install command
|
|
15
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abdess76/i18nkit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Universal i18n CLI - extract translation keys, sync language files, detect missing translations. Extensible plugin architecture.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Abdessamad DERRAZ",
|
|
@@ -16,8 +16,7 @@
|
|
|
16
16
|
"./package.json": "./package.json"
|
|
17
17
|
},
|
|
18
18
|
"bin": {
|
|
19
|
-
"i18nkit": "./bin/cli.js"
|
|
20
|
-
"i18n": "./bin/cli.js"
|
|
19
|
+
"i18nkit": "./bin/cli.js"
|
|
21
20
|
},
|
|
22
21
|
"main": "./bin/cli.js",
|
|
23
22
|
"types": "./types/index.d.ts",
|