Skip to content

Commit 827edb0

Browse files
authored
Update: Skip timestamp updates in development builds (fix #3706) #3764
1 parent d68dd7d commit 827edb0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

grunt/helpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ module.exports = function(grunt) {
254254
strictMode: false,
255255
targets: buildConfig.targets || '',
256256
cacheAge,
257-
timestamp: Date.now()
257+
timestamp: isDevelopmentBuild ? 0 : Date.now()
258258
};
259259

260260
if (buildConfig.jsonext) data.jsonext = buildConfig.jsonext;

0 commit comments

Comments
 (0)