conventional-changelog-conventionalcommits-parseropts
Advanced tools
Comparing version 4.0.0 to 4.1.0
{ | ||
"name": "conventional-changelog-conventionalcommits-parseropts", | ||
"version": "4.0.0", | ||
"version": "4.1.0", | ||
"description": "conventional-changelog conventionalcommits.org preset", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
'use strict' | ||
module.exports = function (config) { | ||
return { | ||
return Object.assign({ | ||
headerPattern: /^(\w*)(?:\((.*)\))?!?: (.*)$/, | ||
@@ -14,5 +14,4 @@ breakingHeaderPattern: /^(\w*)(?:\((.*)\))?!: (.*)$/, | ||
revertPattern: /^revert:\s([\s\S]*?)\s*This reverts commit (\w*)\./, | ||
revertCorrespondence: [`header`, `hash`], | ||
...config.parserOpts | ||
} | ||
revertCorrespondence: [`header`, `hash`] | ||
}, config && config.parserOpts)) | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17405
243