When using CSS and JS components, is it possible, or even, does it make sense to install them to different directories?
. |-- app |-- scripts |-- com
Maybe You can have .bowerrc files in different directories, where you can config "directory" key to point to bower components directory.
.bowerrc
"directory"
But you will need to cd to correct directory before bower install whatever:
cd
bower install whatever
app/ scripts/ .bowerrc styles/ .bowerrc tests/ .bowerrc