@dxtmisha/scripts 0.10.6 → 0.10.7
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
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [0.10.7] - 2026-07-06
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- **DesignTypes**: Updated the AI prompt in `DesignTypes.toAiEdit` to translate Russian JSDocs/comments to English instead of just removing them, if an English version is missing.
|
|
9
|
+
|
|
5
10
|
## [0.10.6] - 2026-07-05
|
|
6
11
|
|
|
7
12
|
### Changed
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dxtmisha/scripts",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.10.
|
|
4
|
+
"version": "0.10.7",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Development scripts and CLI tools for DXT UI projects - automated component generation, library building and project management tools",
|
|
7
7
|
"keywords": [
|
|
@@ -228,7 +228,7 @@ export class DesignTypes {
|
|
|
228
228
|
protected async toAiEdit(content: string): Promise<string> {
|
|
229
229
|
const generate = await this.toAi(
|
|
230
230
|
content,
|
|
231
|
-
'Remove all Russian comments from this code. '
|
|
231
|
+
'Remove all Russian comments from this code, but if a JSDoc or comment does not have an English version, translate it to English. '
|
|
232
232
|
+ 'Shorten English comments for AI; keep context but be brief. Do not delete obvious comments. '
|
|
233
233
|
+ 'Always keep All JSDoc "@example", "@remarks", "@note", and any other notes or warnings. '
|
|
234
234
|
+ 'Remove all imports. '
|