Although I suspect the answer, imagine I desire to incorporate the CSS from Twitter Bootstrap without the Javascript.
I've set up a gulp script to extract everything from my bower.json file, minimize the JS, compress the CSS, and transfer it to my designated directory. The entire process is automated.
However, since I'm using AngularJS, the JavaScript from Bootstrap and jquery are unnecessary for me, yet they still end up in the output due to the automated process.
Is there a way in Bower to selectively include specific parts of a library?
Alternatively, it seems I may need to maintain a list of approved libraries to prevent unnecessary components from being included.
Appreciate your help.