67P / hyperchannel

Kosmos Chat for the Web
Mozilla Public License 2.0
20 stars 3 forks source link

Use new Sockethub IRC connect flow, show connect errors #274

Closed raucao closed 2 years ago

raucao commented 2 years ago

Implements and relies on https://github.com/sockethub/sockethub/pull/671

closes #194

raucao commented 2 years ago

@silverbucket For some reason, the yarn build is failing with Sockethub master on Travis CI now:

The command "yarn run build" failed and exited with 127 during .

https://app.travis-ci.com/github/67P/hyperchannel/builds/245985117

raucao commented 2 years ago

I have found the CI build problem. For some reason, the standard yarn install in sockethub's root package.json does not run the lerna bootstrap/install anymore. I changed it to the new npm script, but I think this is less clean and intuitive than a standard yarn install && yarn start.

silverbucket commented 2 years ago

@raucao yeah, unfortunately this is a limitation of lerna when there is a package.json in the root of the repository (in additon to each packages package.json). I created an issue here explaining it https://github.com/lerna/lerna/issues/3070, in the meantime we're going to have to use yarn run deps as the one-step command to install all dependencies.