@ui18n/cli
Version:
🌍 UI18n CLI工具 - 强大的国际化命令行工具
33 lines • 912 B
JavaScript
/**
* @ui18n/cli - UI18n命令行工具
*
* 提供完整的国际化工作流支持:
* - 项目初始化
* - 文本提取
* - 批量翻译
* - 配置管理
* - 统计报告
*/
// 核心类导出
export { CLI } from './cli-core.js';
// 命令导出
export { InitCommand } from './commands/init.js';
export { ExtractCommand } from './commands/extract.js';
export { TranslateCommand } from './commands/translate.js';
export { ConfigCommand } from './commands/config.js';
export { StatsCommand } from './commands/stats.js';
// 工具函数导出
export * from './utils/file-utils.js';
export * from './utils/logger.js';
export { ConfigManager } from './utils/config-manager.js';
// 类型定义导出
export * from './types.js';
// 版本信息
export const VERSION = '0.1.0';
export const CLI_NAME = 'ui18n';
// 默认导出
export default {
VERSION,
CLI_NAME
};
//# sourceMappingURL=index.js.map