From 71f33cc7d949e3b5661754a9075aca990d71ba1f Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Sat, 11 May 2013 15:54:17 -0400 Subject: [PATCH] Add release time to header on uncompressed file. --- Gruntfile.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 766c9e2fd..7ba99744b 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -411,10 +411,8 @@ module.exports = function( grunt ) { // Embed Version // Embed Date compiled = compiled.replace( /@VERSION/g, version ) - .replace( "@DATE", function () { - // YYYY-MM-DD - return ( new Date() ).toISOString().replace( /T.*/, "" ); - }); + // yyyy-mm-ddThh:mmZ + .replace( /@DATE/g, ( new Date() ).toISOString().replace( /:\d+\.\d+Z$/, "Z" ) ); // Write concatenated source to file grunt.file.write( name, compiled ); -- 2.39.5