From e68251259ab6c3066821cb1cd133f11863c637d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20K=C3=BChnel?= Date: Sun, 25 Jun 2017 13:10:46 +0200 Subject: [PATCH] fix: Follow conventional commits specs in release commits --- gulp/tasks/commitChanges.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulp/tasks/commitChanges.js b/gulp/tasks/commitChanges.js index 96151b0..014c26f 100644 --- a/gulp/tasks/commitChanges.js +++ b/gulp/tasks/commitChanges.js @@ -10,7 +10,7 @@ import {pkgJson} from '../config'; function commitChanges() { return gulp.src('.') .pipe(git.add()) - .pipe(git.commit(`Release ${pkgJson.version}`)); + .pipe(git.commit(`chore: Release ${pkgJson.version}`)); } export default commitChanges;