Skip to content

Commit fb0c8ab

Browse files
committed
feat(nestjs-json-rpc): fix after update nx
1 parent 5c9bbdf commit fb0c8ab

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

libs/json-rpc/nestjs-json-rpc/package.json

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,15 @@
2828
"JSON-RPC"
2929
],
3030
"peerDependencies": {
31-
"socket.io": "*.*.*",
32-
"ws": "*.*.*",
33-
"@nestjs/platform-socket.io": "^10.3.0",
34-
"@nestjs/websockets": "^10.3.0",
35-
"@nestjs/platform-ws": "^10.3.0"
31+
"socket.io": "^4.8.1",
32+
"ws": "^8.0.0",
33+
"@nestjs/platform-socket.io": "^11.0.0",
34+
"@nestjs/websockets": "^11.0.0",
35+
"@nestjs/platform-ws": "^11.0.0",
36+
"@nestjs/common": "^11.0.0",
37+
"@nestjs/core": "^11.0.0"
38+
},
39+
"dependencies": {
40+
"zod": "^4.0.0"
3641
}
3742
}

libs/json-rpc/nestjs-json-rpc/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
44
"sourceRoot": "libs/json-rpc/nestjs-json-rpc/src",
55
"projectType": "library",
6+
"tags": ["type:lib", "lib:nestjs-json-rpc", "type:publish"],
67
"targets": {
78
"build": {
89
"executor": "@nx/js:tsc",
@@ -49,6 +50,5 @@
4950
"packageRoot": "dist/libs/json-rpc/nestjs-json-rpc"
5051
}
5152
}
52-
},
53-
"tags": ["type:lib", "lib:nestjs-json-rpc", "lib:nestjs-json-rpc", "type:publish"]
53+
}
5454
}

0 commit comments

Comments
 (0)