I'm using ASP.NET Core 1.0.1. My question is - should I push to Git all files that can be downloaded automatically by Bower?
like bootstrap/js/src
or bootstrap/scss
?
I mean, we usually don't push to Git whole packages referenced by NuGet, right? We are only pushing some config file with their "URIs", so that anyone can download the packages on their own, automatically when they build the project.
Is it different with Bower? Shouldn't we push to Git only changes made to bower.json
file?
I've just started the project and GitHub shows me language statistics like this:
And so far I've written like 2 simple functions, not the entire Bootstrap or jQuery :)