moost 0.2.22 → 0.2.24
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/dist/index.cjs +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -579,8 +579,8 @@ class Moost {
|
|
|
579
579
|
this.unregisteredControllers = [];
|
|
580
580
|
this.logger = (options === null || options === void 0 ? void 0 : options.logger) || getDefaultLogger('moost');
|
|
581
581
|
getMoostInfact().setLogger(this.getLogger('infact'));
|
|
582
|
-
|
|
583
|
-
|
|
582
|
+
const mate$1 = getMoostMate();
|
|
583
|
+
Object.assign(mate$1, { logger: this.getLogger('mate') });
|
|
584
584
|
}
|
|
585
585
|
getLogger(topic) {
|
|
586
586
|
if (this.logger instanceof logger.ProstoLogger) {
|
package/dist/index.mjs
CHANGED
|
@@ -577,8 +577,8 @@ class Moost {
|
|
|
577
577
|
this.unregisteredControllers = [];
|
|
578
578
|
this.logger = (options === null || options === void 0 ? void 0 : options.logger) || getDefaultLogger('moost');
|
|
579
579
|
getMoostInfact().setLogger(this.getLogger('infact'));
|
|
580
|
-
|
|
581
|
-
|
|
580
|
+
const mate = getMoostMate();
|
|
581
|
+
Object.assign(mate, { logger: this.getLogger('mate') });
|
|
582
582
|
}
|
|
583
583
|
getLogger(topic) {
|
|
584
584
|
if (this.logger instanceof ProstoLogger) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "moost",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.24",
|
|
4
4
|
"description": "moost",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -24,10 +24,10 @@
|
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@prostojs/infact": "^0.1.11",
|
|
26
26
|
"@prostojs/mate": "^0.1.14",
|
|
27
|
-
"@prostojs/logger": "^0.3.
|
|
27
|
+
"@prostojs/logger": "^0.3.4",
|
|
28
28
|
"@prostojs/valido": "^0.0.2",
|
|
29
|
-
"@wooksjs/event-core": "^0.2.
|
|
30
|
-
"wooks": "^0.2.
|
|
29
|
+
"@wooksjs/event-core": "^0.2.17",
|
|
30
|
+
"wooks": "^0.2.17"
|
|
31
31
|
},
|
|
32
32
|
"author": "Artem Maltsev",
|
|
33
33
|
"license": "MIT",
|