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
npm install currently fails due to incompatibilities in transitive dependencies. This is harmless at the moment and can be worked around with npm install --force. However, that command is somewhat dangerous so it would be better to not rely on it.
npm install
currently fails due to incompatibilities in transitive dependencies. This is harmless at the moment and can be worked around withnpm install --force
. However, that command is somewhat dangerous so it would be better to not rely on it.The problems are that:
[email protected]
does note declare compatibility with versions oftypescript
above4
(I'm currently on5.0.4
). Tracked here: (react-scripts) Support for TypeScript 5.x facebook/create-react-app#13080 . Unfortunately, it seemsreact-scripts
might be abandoned so the solution might be to move to vite.@xzdarcy/[email protected]
uses[email protected]
, which does not declare compatibility with versions ofreact
andreact-dom
above16.14.0
(I'm currently on18.2.0
). Unfortunately it seemsreact-virtualized
is deprecated and unlikely to get updates, so we'd needreact-timeline-editor
to switch toreact-window
. I have raised this here: Peer dependency conflict with react > 16 (workaround: npm install --force) xzdarcy/react-timeline-editor#33The error output is:
Once again, the workaround is simply
npm install --force
.The text was updated successfully, but these errors were encountered: