From a832a84f66477787a7b919ea73104695323aec3a Mon Sep 17 00:00:00 2001 From: coderaiser Date: Fri, 26 Dec 2014 11:21:49 -0500 Subject: [PATCH] feature(changelog) add "changelog: done" --- gulp/tasks/changelog.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gulp/tasks/changelog.js b/gulp/tasks/changelog.js index 674e659c..12841cad 100644 --- a/gulp/tasks/changelog.js +++ b/gulp/tasks/changelog.js @@ -15,7 +15,9 @@ }; e(error) || changelog(versionNew, function(error, data) { - e(error) || prepend('ChangeLog', data, callback); + e(error) || prepend('ChangeLog', data, function() { + e(error) || callback(null, 'changelog: done'); + }); }); }); };