Reputation: 12694
If you search for mjolnic on Bower, you'll see there's a mjolnic-bootstrap-colorpicker repo. The repo has a bower.json pointing to v2.0.0-rc, but when you bower install mjolnic-bootstrap-colorpicker
, you get a much older version.
How can I make it so bower defaults to installing the latest version?
Upvotes: 0
Views: 80
Reputation: 3195
"dependencies": {
"mjolnic-bootstrap-colorpicker": "latest"
}
into your bower json
more information here : How to install latest (untagged) state of a repo using bower?
Upvotes: 1