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 committed May 4, 2017
1 parent 0e3b956 commit e324cef
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 @@ -40,8 +40,10 @@
"depd": "^1.1.0"
},
"devDependencies": {
"@bubltechnology/customizable-commit-analyzer": "^1.0.2-0",
"chai": "^3.5.0",
"condition-circle": "^1.5.0",
"conventional-commit-types": "^2.1.0",
"coveralls": "^2.13.0",
"dirty-chai": "^1.2.2",
"eslint-config-fullcube": "^2.0.0",
Expand All @@ -55,7 +57,26 @@
"semantic-release": "^6.3.2",
"supertest": "^3.0.0"
},
"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 e324cef

Please sign in to comment.