Say I have my project set up like so:
/my-app
bower.json
/bower_components
/vendor
/package1
bower.json
/package2
bower.json
Is it possible for me to configure bower (via .bowerrc, grunt or otherwise) to look at all the bower.json files and install all dependencies into /my-app/bower_components
.
In other words can bower merge /my-app/bower.json
, /my-app/vendor/package1/bower.json
and /my-app/vendor/package2/bower.json
.
If this is possible, is it possible to do automatically, i.e not have to provide specific paths to the package's bower.json files.