From a7829a2deb4556da2f0321f2946db7c779703c2d Mon Sep 17 00:00:00 2001 From: Glenn Matthews Date: Mon, 20 Jul 2020 10:31:24 -0400 Subject: [PATCH] Treat minified/packed JS/CSS files as binary. Fixes #4862 --- .gitattributes | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitattributes b/.gitattributes index dfdb8b771..9ad1ee25e 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,5 @@ *.sh text eol=lf +# Treat minified or packed JS/CSS files as binary, as they're not meant to be human-readable +*.min.* binary +*.map binary +*.pack.js binary