parse-commit-message
Advanced tools
Comparing version
{ | ||
"name": "parse-commit-message", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"description": "An extensible parser for commit message that follows Conventional Commits v1 spec", | ||
@@ -26,11 +26,11 @@ "repository": "tunnckoCore/parse-commit-message", | ||
"dependencies": { | ||
"arrayify": "^1.0.0", | ||
"collect-mentions": "^0.1.1" | ||
"arrayify": "1.0.0", | ||
"collect-mentions": "0.1.1" | ||
}, | ||
"devDependencies": { | ||
"eslint": "^4.11.0", | ||
"eslint-config-tunnckocore": "^0.3.0", | ||
"hela": "^2.0.6", | ||
"hela-config-tunnckocore": "^2.2.8", | ||
"mukla": "^0.4.9" | ||
"eslint": "4.17.0", | ||
"eslint-config-tunnckocore": "0.3.0", | ||
"hela": "2.0.8", | ||
"hela-config-tunnckocore": "2.2.41", | ||
"mukla": "0.4.9" | ||
}, | ||
@@ -37,0 +37,0 @@ "keywords": [ |
@@ -85,4 +85,4 @@ /** | ||
const re = 'BREAKING CHANGE:' | ||
return subject.includes(re) || body.includes(re) || footer.includes(re) | ||
const re = /^BREAKING(?: CHANGES?)?:/ | ||
return re.test(subject) || re.test(body) || re.test(footer) | ||
} | ||
@@ -89,0 +89,0 @@ |
27428
-0.04%Updated
Updated