update
This commit is contained in:
parent
a98ce17f2c
commit
52813a1d94
42
README.md
42
README.md
@ -1,26 +1,24 @@
|
||||
# 🐤 kiwi cli
|
||||
# 🐤 canary cli
|
||||
|
||||
Kiwi 的 CLI 工具
|
||||
canary 的 CLI 工具
|
||||
|
||||
## 如何使用
|
||||
|
||||
> yarn global add kiwi-clis
|
||||
|
||||
> 推荐与[🐤 Kiwi-国际化全流程解决方案](https://github.com/alibaba/kiwi)结合使用
|
||||
> yarn global add canary-clis
|
||||
|
||||
## CLI 参数
|
||||
|
||||
### kiwi `--init`
|
||||
### canary `--init`
|
||||
|
||||
初始化项目,生成 kiwi 的配置文件 `kiwi-config.json`
|
||||
初始化项目,生成 canary 的配置文件 `canary-config.json`
|
||||
|
||||
```js
|
||||
{
|
||||
// kiwi文件根目录,用于放置提取的langs文件
|
||||
"kiwiDir": "./.kiwi",
|
||||
// canary文件根目录,用于放置提取的langs文件
|
||||
"canaryDir": "./.canary",
|
||||
|
||||
// 配置文件目录,若调整配置文件,此处可手动修改
|
||||
"configFile": "./.kiwi/kiwi-config.json",
|
||||
"configFile": "./.canary/canary-config.json",
|
||||
|
||||
// 语言目录名,注意连线和下划线
|
||||
"srcLang": "zh-CN",
|
||||
@ -53,14 +51,14 @@ Kiwi 的 CLI 工具
|
||||
}
|
||||
```
|
||||
|
||||
### kiwi `--extract`
|
||||
### canary `--extract`
|
||||
|
||||
1. 一键批量替换指定文件夹下的所有文案
|
||||
|
||||
```shell script
|
||||
# --extract [dirPath] 指定文件夹路径
|
||||
# --prefix [prefix] 指定文案前缀 I18N.xxxx
|
||||
kiwi --extract [dirPath] --prefix [prefix]
|
||||
canary --extract [dirPath] --prefix [prefix]
|
||||
```
|
||||
|
||||
2. commit 提交时自动增量提取,在 precommit 脚本内添加如下指令
|
||||
@ -80,43 +78,43 @@ then
|
||||
delim=','
|
||||
done
|
||||
echo "\033[33m 正在检测未提取的中文文案,请稍后 \033[0m"
|
||||
kiwi --extract $TS_FILES || exit 1
|
||||
canary --extract $TS_FILES || exit 1
|
||||
fi
|
||||
```
|
||||
|
||||

|
||||

|
||||
|
||||
### kiwi `--import`
|
||||
### canary `--import`
|
||||
|
||||
导入翻译文案,将翻译人员翻译的文案,导入到项目中
|
||||
|
||||
```shell script
|
||||
# 导入送翻后的文案
|
||||
kiwi --import [filePath] en-US
|
||||
canary --import [filePath] en-US
|
||||
```
|
||||
|
||||
### kiwi `--export`
|
||||
### canary `--export`
|
||||
|
||||
导出未翻译的文案
|
||||
|
||||
```shell script
|
||||
# 导出指定语言的文案,lang取值为配置中distLangs值,如en-US导出还未翻译成英文的中文文案
|
||||
kiwi --export [filePath] en-US
|
||||
canary --export [filePath] en-US
|
||||
```
|
||||
|
||||
### kiwi `--sync`
|
||||
### canary `--sync`
|
||||
|
||||
同步各种语言的文案,同步未翻译文件
|
||||
|
||||
### kiwi `--mock`
|
||||
### canary `--mock`
|
||||
|
||||
使用 Google 翻译,翻译未翻译的文案
|
||||
如果同时配置 baiduApiKey 与 baiduApiKey 则命令行可手动选择翻译源
|
||||
|
||||
### kiwi `--translate`
|
||||
### canary `--translate`
|
||||
|
||||
全量翻译未翻译的中文文案,翻译结果自动导入 en-US zh-TW 等目录
|
||||
|
||||
```shell script
|
||||
kiwi --translate
|
||||
canary --translate
|
||||
```
|
||||
|
3
dist/extract/findChineseText.js
vendored
3
dist/extract/findChineseText.js
vendored
@ -71,8 +71,9 @@ function removeFileComment(code, fileName) {
|
||||
function findTextInTs(code, fileName) {
|
||||
const matches = [];
|
||||
const ast = ts.createSourceFile('', code, ts.ScriptTarget.ES2015, true, ts.ScriptKind.TSX);
|
||||
console.log(ast);
|
||||
function visit(node) {
|
||||
console.log(node.kind);
|
||||
console.log(node);
|
||||
switch (node.kind) {
|
||||
case ts.SyntaxKind.StringLiteral: {
|
||||
/** 判断 Ts 中的字符串含有中文 */
|
||||
|
2
dist/extract/findChineseText.js.map
vendored
2
dist/extract/findChineseText.js.map
vendored
File diff suppressed because one or more lines are too long
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@mi/canary-clis",
|
||||
"version": "1.0.3",
|
||||
"version": "1.0.4",
|
||||
"description": "a cli for canary",
|
||||
"main": "dist/index.js",
|
||||
"scripts": {
|
||||
|
@ -75,9 +75,9 @@ function removeFileComment(code, fileName) {
|
||||
function findTextInTs(code: string, fileName: string) {
|
||||
const matches = [];
|
||||
const ast = ts.createSourceFile('', code, ts.ScriptTarget.ES2015, true, ts.ScriptKind.TSX);
|
||||
|
||||
console.log(ast)
|
||||
function visit(node: ts.Node) {
|
||||
console.log(node.kind)
|
||||
console.log(node)
|
||||
switch (node.kind) {
|
||||
case ts.SyntaxKind.StringLiteral: {
|
||||
/** 判断 Ts 中的字符串含有中文 */
|
||||
|
Loading…
x
Reference in New Issue
Block a user