Skip to content

Commit

Permalink
chore(deps): update
Browse files Browse the repository at this point in the history
  • Loading branch information
enisdenjo committed Mar 13, 2022
1 parent 1e94e45 commit 097ae30
Show file tree
Hide file tree
Showing 4 changed files with 334 additions and 471 deletions.
2 changes: 1 addition & 1 deletion docs/modules/use_ws.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ This is a basic starter, feel free to copy the code over and adjust it to your n
| Name | Type | Default value |
| :------ | :------ | :------ |
| `options` | [`ServerOptions`](../interfaces/server.ServerOptions.md)<`P`, [`Extra`](../interfaces/use_ws.Extra.md) & `Partial`<`E`\>\> | `undefined` |
| `ws` | `Server` | `undefined` |
| `ws` | `WebSocketServer` | `undefined` |
| `keepAlive` | `number` | `12_000` |

#### Returns
Expand Down
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,32 +89,32 @@
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-typescript": "^8.3.0",
"@rollup/plugin-typescript": "^8.3.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^27.4.1",
"@types/ws": "^8.2.3",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"babel-jest": "^27.5.1",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"fastify": "^3.27.2",
"fastify-websocket": "^4.0.0",
"fastify": "^3.27.4",
"fastify-websocket": "^4.2.0",
"glob": "^7.2.0",
"graphql": "^16.3.0",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"replacestream": "^4.0.3",
"rollup": "^2.68.0",
"rollup": "^2.70.0",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^19.0.2",
"subscriptions-transport-ws": "^0.11.0",
"tslib": "^2.3.1",
"typedoc": "^0.22.12",
"typedoc": "^0.22.13",
"typedoc-plugin-markdown": "^3.11.14",
"typescript": "^4.5.5",
"typescript": "^4.6.2",
"uWebSockets.js": "uNetworking/uWebSockets.js#v20.6.0",
"ws": "^8.5.0",
"ws7": "npm:ws@^7.5.7"
Expand Down
1 change: 0 additions & 1 deletion src/__tests__/utils/tclient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ export function createTClient(
};
if (expire)
setTimeout(() => {
// @ts-expect-error: its ok
ws.onclose = null; // expired
resolve();
}, expire);
Expand Down
Loading

0 comments on commit 097ae30

Please sign in to comment.