From c5d0c786ea20ec20e3a4da5e5f1847d94ef47dcf Mon Sep 17 00:00:00 2001 From: Jason Kao Date: Sat, 1 Dec 2018 19:50:32 -0500 Subject: [PATCH] version formatting adjustment --- app/templates/gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/templates/gulpfile.js b/app/templates/gulpfile.js index 078f3ba..00c56cb 100644 --- a/app/templates/gulpfile.js +++ b/app/templates/gulpfile.js @@ -462,7 +462,7 @@ gulp.task('check-for-version-bump', function() .pipe(replace(/VERSION[\s]*:[\s]*'([\d]+)[\.]([\d]+)[\.]([\d]+)'/gi, (vString, major, minor, patch)=> { - let nextVersion = `VERSION : '${major}.${minor}.${parseInt(patch)+1}'`; + let nextVersion = `VERSION: '${major}.${minor}.${parseInt(patch)+1}'`; return (latestVersion = nextVersion, nextVersion); })).pipe(gulp.dest(Paths.VERSION_CONFIG_DIR)); } @@ -558,4 +558,4 @@ gulp.task('export-standalone-build', ()=> } }); -gulp.task('default', ['dev-server']); \ No newline at end of file +gulp.task('default', ['dev-server']);