how to force bower to install a certain version of dependency
I figured out the answer. I’m sharing for others: If I add the dependency with my favorite version to resolutions in bower.json, Bower will automatically install it. Here is my updated bower.json: “dependencies”: { “angular”: “~1.5.x”, “angular-routing”: “*”, “ngDialog”: “*”, “requirejs”: “*” }, “resolutions”: { “angular”: “~1.5.x” } More information here. Update: As Mattliu mentioned … Read more