Open mattclaw opened 9 years ago
Looks like there are some good arguments for either side.
If we all only use NPM to manage our packages, we don't need Bower anymore. But I know some packages you can't find from NPM. Try to highlight this part in README.
/bower_components/
is inside .gitignore, but it should be /app/bower_components/
.gitignore
works by pattern matching, so you don't need to give the full relative path to your directory or file. The level of specificity is another matter of preference, but I would argue one reason to be less specific is to make it easy for someone to change the path to bower_components
without having to touch .gitignore
. Of course, you could then argue that a user who is sufficiently advanced enough to customize .bowerrc
can also handle modifying .gitignore
or might also choose a name that doesn't match bower_components
.
Perhaps this is a matter of preference?
Please see PR #47