Add generated css and js to gitignore
I found it nice to ignore these files, they are automatically generated anyway (i.e. reveal.min.js always has the date of minify-ing, which I don't want to commit all the time). Should just track the source unless there is a good reason to hand-curate these versions.
This commit is contained in:
parent
8b8cc607d4
commit
286acf371b
1 changed files with 4 additions and 1 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -3,4 +3,7 @@
|
||||||
log/*.log
|
log/*.log
|
||||||
tmp/**
|
tmp/**
|
||||||
node_modules/
|
node_modules/
|
||||||
.sass-cache
|
.sass-cache
|
||||||
|
css/reveal.min.css
|
||||||
|
css/themes/*.css
|
||||||
|
js/reveal.min.js
|
||||||
|
|
Loading…
Reference in a new issue