Skip to content

Commit 16110a6

Browse files
committed
Bump dependencies
1 parent 3fe4d21 commit 16110a6

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

.eslintrc.ts.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@ rules:
4444
groups:
4545
screaming-snake-case-static-properties:
4646
- name: "/^[A-Z_0-9]+$/"
47-
- type: property
48-
sort: none
47+
type: property
4948
static: true
5049
alphabetical-static-properties:
5150
- type: property
@@ -58,6 +57,7 @@ rules:
5857
alphabetical-methods:
5958
- type: method
6059
sort: alphabetical
60+
static: false
6161
alphabetical-properties:
6262
- type: property
6363
sort: alphabetical

lib/gateway/Shard.js

+1
Original file line numberDiff line numberDiff line change
@@ -2346,6 +2346,7 @@ class Shard extends EventEmitter {
23462346
}
23472347

23482348
_onWSClose(code, reason) {
2349+
reason = reason.toString();
23492350
this.emit("debug", "WS disconnected: " + JSON.stringify({
23502351
code: code,
23512352
reason: reason,

package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -42,20 +42,20 @@
4242
},
4343
"homepage": "https://abal.moe/Eris/",
4444
"dependencies": {
45-
"ws": "^7.4.6"
45+
"ws": "^8.2.3"
4646
},
4747
"devDependencies": {
48-
"@types/node": "^14.14.35",
49-
"@types/ws": "^7.4.4",
50-
"@typescript-eslint/eslint-plugin": "^4.19.0",
51-
"@typescript-eslint/parser": "^4.19.0",
52-
"eslint": "^7.22.0",
53-
"eslint-plugin-sort-class-members": "^1.10.0",
54-
"typescript": "^4.2.2"
48+
"@types/node": "^16.11.7",
49+
"@types/ws": "^8.2.0",
50+
"@typescript-eslint/eslint-plugin": "^4.33.0",
51+
"@typescript-eslint/parser": "^4.33.0",
52+
"eslint": "^7.32.0",
53+
"eslint-plugin-sort-class-members": "^1.14.0",
54+
"typescript": "^4.4.4"
5555
},
5656
"optionalDependencies": {
5757
"opusscript": "^0.0.8",
58-
"tweetnacl": "^1.0.1"
58+
"tweetnacl": "^1.0.3"
5959
},
6060
"browser": {
6161
"@discordjs/opus": false,

0 commit comments

Comments
 (0)