'Matching the version range for all npm packages
On my IntelliJ Idea, I get this alert:
the install version "[email protected]" doesn't match the version range "vue@^2.5.16
I know how to solve this: yarn install [email protected].
But I got this problem with all my dependencies. I don't want to solve everything one by one...
Solution 1:[1]
This can also happen if you had the same dependency defined in both dependencies and devDependencies.
Remove the dependency from one of these locations and then run npm install to fix it.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Molten Ice |
