diff --git a/package.json b/package.json index ee17034..6737727 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "i18n-magic", - "version": "0.7.0", + "version": "0.7.1", "license": "MIT", "description": "CLI to help you manage your locales JSON with translations, replacements, etc. with OpenAI", "repository": { @@ -34,7 +34,7 @@ "dotenv": "^16.4.5", "fast-glob": "^3.3.2", "i18next-scanner": "^4.5.0", - "openai": "^4.54.0", + "openai": "^4.61.0", "prompts": "^2.4.2" }, "devDependencies": { @@ -44,6 +44,6 @@ "@types/prompts": "^2.4.9", "dts-cli": "^2.0.5", "tslib": "^2.6.2", - "typescript": "^5.5.4" + "typescript": "^5.6.2" } } diff --git a/src/commands/check-missing.ts b/src/commands/check-missing.ts index 8ecd2aa..ea24140 100644 --- a/src/commands/check-missing.ts +++ b/src/commands/check-missing.ts @@ -8,6 +8,4 @@ export const checkMissing = async (config: Configuration) => { console.error("Error: Missing translations found!") process.exit(1) } - - console.log("No missing translations found.") }