From 85ec91e238f83d7f9c63341882f7f808c905a9f2 Mon Sep 17 00:00:00 2001 From: Yusuke Suzuki Date: Sun, 15 Mar 2015 05:47:37 +0900 Subject: [PATCH] Fix gulpfile.js tagging code --- gulpfile.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index f38476b..afc6833 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -134,7 +134,9 @@ function inc(importance) { // read only one file to get the version number .pipe(filter('package.json')) // **tag it in the repository** - .pipe(tagVersion()); + .pipe(tagVersion({ + prefix: '' + })); } gulp.task('patch', [ 'build' ], function () { return inc('patch'); })