@forklaunch/ws 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.js +1 -1
- package/lib/index.mjs +1 -1
- package/package.json +12 -12
package/lib/index.js
CHANGED
|
@@ -485,7 +485,7 @@ var ForklaunchWebSocketServer = class extends import_ws4.WebSocketServer {
|
|
|
485
485
|
this.eventSchemas = eventSchemas;
|
|
486
486
|
super.on("connection", (ws, request) => {
|
|
487
487
|
const forklaunchWs = this.enhanceWebSocket(ws);
|
|
488
|
-
|
|
488
|
+
super.emit("connection", forklaunchWs, request);
|
|
489
489
|
});
|
|
490
490
|
}
|
|
491
491
|
/**
|
package/lib/index.mjs
CHANGED
|
@@ -457,7 +457,7 @@ var ForklaunchWebSocketServer = class extends WebSocketServer {
|
|
|
457
457
|
this.eventSchemas = eventSchemas;
|
|
458
458
|
super.on("connection", (ws, request) => {
|
|
459
459
|
const forklaunchWs = this.enhanceWebSocket(ws);
|
|
460
|
-
|
|
460
|
+
super.emit("connection", forklaunchWs, request);
|
|
461
461
|
});
|
|
462
462
|
}
|
|
463
463
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forklaunch/ws",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Typed framework for ws, by ForkLaunch.",
|
|
5
5
|
"homepage": "https://github.com/forklaunch/forklaunch-js#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -28,23 +28,23 @@
|
|
|
28
28
|
"@asyncapi/parser": "^3.4.0",
|
|
29
29
|
"@forklaunch/fastmcp-fork": "^1.0.5",
|
|
30
30
|
"@types/ws": "^8.18.1",
|
|
31
|
-
"ws": "^8.
|
|
32
|
-
"@forklaunch/common": "0.6.
|
|
33
|
-
"@forklaunch/
|
|
34
|
-
"@forklaunch/
|
|
31
|
+
"ws": "^8.19.0",
|
|
32
|
+
"@forklaunch/common": "0.6.24",
|
|
33
|
+
"@forklaunch/core": "0.17.0",
|
|
34
|
+
"@forklaunch/validator": "0.10.24"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@eslint/js": "^9.39.
|
|
38
|
-
"@typescript/native-preview": "7.0.0-dev.
|
|
37
|
+
"@eslint/js": "^9.39.2",
|
|
38
|
+
"@typescript/native-preview": "7.0.0-dev.20260118.1",
|
|
39
39
|
"jest": "^30.2.0",
|
|
40
|
-
"prettier": "^3.
|
|
41
|
-
"ts-jest": "^29.4.
|
|
40
|
+
"prettier": "^3.8.0",
|
|
41
|
+
"ts-jest": "^29.4.6",
|
|
42
42
|
"ts-node": "^10.9.2",
|
|
43
43
|
"tsup": "^8.5.1",
|
|
44
|
-
"typedoc": "^0.28.
|
|
44
|
+
"typedoc": "^0.28.16",
|
|
45
45
|
"typescript": "^5.9.3",
|
|
46
|
-
"typescript-eslint": "^8.
|
|
47
|
-
"zod": "^4.
|
|
46
|
+
"typescript-eslint": "^8.53.0",
|
|
47
|
+
"zod": "^4.3.5"
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
50
|
"build": "tsgo --noEmit && tsup index.ts --format cjs,esm --no-splitting --tsconfig tsconfig.json --outDir lib --dts --clean",
|