user3093036
user3093036

Reputation: 102

bower packages with submodules polymer

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

Answers (1)

Ross Allen
Ross Allen

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

Related Questions