Skip to content

Commit

Permalink
build: ensure all conventional commit types trigger a new release
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Kirkpatrick authored and Tom Kirkpatrick committed Apr 28, 2017
1 parent ea64059 commit 0a83564
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,11 @@
"lodash": "^4.17.4"
},
"devDependencies": {
"@bubltechnology/customizable-commit-analyzer": "^1.0.2-0",
"bluebird": "^3.5.0",
"chai": "^3.5.0",
"condition-circle": "^1.5.0",
"conventional-commit-types": "^2.1.0",
"coveralls": "^2.13.0",
"eslint": "^2.11.1",
"eslint-config-fullcube": "^1.0.46",
Expand All @@ -40,7 +42,26 @@
"nyc": "^10.2.0",
"semantic-release": "^6.3.2"
},
"config": {
"commitTypeMap": {
"feat": "minor",
"fix": "patch",
"docs": "patch",
"style": "patch",
"refactor": "patch",
"perf": "patch",
"test": "patch",
"build": "patch",
"ci": "patch",
"chore": "patch",
"revert": "patch"
},
"validate-commit-msg": {
"types": "conventional-commit-types"
}
},
"release": {
"verifyConditions": "condition-circle"
"verifyConditions": "condition-circle",
"analyzeCommits": "@bubltechnology/customizable-commit-analyzer"
}
}

0 comments on commit 0a83564

Please sign in to comment.