cloudcc-cli 1.3.5 → 1.3.6

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 CHANGED
@@ -1,3 +1,12 @@
1
+ # ReleaseV1.3.6
2
+ #### 发布日期:2023-2-22
3
+ #### 发布范围:全量
4
+ #### 发布内容
5
+ * 迭代
6
+ * 关闭version文件中添加更新日志内容
7
+ * 优化
8
+
9
+
1
10
  # ReleaseV1.3.5
2
11
  #### 发布日期:2023-2-21
3
12
  #### 发布范围:全量
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloudcc-cli",
3
- "version": "1.3.5",
3
+ "version": "1.3.6",
4
4
  "description": "cloudcc-cli",
5
5
  "keywords": [
6
6
  "cloudcc",
@@ -162,10 +162,16 @@ class Publish {
162
162
  }
163
163
  try {
164
164
  // 设置readme文件位置
165
- change("README", outPath,"version");
165
+ change("README", outPath, "README");
166
166
  } catch (error) {
167
167
  console.log(chalk.red("README写入异常:" + error))
168
168
  }
169
+ try {
170
+ // 7:写入版本信息
171
+ this.writeVersion(version, condition.type);
172
+ } catch (error) {
173
+ console.log(chalk.red("版本信息写入异常:" + error))
174
+ }
169
175
  // 8:发布代码并设置tags,触发发布,飞书提醒
170
176
  if (pushCodeAndTags(version, [condition.type], this.args.get("update"))) {
171
177
  if (projectConfig && projectConfig.config) {