Skip to content

Commit

Permalink
Merge branch 'master' into greenkeeper/@commitlint/config-angular-5.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ianwremmel committed Dec 2, 2017
2 parents 74bc733 + 32e6897 commit 6b5e78e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
15 changes: 10 additions & 5 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
'use strict';

module.exports = {
extends: [
'@commitlint/config-angular'
]
};
if (process.env.CIRCLE_BRANCH && process.env.CIRCLE_BRANCH.includes('greenkeeper')) {
module.exports = {};
}
else {
module.exports = {
extends: [
'@commitlint/config-angular'
]
};
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"@ianwremmel/exception": "^1.0.0"
},
"devDependencies": {
"@commitlint/cli": "^4.2.2",
"@commitlint/cli": "^5.2.0",
"@commitlint/config-angular": "^5.1.1",
"@ianwremmel/eslint-config-base": "^1.0.0",
"@ianwremmel/eslint-config-standard": "^1.1.0",
Expand All @@ -47,7 +47,7 @@
"eslint-plugin-mocha": "^4.11.0",
"express": "^4.16.2",
"husky": "^0.14.3",
"lint-staged": "^5.0.0",
"lint-staged": "^6.0.0",
"mocha": "^4.0.1",
"nyc": "^11.2.1",
"semantic-release": "^8.2.0",
Expand Down

0 comments on commit 6b5e78e

Please sign in to comment.