We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a742737 commit acd7860Copy full SHA for acd7860
packages/release-module/src/index.ts
@@ -8,6 +8,11 @@ const config: Options = {
8
{
9
// 使用 changelog-gitmoji-config 自定义配置,如果不填则是默认的 conventional-changelog-angular
10
config: 'conventional-changelog-gitmoji-config',
11
+ // 默认情况下 style 和 build 都会触发新的构建
12
+ releaseRules: [
13
+ { type: 'style', release: 'patch' },
14
+ { type: 'build', release: 'patch' },
15
+ ],
16
},
17
],
18
/* 此处生成 github-release 的日志 */
0 commit comments