apps: designate compiled js/css files as binary

The 'index.js', 'tile.js', and 'index.css' files included in several
Arvo apps are compiled, minified JS or CSS.  While they are technically
text, they are not usefully diffable.

This commit designates such files as 'binary' in .gitattributes, which
prevents git from attempting to create diffs for them in 'git log' and
'git show'.
This commit is contained in:
Jared Tobin 2019-11-05 11:46:04 +08:00
parent dc1c32406b
commit 66f87062f3
No known key found for this signature in database
GPG Key ID: 0E4647D58F8A69E4

2
.gitattributes vendored
View File

@ -1,2 +1,4 @@
bin/* filter=lfs diff=lfs merge=lfs -text
bin/*/* filter=lfs diff=lfs merge=lfs -text
pkg/arvo/**/*.js binary
pkg/arvo/**/*.css binary