Front-end development should use one dependency because you want to minimize the amount of code that your users need to download. Bower helps you deal with this, which is the main advantage of using it. You have several options:
- The manual module namespace then includes both (really not recommended)
- Use
resolutionsin bower.json, but you can enter errors:
"resolutions": {
"moment": "2.8.1"
}
- Contact your maintainer to discard dependency versions on baur (recommended)
source
share