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']);