Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
favna committed Oct 29, 2023
1 parent a0b154c commit e5f2af8
Show file tree
Hide file tree
Showing 9 changed files with 1,711 additions and 2,051 deletions.
363 changes: 0 additions & 363 deletions .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

This file was deleted.

9 changes: 0 additions & 9 deletions .yarn/plugins/@yarnpkg/plugin-typescript.cjs

This file was deleted.

874 changes: 0 additions & 874 deletions .yarn/releases/yarn-3.6.2.cjs

This file was deleted.

893 changes: 893 additions & 0 deletions .yarn/releases/yarn-4.0.1.cjs

Large diffs are not rendered by default.

10 changes: 3 additions & 7 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
compressionLevel: mixed

enableGlobalCache: true

nodeLinker: node-modules

plugins:
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
spec: '@yarnpkg/plugin-interactive-tools'
- path: .yarn/plugins/@yarnpkg/plugin-typescript.cjs
spec: '@yarnpkg/plugin-typescript'

yarnPath: .yarn/releases/yarn-3.6.2.cjs
yarnPath: .yarn/releases/yarn-4.0.1.cjs
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@
"binarytf": "^2.1.3"
},
"devDependencies": {
"@sapphire/eslint-config": "^5.0.1",
"@sapphire/eslint-config": "^5.0.2",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^4.0.1",
"@types/node": "^18.17.6",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"@sapphire/ts-config": "^5.0.0",
"@types/node": "^20.8.9",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.2",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.0.3",
"standard-version": "^9.5.0",
"typedoc": "^0.24.8",
"typescript": "^5.1.6"
"typedoc": "^0.25.2",
"typescript": "^5.2.2"
},
"repository": {
"type": "git",
Expand All @@ -57,5 +57,5 @@
"url": "https://github.com/kyranet/veza/issues"
},
"prettier": "@sapphire/prettier-config",
"packageManager": "yarn@3.6.2"
"packageManager": "yarn@4.0.1"
}
2 changes: 1 addition & 1 deletion src/lib/ClientSocket.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export class ClientSocket extends SocketHandler {
*/
public retriesRemaining: number;
private _expectClosing = false;
private _reconnectionTimeout!: NodeJS.Timer | null;
private _reconnectionTimeout!: NodeJS.Timeout | null;

public constructor(client: Client) {
super(null, new NetSocket());
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.base.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@sapphire/ts-config/extra-strict",
"extends": ["@sapphire/ts-config", "@sapphire/ts-config/extra-strict"],
"compilerOptions": {
"target": "ES2021"
}
Expand Down
Loading

0 comments on commit e5f2af8

Please sign in to comment.