Skip to content

Commit

Permalink
build: 发布 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rxliuli committed Aug 29, 2021
1 parent ca27f54 commit b0cd6b5
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
18 changes: 13 additions & 5 deletions libs/monorepo-changelog/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
# CHANGELOG

## 0.2.0

<!--hash:ca27f54052240ac3a68ff3dbbe171107b8c4dc37-->

- chore: 不再将 Command 实例导出,而仅导出逻辑部分
- chore: 由于 @liuli-util/monorepo-changelog 与 cli 循环依赖,所以不能作为插件直接依赖
- fix: 修复生成多个版本时 changelog 有问题
- feat: 当 CHANGELOG 文件不存在时就创建它而非退出
- docs: 在 README 中添加基本的使用方法

## 0.1.0

<!--hash:5faf50d8ca11379d9458de467468ddd5407d28fb-->
<!--hash:d9066392dcd06626aad7c326ab08a0b57d073a80-->

- fix: 修复 lodash 依赖未显式声明的问题
- chore: 删除不需要的依赖和代码,修正 bin 为正确的名称
- feat: 基本实现生成的功能
- feat: 初始化 @liuli-util/liuli-cli-plugin-monorepo-changelog 模块
- docs: 在 README 中添加基本的使用方法
- chore: 由于 @liuli-util/monorepo-changelog 与 cli 循环依赖,所以不能作为插件直接依赖
2 changes: 1 addition & 1 deletion libs/monorepo-changelog/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@liuli-util/monorepo-changelog",
"version": "0.1.0",
"version": "0.2.0",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion libs/monorepo-changelog/src/service/Scanner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ export class Scanner extends BaseProgram {
scope: json.name,
} as CommitLog),
)
.filter((log) => log.type === 'build')
.filter((log) => log.type !== 'build')
}
}

0 comments on commit b0cd6b5

Please sign in to comment.