0

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?

Sam Selikoff
  • 12,366
  • 13
  • 58
  • 104

1 Answers1

1
"dependencies": {
    "mjolnic-bootstrap-colorpicker": "latest"
}

into your bower json

more information here : How to install latest (untagged) state of a repo using bower?

Community
  • 1
  • 1
rbinsztock
  • 3,025
  • 2
  • 21
  • 34