From d4286c59eb37c70f19f9fa9028a68feaad15cb3f Mon Sep 17 00:00:00 2001 From: Brad Simpson Date: Tue, 24 Feb 2026 14:56:52 -0700 Subject: [PATCH] Skip timestamp updates in development builds --- grunt/helpers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grunt/helpers.js b/grunt/helpers.js index 7639cfb7b..149356af9 100644 --- a/grunt/helpers.js +++ b/grunt/helpers.js @@ -254,7 +254,7 @@ module.exports = function(grunt) { strictMode: false, targets: buildConfig.targets || '', cacheAge, - timestamp: Date.now() + timestamp: isDevelopmentBuild ? 0 : Date.now() }; if (buildConfig.jsonext) data.jsonext = buildConfig.jsonext;