| The Electron build fails during packaging with:
Production dependency yjs not found for package @xwiki/platform-collaboration-api
@xwiki/platform-collaboration-api now declares yjs 13.6.31, while the workspace overrides force 13.6.30. electron-builder's node_modules traversal collector checks each declared dependency version against what is actually linked and cannot satisfy the 13.6.31 range. The override exists to dedupe yjs to a single instance — @hocuspocus/provider would otherwise resolve a different patch, yielding incompatible Doc types — so it has to track the version @xwiki/platform-collaboration-api pins. Upgrade the override to yjs 13.6.31. |