Skip to content

Commit

Permalink
build: ensure that all commit types trigger a semantic release
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Kirkpatrick committed Jun 30, 2017
1 parent 136a731 commit 569e258
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"devDependencies": {
"@bubltechnology/customizable-commit-analyzer": "1.0.2-0",
"chai": "3.5.0",
"compression": "1.6.2",
"condition-circle": "1.5.0",
Expand Down Expand Up @@ -70,7 +71,23 @@
"fsm-as-promised": "0.14.4",
"lodash": "4.17.4"
},
"config": {
"commitTypeMap": {
"feat": "minor",
"fix": "patch",
"docs": "patch",
"style": "patch",
"refactor": "patch",
"perf": "patch",
"test": "patch",
"build": "patch",
"ci": "patch",
"chore": "patch",
"revert": "patch"
}
},
"release": {
"verifyConditions": "condition-circle"
"verifyConditions": "condition-circle",
"analyzeCommits": "@bubltechnology/customizable-commit-analyzer"
}
}

0 comments on commit 569e258

Please sign in to comment.