chore: allow release for chore commits
This commit is contained in:
parent
c867c8b649
commit
7d0a617c3f
1 changed files with 0 additions and 10 deletions
|
|
@ -33,14 +33,4 @@ module.exports = {
|
|||
`export const version = '${version}';\n`
|
||||
);
|
||||
},
|
||||
// Skip preparation if it contains only `chore` commits
|
||||
shouldPrepare: ({ releaseType, commitNumbersPerType }) => {
|
||||
const { fix = 0 } = commitNumbersPerType;
|
||||
|
||||
if (releaseType === 'patch' && fix === 0) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
},
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue