UNPKG

@scoutello/i18n-magic

Version:

Intelligent CLI toolkit that automates internationalization workflows for JavaScript/TypeScript projects and auto-translates new string keys to other languages

19 lines (14 loc) 537 B
// Export command functions for programmatic usage export { checkMissing } from "./commands/check-missing.js" export { removeUnusedKeys } from "./commands/clean.js" export { replaceTranslation } from "./commands/replace.js" export { translateMissing } from "./commands/scan.js" export { syncLocales } from "./commands/sync-locales.js" // Export utility functions export { addTranslationKey, loadConfig } from "./lib/utils.js" // Export types export type { CommandType, Configuration, GlobPatternConfig, } from "./lib/types.js"