Skip to content

Commit cdd7e72

Browse files
committed
fixes
1 parent 20db938 commit cdd7e72

File tree

13 files changed

+2435
-1373
lines changed

13 files changed

+2435
-1373
lines changed

MCP-SERVER.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -774,10 +774,7 @@ Here's what happens when checking for all missing translations:
774774
- All keys are always stored in the English (`en`) locale as the source
775775
- The server uses your existing i18n-magic configuration for namespaces, load paths, and save paths
776776

777-
## Best Practices
778-
779-
1. **Always search before adding**: Use `search_translations` to check if similar text already exists
777+
## Best Practices1. **Always search before adding**: Use `search_translations` to check if similar text already exists
780778
2. **Use update for changes**: When modifying existing text, use `update_translation_key` instead of manually editing files
781779
3. **Let AI handle translation**: Both `add_translation_key` + `sync` and `update_translation_key` use AI to maintain consistency across languages
782-
4. **Namespace awareness**: Let the tool auto-detect namespaces, or specify when you need precise control
783-
780+
4. **Namespace awareness**: Let the tool auto-detect namespaces, or specify when you need precise control

biome.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/1.7.3/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.3.11/schema.json",
33
"javascript": {
44
"formatter": {
55
"semicolons": "asNeeded"
66
}
77
},
88
"formatter": {
99
"formatWithErrors": true,
10-
"ignore": ["**/.next/**", "**/ios/**", "**/android/**", "**/out/**"],
1110
"indentStyle": "space"
1211
},
1312
"linter": {
@@ -41,4 +40,4 @@
4140
}
4241
}
4342
}
44-
}
43+
}

package.json

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@scoutello/i18n-magic",
3-
"version": "0.53.0",
3+
"version": "0.59.0",
44
"private": false,
55
"license": "MIT",
66
"description": "Intelligent CLI toolkit that automates internationalization workflows with AI-powered translations for JavaScript/TypeScript projects",
@@ -70,25 +70,27 @@
7070
"openai": "^5.20.3"
7171
},
7272
"dependencies": {
73-
"@modelcontextprotocol/sdk": "^1.12.0",
74-
"chalk": "^5.4.1",
75-
"commander": "^13.1.0",
73+
"@modelcontextprotocol/sdk": "^1.25.2",
74+
"chalk": "^5.6.2",
75+
"cli-progress": "^3.12.0",
76+
"commander": "^14.0.2",
7677
"dotenv": "^16.5.0",
7778
"fast-glob": "^3.3.3",
7879
"i18next-scanner": "^4.6.0",
79-
"minimatch": "^10.0.3",
80+
"minimatch": "^10.1.1",
8081
"prompts": "^2.4.2",
8182
"zod": "^3.24.2"
8283
},
8384
"devDependencies": {
84-
"@biomejs/biome": "2.2.4",
85+
"@biomejs/biome": "2.3.11",
8586
"@tsconfig/recommended": "^1.0.8",
87+
"@types/cli-progress": "^3.11.6",
8688
"@types/jest": "^29.5.12",
8789
"@types/node": "^20.12.12",
8890
"@types/prompts": "^2.4.9",
8991
"jest": "^29.7.0",
9092
"openai": "^5.20.2",
91-
"typescript": "^5.9.2"
93+
"typescript": "^5.9.3"
9294
},
93-
"packageManager": "pnpm@10.2.1+sha512.398035c7bd696d0ba0b10a688ed558285329d27ea994804a52bad9167d8e3a72bcb993f9699585d3ca25779ac64949ef422757a6c31102c12ab932e5cbe5cc92"
95+
"packageManager": "pnpm@10.27.0"
9496
}

0 commit comments

Comments
 (0)