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 in the process of trying to integrate Catalog into an existing repository that I have to ensure that I can document the latest versions of my components. However, I'm getting the below error
ERROR in ./node_modules/react-router-scroll/lib/StateStorage.js
Module not found: Error: Can't resolve 'history/lib/DOMStateStorage'
I took a look at this and it's due to the fact that I have a new version of history installed. Another package that is being utilized is react-router-scroll and it currently requires history@^2.0.0 || history@^3.0.0. I'd really love to use this, but it would require the history package to be updated to at least version 4 which would then require an upgrade to react-router@^4 thus causing react-router-scroll to be useless.
Are there any plans to update this so we can utilize the most up to date packages?
Another idea would be to include history@^2.0.0 || history@^3.0.0 as a production dependency so NPM resolves it locally rather than globally when building
The text was updated successfully, but these errors were encountered:
I'm in the process of trying to integrate Catalog into an existing repository that I have to ensure that I can document the latest versions of my components. However, I'm getting the below error
I took a look at this and it's due to the fact that I have a new version of history installed. Another package that is being utilized is
react-router-scroll
and it currently requireshistory@^2.0.0 || history@^3.0.0
. I'd really love to use this, but it would require the history package to be updated to at least version 4 which would then require an upgrade toreact-router@^4
thus causingreact-router-scroll
to be useless.I saw that
catalog v4
is in pretty good progress right now. Currently, react-router-scroll doesn't support react-router 4 (you can see the discussion here: https://github.com/taion/react-router-scroll#react-router-scroll-- However, there is this package... https://github.com/ytase/react-router-scrollAre there any plans to update this so we can utilize the most up to date packages?
Another idea would be to include
history@^2.0.0 || history@^3.0.0
as a production dependency so NPM resolves it locally rather than globally when buildingThe text was updated successfully, but these errors were encountered: