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
Okay, just found out it happens only with yarn - jquery.scrollTo has jQuery dep at jquery@>=1.8 resolving to 3.2.1 and webpack-boilerplate denotes jquery@^2.2.2 which resolves currently to 2.2.4. Apparently, yarn has different deps flattening strategy and sees 2.2.4 !== 3.2.1, whilst npm takes the highest suitable for both: 2.2.4.
So it's up to you what to do:
Disregard yarn users and do nothing;
Update your jQuery dependency to sth gte 3.0.0;
Poke jquery.scrollto package creators to drop the highly unreliable dep version scheme with >= which accepts all versions, even the breaking ones. <- this is the most legit option
Not really so production ready if there are two parallel 30k gzipped jquery deps ;)
The text was updated successfully, but these errors were encountered: