Recently, I've been experimenting with Bower and at the same time exploring Polymer.
If you want to download polymer elements using bower, you can use the following command:
bower install --save PolymerElements/iron-image
I assume there's a specific repository that Polymer searches in order to find this file.
My goal is to route anything from PolymerElements/*
to a folder named web_components
instead of the default bower_components
folder. However, I still want all other files to go to the bower_components
folder. Is there a way to make this happen?
I am aware that specifying web_components
as the directory for everything can be achieved by adding the following code in my .bowerrc
:
{
"directory" : "web_components"
}