I am using angularjs and angularjs ui bootstrap module.
I am also using the bower package bootstrap-css-only because I do not need the jquery bootstrap plugins. All I want is the boostrap-css-only.
But I have other bower packages which have dependencies to bootstrap package and whenever I update those packages having dependencies to bootstrap package they install the latest bootstrap package including the jquery stuff which I do not need.
That means ALL bootstrap stuff + the bootstrap css only is loaded into my browser!!!
How can I prevent this scenario? I can not remove the entry 'bootstrap' from other bower packages dependecies configuration like textAngular:
"dependencies": {
"angular": "^1.2.x",
"bootstrap": "^3.0.x",
"font-awesome": "^4.0.x",
"rangy": "^1.2.0"
},
textAngular does not depend on bootstrap-css-only. Oh yes I could change the above bootstrap with bootstrap-css-only but at the next textAngular update its gone... and I forget that...