arj03 / ssb-browser-demo

A secure scuttlebutt client interface running in the browser
Other
58 stars 11 forks source link

Fix missing dependency on ssb-keys #242

Closed KyleMaas closed 3 years ago

KyleMaas commented 3 years ago

Turns out we were using ssb-keys, but only as a dependency of other stuff. In the case of it not being able to be deduplicated, npm could end up installing it only under the other packages requiring it, which caused a dependency error for ssb-browser-demo. This fixes that by pulling it in directly.

arj03 commented 3 years ago

indeed, thx