td-web-cli 0.1.30 → 0.1.32
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/README.md +9 -3
- package/package.json +4 -9
package/README.md
CHANGED
|
@@ -43,8 +43,12 @@ td-web-cli
|
|
|
43
43
|
|
|
44
44
|
### 功能说明
|
|
45
45
|
|
|
46
|
-
-
|
|
47
|
-
-
|
|
46
|
+
- 前端项目中文词条提取工具。[详细功能说明请点击这里](https://github.com/qianyuzzf/td-web-cli/blob/master/docs/i18n/extractEntry.md)
|
|
47
|
+
- 多语言 JSON 转 Excel 工具。[详细功能说明请点击这里](https://github.com/qianyuzzf/td-web-cli/blob/master/docs/i18n/json2excel.md)
|
|
48
|
+
- 多语言 Excel 转 JSON 及语言检测工具。[详细功能说明请点击这里](https://github.com/qianyuzzf/td-web-cli/blob/master/docs/i18n/excel2json.md)
|
|
49
|
+
- 多语言 JSON 文件合并工具。[详细功能说明请点击这里](https://github.com/qianyuzzf/td-web-cli/blob/master/docs/i18n/jsonMerge.md)
|
|
50
|
+
- 图片压缩工具。[详细功能说明请点击这里](https://github.com/qianyuzzf/td-web-cli/blob/master/docs/i18n/compressImage.md)
|
|
51
|
+
- 节假日查询与提醒工具。[详细功能说明请点击这里](https://github.com/qianyuzzf/td-web-cli/blob/master/docs/tools/getHolidayTime.md)
|
|
48
52
|
|
|
49
53
|
---
|
|
50
54
|
|
|
@@ -116,7 +120,9 @@ npm run release
|
|
|
116
120
|
```
|
|
117
121
|
.
|
|
118
122
|
├── src/ # TypeScript 源代码目录,存放项目的核心业务代码
|
|
119
|
-
│
|
|
123
|
+
│ │── api # 接口代码
|
|
124
|
+
│ │── modules # 模块代码
|
|
125
|
+
│ └── utils # 工具代码
|
|
120
126
|
├── dist/ # 编译输出目录,存放 TypeScript 编译后的 JavaScript 文件
|
|
121
127
|
├── docs/ # 项目文档目录,包含功能说明、使用手册、设计文档等
|
|
122
128
|
├── release.js # 发布脚本,自动化完成版本发布相关操作
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "td-web-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.32",
|
|
4
4
|
"description": "A CLI tool for efficiency",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -23,19 +23,14 @@
|
|
|
23
23
|
"td-web-cli",
|
|
24
24
|
"cli",
|
|
25
25
|
"i18n",
|
|
26
|
-
"
|
|
26
|
+
"image",
|
|
27
27
|
"tools",
|
|
28
|
-
"小工具",
|
|
29
28
|
"extractEntry",
|
|
30
|
-
"提取词条",
|
|
31
29
|
"json2excel",
|
|
32
|
-
"JSON转Excel",
|
|
33
30
|
"excel2json",
|
|
34
|
-
"Excel转JSON",
|
|
35
31
|
"jsonMerge",
|
|
36
|
-
"
|
|
37
|
-
"getHolidayTime"
|
|
38
|
-
"获取假期时间"
|
|
32
|
+
"compressImage",
|
|
33
|
+
"getHolidayTime"
|
|
39
34
|
],
|
|
40
35
|
"author": "",
|
|
41
36
|
"license": "ISC",
|