Is there a way to determine the latest version of a specific module which is compatible with another module at a specific version?
For example, running npm install @angular/http
pulls @angular/[email protected]
which dependes on rxjs@^6.0.0
, but a lower version of rxjs
is already present in the project — [email protected]
, and bumping this version will require updating a whole lot of other modules, which I want to avoid.
Is there a command that can show that the latest version of @angular/http
which is compatible with [email protected]
is x.y.z
?
There are tools like npmvet
which are good at displaying mismatched versions in the current project but can't find any tools which would show which versions can be used to resolve compatibility conflicts.