ai-yuca 1.2.8 → 1.2.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/cli.js +2 -2
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/bin/cli.js
CHANGED
|
@@ -365,7 +365,7 @@ program
|
|
|
365
365
|
});
|
|
366
366
|
// 添加pull-crowdin命令
|
|
367
367
|
program
|
|
368
|
-
.command('pull
|
|
368
|
+
.command('cr-pull')
|
|
369
369
|
.description('从GCP下载Crowdin相关的JSON资源文件')
|
|
370
370
|
.option('-c, --config <path>', '指定配置文件路径(默认为项目根目录下的vs.config.json)')
|
|
371
371
|
.option('-k, --key-file <path>', 'GCP服务账号密钥文件路径(可选,不提供则使用应用默认凭证)')
|
|
@@ -391,7 +391,7 @@ program
|
|
|
391
391
|
});
|
|
392
392
|
// 添加crowdin-push命令
|
|
393
393
|
program
|
|
394
|
-
.command('
|
|
394
|
+
.command('cr-push')
|
|
395
395
|
.description('推送本地keys文件到Crowdin项目')
|
|
396
396
|
.option('-c, --config <path>', '指定配置文件路径(默认为项目根目录下的vs.config.json)')
|
|
397
397
|
.action(async (options) => {
|
package/dist/package.json
CHANGED