Reputation: 102
We are developing a toolset of components which are available through bower. When we looked at the Polymer components we noticed that they make use of 'bower install Polymer/Module'
My question is how do they manage to work with these "submodules" in Bower?
Upvotes: 0
Views: 46
Reputation: 44880
The user/package
format is not specific to Polymer, it is a feature of the bower install
command. It is a shorthand for a Git repository, and Bower defaults to GitHub.
bower install polymer/core-icon
is the same as
bower install https://github.com/polymer/core-icon.git
Upvotes: 1