I need to install angular 1.3.18 and 1.4.5 version of angular using bower in same project.Since some part of my code using angular 1.3.18 and some of its dependecy are also using 1.3.18, same case for other version as well. If I am using only one version some part of code will get broken.
If I use below method
"dependencies": {
"angular": "1.4.5",
"angular": "1.3.18"
}
it is working fine ,After I minify and uglify the code for production only one version of angular is available and some part of code is broken.
Please suggest me a solution for this..