Change latest version date format

This commit is contained in:
Colin McLeod
2015-06-29 16:27:56 -07:00
parent ae081c147e
commit b5a249fb4b

View File

@@ -140,7 +140,7 @@ gulp.task('generateIndexHTML', function(done) {
gulp.src('app/index.html') gulp.src('app/index.html')
.pipe(template({ .pipe(template({
version: pkg.version, version: pkg.version,
date : (new Date()).toLocaleDateString(), date : new Date().toISOString().slice(0, 10),
uaTracking: process.env.CORIOLIS_UA_TRACKING || false, uaTracking: process.env.CORIOLIS_UA_TRACKING || false,
svgContent: svgIconsContent, svgContent: svgIconsContent,
gapiKey: process.env.CORIOLIS_GAPI_KEY gapiKey: process.env.CORIOLIS_GAPI_KEY