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've followed the desktop build instructions laid out in the README, and in the npm run lerna bootstrap step, bootstrap fails while building the backend package with the error:
lerna ERR! lifecycle "prepare" errored in "@quiet/backend", exiting 1
I ran npm run prepare in packages/backend to try and get a more useful error message, and webpack completes but reports that it can't find some modules. For example:
Hi @adefelic! Sorry about the outdated build instructions. We've been experimenting with some 3rd-party forks that need to be built first, and forgot to update the build instructions.
Use npm run bootstrap instead of npm run lerna bootrap That will run the pnpm build of the 3rd-party forks we're working with before running the lerna bootstrap to build our monorepo. You may need to install pnpm globally with npm install -g [email protected] first.
Ah, I hadn't pulled submodules when initially forking development either. Doing that, installing pnpm globally and running npm run bootstrap fixed it. Thanks for the help! I'd be happy to PR the README with updates if you think that it would be useful. Before this I had also found that I needed to install setuptools as is done in the CI setup.
I've followed the desktop build instructions laid out in the README, and in the
npm run lerna bootstrap
step, bootstrap fails while building the backend package with the error:I ran
npm run prepare
in packages/backend to try and get a more useful error message, and webpack completes but reports that it can't find some modules. For example:Not sure if this is a red herring.
I replicated this issue cloning the repo from scratch on a friend's machine. Both builds were on mac os.
Any help is appreciated :)
The text was updated successfully, but these errors were encountered: