Open jalooc opened 7 years ago
@jalooc good call. Mind creating a pr to fix it?
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:
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 ;)