From 48160c90130472e1dbe00f6d66bc29b201a1a199 Mon Sep 17 00:00:00 2001 From: "greenkeeper[bot]" Date: Thu, 30 Nov 2017 09:35:31 +0000 Subject: [PATCH 1/3] chore(package): update @commitlint/cli to version 5.2.0 Closes #8 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4d0e33b..72f89c5 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,7 @@ "@ianwremmel/exception": "^1.0.0" }, "devDependencies": { - "@commitlint/cli": "^4.2.2", + "@commitlint/cli": "^5.2.0", "@commitlint/config-angular": "^4.2.1", "@ianwremmel/eslint-config-base": "^1.0.0", "@ianwremmel/eslint-config-standard": "^1.1.0", From 063ea7ca2ffbf1a0d970d6b7de54d880dd3345fd Mon Sep 17 00:00:00 2001 From: "greenkeeper[bot]" Date: Fri, 1 Dec 2017 05:29:28 +0000 Subject: [PATCH 2/3] chore(package): update lint-staged to version 6.0.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4d0e33b..e978ea3 100644 --- a/package.json +++ b/package.json @@ -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", From 45b0441daaa7b5123ce4f28eea803b67e5af9d63 Mon Sep 17 00:00:00 2001 From: "Ian W. Remmel" <1182361+ianwremmel@users.noreply.github.com> Date: Sat, 2 Dec 2017 14:06:16 -0800 Subject: [PATCH 3/3] fix(tooling): disable commitlint for greenkeeper pull requests --- commitlint.config.js | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/commitlint.config.js b/commitlint.config.js index ae7196b..a038cbf 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -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' + ] + }; +}