Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
souporserious committed Jan 27, 2025
1 parent f05656d commit 3cf7000
Show file tree
Hide file tree
Showing 5 changed files with 277 additions and 272 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
"postinstall": "turbo run build --filter=renoun"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@types/node": "^22.10.7",
"@changesets/cli": "^2.27.12",
"@types/node": "^22.10.10",
"prettier": "3.4.2",
"tsx": "4.19.2",
"turbo": "^2.3.3",
"turbo": "^2.3.4",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
"vitest": "^3.0.4"
},
"engines": {
"node": ">=20.0.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/renoun/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"@types/title": "^3.4.3",
"@types/ws": "^8.5.13",
"@types/ws": "^8.5.14",
"dedent": "^1.5.3",
"react": "catalog:",
"react-dom": "catalog:",
Expand Down
5 changes: 3 additions & 2 deletions packages/renoun/src/project/rpc/server.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import WebSocket, { type AddressInfo } from 'ws'
import type { AddressInfo, Server } from 'ws'
import WebSocket from 'ws'

export interface WebSocketRequest {
method: string
Expand All @@ -18,7 +19,7 @@ export interface WebSocketNotification {
}

export class WebSocketServer {
#server!: WebSocket.Server
#server!: Server

#sockets: Set<WebSocket> = new Set()

Expand Down
Loading

0 comments on commit 3cf7000

Please sign in to comment.