Sam Selikoff
Sam Selikoff

Reputation: 12694

How to get Bower to point to the latest version?

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

Answers (1)

rbinsztock
rbinsztock

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

Related Questions