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 05aa000 commit d6cc057Copy full SHA for d6cc057
lib/commands/config.js
@@ -27,7 +27,7 @@ function load(configFile) {
27
conventionConfig.releaseTagGlobPattern = conventionOverride.releaseTagGlobPattern ||
28
conventionConfig.releaseTagGlobPattern;
29
30
- conventionConfig.msgRegex = RegExp(conventionOverride.commitMessageRegexPattern) || conventionConfig.msgRegex;
+ conventionConfig.msgRegex = RegExp(conventionOverride.commitMessageRegexPattern || conventionConfig.msgRegex);
31
conventionConfig.commitTypes = conventionOverride.commitTypes || conventionConfig.commitTypes;
32
conventionConfig.featureCommitTypes = conventionOverride.featureCommitTypes || conventionConfig.featureCommitTypes;
33
conventionConfig.commitScopes = conventionOverride.commitScopes || conventionConfig.commitScopes;
0 commit comments