You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to install using jquery 2.1.4 but I got the following error: npm ERR! peerinvalid The package [email protected] does not satisfy its siblings' peerDependencies requirements! npm ERR! peerinvalid Peer [email protected] wants jquery@^1.8.2
On package.json at peerDependencies entry jquery is specified with ^1.8.2, this will match just >= 1.8.2 and <= 1.9.9.
I ask you to change to: "peerDependencies": { "jquery": ">=1.8.2" }
So it will be compatible with recent jquery versions.
Thanks.
The text was updated successfully, but these errors were encountered:
Hello,
I'm trying to install using jquery 2.1.4 but I got the following error:
npm ERR! peerinvalid The package [email protected] does not satisfy its siblings' peerDependencies requirements!
npm ERR! peerinvalid Peer [email protected] wants jquery@^1.8.2
On package.json at peerDependencies entry jquery is specified with ^1.8.2, this will match just >= 1.8.2 and <= 1.9.9.
I ask you to change to:
"peerDependencies": {
"jquery": ">=1.8.2"
}
So it will be compatible with recent jquery versions.
Thanks.
The text was updated successfully, but these errors were encountered: