omegga 1.0.30 → 1.0.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/.nvmrc +1 -0
  2. package/README.md +4 -4
  3. package/package.json +6 -3
package/.nvmrc ADDED
@@ -0,0 +1 @@
1
+ 18
package/README.md CHANGED
@@ -74,7 +74,7 @@ If you are having issues running omegga, see the [troubleshooting](#troubleshoot
74
74
  ```sh
75
75
  sudo apt purge nodejs # uninstall old version of nodejs
76
76
  # restart install instructions from this point
77
- nvm install 16 # install node version 16 via nvm
77
+ nvm install 18 # install node version 18 via nvm
78
78
  ```
79
79
 
80
80
  - 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):
@@ -105,7 +105,7 @@ If you are having issues running omegga, see the [troubleshooting](#troubleshoot
105
105
  - 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).
106
106
 
107
107
  ```sh
108
- curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
108
+ curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -
109
109
  sudo apt-get install -y nodejs
110
110
  npm i -g omegga
111
111
  ```
@@ -117,7 +117,7 @@ Omegga depends on:
117
117
  - linux
118
118
  - [Windows Install](https://docs.microsoft.com/en-us/windows/wsl/install-win10#manual-installation-steps) (WSL 1 or WSL 2)
119
119
  - [Windows Ubuntu](https://www.microsoft.com/en-us/p/ubuntu/9nblggh4msv6)
120
- - Node v16+ ([ubuntu/deb](https://github.com/nodesource/distributions/blob/master/README.md#installation-instructions), but `nvm` from Quick Setup is better)
120
+ - Node v18+ ([ubuntu/deb](https://github.com/nodesource/distributions/blob/master/README.md#installation-instructions), but `nvm` from Quick Setup is better)
121
121
  - One of:
122
122
  - `tar` (most linuxes come with this, though you can `sudo apt install tar`)
123
123
  - [Brickadia linux launcher](https://brickadia.com/download)
@@ -251,7 +251,7 @@ Narrow down where the issue might be with the following options:
251
251
  - If a plugin is crashing, message the plugin developer
252
252
  - discord: #plugin-bugs
253
253
  - If you are on Ubuntu and the output of `which npm` is `/bin/npm`
254
- - terminal: `sudo apt purge nodejs` and restart install instructions from `nvm install 16`.
254
+ - terminal: `sudo apt purge nodejs` and restart install instructions from `nvm install 18`.
255
255
  - If you're getting an `EACCES` error when running `npm i -g omegga`:
256
256
  1. First, try [this](https://docs.npmjs.com/resolving-eacces-permissions-errors-when-installing-packages-globally).
257
257
  2. If that doesn't work, try this horrible bodge method for WSL:
package/package.json CHANGED
@@ -1,7 +1,10 @@
1
1
  {
2
2
  "name": "omegga",
3
- "version": "1.0.30",
3
+ "version": "1.0.32",
4
4
  "description": "Brickadia server installer, manager, wrapper, configurator, and automator",
5
+ "engines": {
6
+ "node": ">=18.0.0"
7
+ },
5
8
  "main": "index.js",
6
9
  "bin": {
7
10
  "omegga": "./bin/omegga"
@@ -12,7 +15,7 @@
12
15
  "@types/webpack": "^5.28.0",
13
16
  "bcrypt": "^5.0.0",
14
17
  "body-parser": "^1.19.0",
15
- "brs-js": "^2.0.13",
18
+ "brs-js": "^2.0.14",
16
19
  "child_process": "^1.0.2",
17
20
  "chokidar": "^3.4.2",
18
21
  "colors": "^1.4.0",
@@ -55,7 +58,7 @@
55
58
  "@types/hasbin": "^1.2.0",
56
59
  "@types/js-yaml": "^4.0.5",
57
60
  "@types/lodash": "^4.14.181",
58
- "@types/node": "^17.0.23",
61
+ "@types/node": "^18.11.17",
59
62
  "@types/pem": "^1.9.6",
60
63
  "@types/prompts": "^2.0.14",
61
64
  "@types/rimraf": "^3.0.2",