javascript - Manage dependency of dependencies with Bower -


i have angular app has bower dependencies.

angular-gridster has in bower.json:

"dependencies": {         "jquery-ui": "*", } 

that meant computer hadn't updated in while, has older version of jquery-ui.

coincidentally enough, version of jquery-ui works, whilst newer 1 doesn't.

for quick fix, force gridster use older version?

i guess modify there in bower.json file, seems hacky, best course of action achieve this?

on bower.json can this:

  "dependencies": {     "jquery-ui": "1.0",     "angular-gridster": "5.0"   },   "resolutions": {     "jquery-ui": "1.0"   } 

Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -