logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: c7536f16cb5c480a688a7962cff4550c3504d5b9
parent 83ec4aadd69eacec05a802e92c57e307bc38fe65
Author: rinpatch <rinpatch@sdf.org>
Date:   Tue, 17 Nov 2020 12:55:09 +0000

Merge branch 'feat/add-bundles-to-gitattributes' into 'develop'

.gitattributes: Treat js/css/source maps as binary files

See merge request pleroma/pleroma!3153

Diffstat:

M.gitattributes6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git a/.gitattributes b/.gitattributes @@ -1,2 +1,8 @@ *.ex diff=elixir *.exs diff=elixir +# At the time of writing all js/css files included +# in the repo are minified bundles, and we don't want +# to search/diff those as text files. +*.js binary +*.js.map binary +*.css binary