mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-02-05 00:29:40 +03:00
Manual compile and install on Ubuntu 16 not working for vault #141
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @jfreak53 on GitHub (Nov 22, 2018).
I've run the manual compile and install using these instructions:
https://github.com/dani-garcia/bitwarden_rs/blob/master/BUILD.md
I make it up to the
npm install, when I run that I get the following errors:So I run
npm audit fixthennpm run distand I get these errors:@dani-garcia commented on GitHub (Nov 22, 2018):
What version of node are you using? The docker builds are done using version 8, and I'm currently using 8.12.0 locally, but I see that version 10 is now stable.
I tried running the npm audit fix command to see if that broke a dependency or something but it doesn't seem to do anything:
Running
npm auditseems to imply that gulp needs to be updated to version 4, which is a breaking change from the version 3.9.1 that the web vault is using.Anyway, this is probably something that should be mentioned upstream (https://github.com/bitwarden/web), as we basically use the code straight from there.
I'll be closing this, as I don't think this is caused by us.
Edit: Out of curiosity, I tried building the web vault
v.2.5.0with node version 10.13.0 LTS and followed the steps in the guide, adding thenpm audit fixbefore thenpm run build, and it builds fine for me@jfreak53 commented on GitHub (Nov 23, 2018):
For what it's worth, for those searching in the future, downgrading usinv
nvmto node 8.12.0, let's me finish everything just fine. Thanks!