td-web-cli 0.1.12 → 0.1.13

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.
Files changed (2) hide show
  1. package/README.md +16 -16
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # 项目名称
2
2
 
3
- 一个基于 Node.js 和 TypeScript 的高效 CLI 工具,用于提升工作效率。
3
+ 一个基于 node.js 和 typeScript 的高效 cli 工具,用于提升工作效率。
4
4
 
5
5
  ---
6
6
 
@@ -18,11 +18,11 @@
18
18
 
19
19
  ## 环境要求
20
20
 
21
- - Node.js >= 20.x(推荐使用 22.x 或更高版本)
21
+ - node.js >= 20.x(推荐使用 22.x 或更高版本)
22
22
  - npm >= 10.x
23
- - TypeScript >= 5.x
23
+ - typeScript >= 5.x
24
24
 
25
- > **注意**:部分依赖可能要求 Node.js 20 及以上版本,请根据实际情况调整。
25
+ > **注意**:部分依赖可能要求 node.js 20 及以上版本,请根据实际情况调整。
26
26
 
27
27
  ---
28
28
 
@@ -47,8 +47,8 @@ npm install
47
47
 
48
48
  ### 代码结构
49
49
 
50
- - `src/` - TypeScript 源代码目录
51
- - `dist/` - 编译后的 JavaScript 输出目录
50
+ - `src/` - typeScript 源代码目录
51
+ - `dist/` - 编译后的 javaScript 输出目录
52
52
  - `release.js` - 发布脚本(可直接运行或编译后运行)
53
53
 
54
54
  ### 运行开发环境
@@ -59,7 +59,7 @@ npm link
59
59
  td-web-cli # 确保本机未全局安装该工具
60
60
  ```
61
61
 
62
- 通过 `npm link`,本地调试 CLI 命令 `td-web-cli`。
62
+ 通过 `npm link`,本地调试 cli 命令 `td-web-cli`。
63
63
 
64
64
  ---
65
65
 
@@ -67,7 +67,7 @@ td-web-cli # 确保本机未全局安装该工具
67
67
 
68
68
  ### 命令行执行
69
69
 
70
- 执行 CLI 工具:
70
+ 执行 cli 工具:
71
71
 
72
72
  ```bash
73
73
  td-web-cli
@@ -75,13 +75,13 @@ td-web-cli
75
75
 
76
76
  ### 功能说明
77
77
 
78
- - 将 Excel 表格转换为对应的 JSON 文件,简化数据处理流程。
78
+ - 将 excel 表格转换为对应的 json 文件,简化数据处理流程。
79
79
 
80
80
  ---
81
81
 
82
82
  ## 构建
83
83
 
84
- 使用 TypeScript 编译项目:
84
+ 使用 typeScript 编译项目:
85
85
 
86
86
  ```bash
87
87
  npm run build
@@ -105,7 +105,7 @@ npm run release
105
105
  - 依赖安装
106
106
  - 项目构建
107
107
  - 发布到 npm
108
- - 提交并推送 Git 代码
108
+ - 提交并推送 git 代码
109
109
 
110
110
  ---
111
111
 
@@ -113,17 +113,17 @@ npm run release
113
113
 
114
114
  ```
115
115
  .
116
- ├── src/ # TypeScript 源代码
116
+ ├── src/ # typeScript 源代码
117
117
  │ └── index.ts # 入口文件
118
118
  ├── dist/ # 编译输出目录
119
119
  ├── release.js # 发布脚本
120
120
  ├── setting.json # 配置文件
121
121
  ├── package.json # 项目配置
122
- ├── tsconfig.json # TypeScript 配置
122
+ ├── tsconfig.json # typeScript 配置
123
123
  ├── README.md # 项目说明文件
124
- ├── .gitignore # Git 忽略文件
125
- ├── .prettierignore # Prettier 忽略文件
126
- ├── .prettierrc # Prettier 配置文件
124
+ ├── .gitignore # git 忽略文件
125
+ ├── .prettierignore # prettier 忽略文件
126
+ ├── .prettierrc # prettier 配置文件
127
127
  └── package-lock.json # 依赖锁定文件
128
128
  ```
129
129
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "td-web-cli",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "A CLI tool for efficiency",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",