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
It works if I update the package.json of your repo to use moment ^2.12.0 and run npm install again.
Is there a pitfall to this solution? Or would you accept a PR for this?
The text was updated successfully, but these errors were encountered:
Same issue here. This package shouldn't be depending on moment with a ~ semver restriction, that's far too restrictive and even without this error would break this library since the difference in version will cause moment-twitter to load a duplicate moment library and modify it instead of the moment library required by the developer.
The proper way would be a peer dep and at minimum a ^ dependency, if not a >= dep.
Throws this error -

It works if I update the
package.json
of your repo to use moment^2.12.0
and runnpm install
again.Is there a pitfall to this solution? Or would you accept a PR for this?
The text was updated successfully, but these errors were encountered: