Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: bump some deps #46

Merged
merged 2 commits into from
Dec 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ If you need to run omegga as root, make sure your branch is `main-server` or `un

```sh
# download nvm
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash

# activate nvm
. ~/.nvm/nvm.sh

# install node version 18
nvm install 18
# install node version 20
nvm install 20

# install omegga
npm i -g omegga
Expand All @@ -74,7 +74,7 @@ If you are having issues running omegga, see the [troubleshooting](#troubleshoot
```sh
sudo apt purge nodejs # uninstall old version of nodejs
# restart install instructions from this point
nvm install 18 # install node version 18 via nvm
nvm install 20 # install node version 20 via nvm
```

- If you get an error like "`sh: 28: cd: can't cd to .`", you need to be in `bash` (and probably type `cd` to navigate out of root directory):
Expand Down Expand Up @@ -105,7 +105,7 @@ If you are having issues running omegga, see the [troubleshooting](#troubleshoot
- If you are having trouble installing with nvm and are running **Ubuntu/Debian**, run the following commands (installs node, installs omegga) instead or install node&npm from [NodeSource Binary Distributions](https://github.com/nodesource/distributions/blob/master/README.md).

```sh
curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
sudo apt-get install -y nodejs
npm i -g omegga
```
Expand All @@ -117,7 +117,7 @@ Omegga depends on:
- linux
- [Windows Install](https://docs.microsoft.com/en-us/windows/wsl/install-win10#manual-installation-steps) (WSL 1 or WSL 2)
- [Windows Ubuntu](https://www.microsoft.com/en-us/p/ubuntu/9nblggh4msv6)
- Node v18+ ([ubuntu/deb](https://github.com/nodesource/distributions/blob/master/README.md#installation-instructions), but `nvm` from Quick Setup is better)
- Node v20+ ([ubuntu/deb](https://github.com/nodesource/distributions/blob/master/README.md#installation-instructions), but `nvm` from Quick Setup is better)
- One of:
- `tar` (most linuxes come with this, though you can `sudo apt install tar`)
- [Brickadia linux launcher](https://brickadia.com/download)
Expand Down Expand Up @@ -251,7 +251,7 @@ Narrow down where the issue might be with the following options:
- If a plugin is crashing, message the plugin developer
- discord: #plugin-bugs
- If you are on Ubuntu and the output of `which npm` is `/bin/npm`
- terminal: `sudo apt purge nodejs` and restart install instructions from `nvm install 18`.
- terminal: `sudo apt purge nodejs` and restart install instructions from `nvm install 20`.
- If you're getting an `EACCES` error when running `npm i -g omegga`:
1. First, try [this](https://docs.npmjs.com/resolving-eacces-permissions-errors-when-installing-packages-globally).
2. If that doesn't work, try this horrible bodge method for WSL:
Expand Down
Loading
Loading