i18ntk 1.0.1 → 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 +9 -1
- package/README.md +1 -1
- package/package.json +3 -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,19 @@
|
|
|
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
|
+
|
|
10
18
|
## [1.0.1] - 2025-07-27
|
|
11
19
|
|
|
12
20
|
### 🔧 Patch Release
|
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",
|
|
@@ -59,6 +59,7 @@
|
|
|
59
59
|
"main/",
|
|
60
60
|
"utils/",
|
|
61
61
|
"scripts/",
|
|
62
|
+
"settings/",
|
|
62
63
|
"ui-locales/",
|
|
63
64
|
"locales/",
|
|
64
65
|
"docs/",
|
|
@@ -123,7 +124,7 @@
|
|
|
123
124
|
},
|
|
124
125
|
"preferGlobal": true,
|
|
125
126
|
"versionInfo": {
|
|
126
|
-
"version": "1.0.
|
|
127
|
+
"version": "1.0.2",
|
|
127
128
|
"releaseDate": "27/07/2025",
|
|
128
129
|
"lastUpdated": "27/07/2025",
|
|
129
130
|
"maintainer": "Vladimir Noskov",
|