Chartjs-Bower degrades chart.js each time installing other packages

0👍

You can explicitly tell bower to install specific version of a dependency using the resolutions attribute.

Like this:

"dependencies": {
  ...
}, 
...
"resolutions": {
  "chart.js": "2.5.0"
}

Leave a comment