i18ntk 1.0.0 → 1.0.2
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 +16 -1
- package/README.md +1 -1
- package/package.json +4 -2
- package/settings/admin-config.json +7 -0
- package/settings/settings-cli.js +1021 -0
- package/settings/settings-manager.js +596 -0
- package/settings/user-config.json +97 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,11 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to the I18N Management Toolkit are documented here. This project follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
4
4
|
|
|
5
|
-
**Current Version:** 1.0.
|
|
5
|
+
**Current Version:** 1.0.2 (2025-01-27) - **PATCH RELEASE** 🔧
|
|
6
6
|
|
|
7
7
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
8
8
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
9
9
|
|
|
10
|
+
## [1.0.2] - 2025-01-27
|
|
11
|
+
|
|
12
|
+
### 🔧 Patch Release
|
|
13
|
+
- **Fixed**: Added missing `settings/` directory to package files
|
|
14
|
+
- **Fixed**: Resolved "Cannot find module '../settings/settings-manager'" error
|
|
15
|
+
- **Improved**: Ensured all commands work correctly after global installation
|
|
16
|
+
- **Note**: All functionality remains the same, this is purely a packaging fix
|
|
17
|
+
|
|
18
|
+
## [1.0.1] - 2025-07-27
|
|
19
|
+
|
|
20
|
+
### 🔧 Patch Release
|
|
21
|
+
- **Fixed**: Added main `i18ntk` command to bin configuration for easier CLI access
|
|
22
|
+
- **Improved**: Users can now run `i18ntk --version` and `i18ntk --help` directly
|
|
23
|
+
- **Note**: All functionality remains the same, this is purely a usability improvement
|
|
24
|
+
|
|
10
25
|
## [1.0.0] - 2025-07-27 - 🎉 FIRST STABLE RELEASE
|
|
11
26
|
|
|
12
27
|
### 🚀 Welcome to i18ntk v1.0.0!
|
package/README.md
CHANGED
|
@@ -501,7 +501,7 @@ node dev/tests/test-features.js
|
|
|
501
501
|
|
|
502
502
|
---
|
|
503
503
|
|
|
504
|
-
**Version 1.0.
|
|
504
|
+
**Version:** 1.0.2 – Patch release with packaging fixes. Fixed missing settings directory and module resolution issues. Ready for production use! 🎉
|
|
505
505
|
## 📄 License
|
|
506
506
|
|
|
507
507
|
This project is licensed under the MIT License - see the `LICENSE` file for details.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "i18ntk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "i18ntk (i18n Toolkit) - A comprehensive, enterprise-grade internationalization (i18n) management toolkit for JavaScript/TypeScript projects with advanced analysis, validation, and automation features",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"i18n",
|
|
@@ -39,6 +39,7 @@
|
|
|
39
39
|
"type": "commonjs",
|
|
40
40
|
"main": "main/i18ntk-manage.js",
|
|
41
41
|
"bin": {
|
|
42
|
+
"i18ntk": "main/i18ntk-manage.js",
|
|
42
43
|
"i18ntk-manage": "main/i18ntk-manage.js",
|
|
43
44
|
"i18ntk-init": "main/i18ntk-init.js",
|
|
44
45
|
"i18ntk-analyze": "main/i18ntk-analyze.js",
|
|
@@ -58,6 +59,7 @@
|
|
|
58
59
|
"main/",
|
|
59
60
|
"utils/",
|
|
60
61
|
"scripts/",
|
|
62
|
+
"settings/",
|
|
61
63
|
"ui-locales/",
|
|
62
64
|
"locales/",
|
|
63
65
|
"docs/",
|
|
@@ -122,7 +124,7 @@
|
|
|
122
124
|
},
|
|
123
125
|
"preferGlobal": true,
|
|
124
126
|
"versionInfo": {
|
|
125
|
-
"version": "1.0.
|
|
127
|
+
"version": "1.0.2",
|
|
126
128
|
"releaseDate": "27/07/2025",
|
|
127
129
|
"lastUpdated": "27/07/2025",
|
|
128
130
|
"maintainer": "Vladimir Noskov",
|