node-pluginsmanager-plugin 5.1.0 → 5.1.1
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.
|
@@ -351,7 +351,6 @@ class Orchestrator extends MediatorUser_1.default {
|
|
|
351
351
|
return this._Server.init(...data).then(() => {
|
|
352
352
|
if (this._socketServer) { // delayed socketMiddleware
|
|
353
353
|
this._Server.socketMiddleware(this._socketServer);
|
|
354
|
-
this._socketServer = null;
|
|
355
354
|
}
|
|
356
355
|
if (!this._checkParameters) { // delayed checkParameters
|
|
357
356
|
this._Server.disableCheckParameters();
|
|
@@ -376,7 +375,6 @@ class Orchestrator extends MediatorUser_1.default {
|
|
|
376
375
|
}) : Promise.resolve();
|
|
377
376
|
}).then(() => {
|
|
378
377
|
return this._Server ? this._Server.release(...data).then(() => {
|
|
379
|
-
this._socketServer = null;
|
|
380
378
|
this._Server = null;
|
|
381
379
|
}) : Promise.resolve();
|
|
382
380
|
}).then(() => {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
|
|
3
3
|
"name": "node-pluginsmanager-plugin",
|
|
4
|
-
"version": "5.1.
|
|
4
|
+
"version": "5.1.1",
|
|
5
5
|
"description": "An abstract parent plugin for node-pluginsmanager",
|
|
6
6
|
|
|
7
7
|
"type": "commonjs",
|
|
@@ -45,13 +45,14 @@
|
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@types/express": "4.17.17",
|
|
48
|
-
"@types/node": "20.5.
|
|
48
|
+
"@types/node": "20.5.9",
|
|
49
49
|
"@types/socket.io": "3.0.2",
|
|
50
50
|
"@types/uniqid": "5.3.2",
|
|
51
51
|
"@types/ws": "8.5.5",
|
|
52
|
-
"check-version-modules": "1.
|
|
52
|
+
"check-version-modules": "1.5.2",
|
|
53
53
|
"coveralls": "3.1.1",
|
|
54
54
|
"colors": "1.4.0",
|
|
55
|
+
"eslint": "8.48.0",
|
|
55
56
|
"express": "4.18.2",
|
|
56
57
|
"husky": "8.0.3",
|
|
57
58
|
"mocha": "10.2.0",
|
|
@@ -59,9 +60,9 @@
|
|
|
59
60
|
"openapi-types": "12.1.3",
|
|
60
61
|
"socket.io": "4.7.2",
|
|
61
62
|
"socket.io-client": "4.7.2",
|
|
62
|
-
"typescript": "5.
|
|
63
|
-
"used-deps-analyzer": "0.1.
|
|
64
|
-
"ws": "8.
|
|
63
|
+
"typescript": "5.2.2",
|
|
64
|
+
"used-deps-analyzer": "0.1.8",
|
|
65
|
+
"ws": "8.14.0"
|
|
65
66
|
},
|
|
66
67
|
"optionalDependencies": {},
|
|
67
68
|
|