@olane/o-node 0.7.15 → 0.7.16
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/src/o-node.js +1 -1
- package/package.json +7 -7
package/dist/src/o-node.js
CHANGED
|
@@ -428,7 +428,7 @@ export class oNode extends oToolBase {
|
|
|
428
428
|
this.router.addResolver(new oMethodResolver(this.address));
|
|
429
429
|
this.router.addResolver(new oNodeResolver(this.address));
|
|
430
430
|
// setup a fallback resolver for non-leader nodes
|
|
431
|
-
if (this.isLeader === false
|
|
431
|
+
if (this.isLeader === false) {
|
|
432
432
|
this.logger.debug('Adding leader resolver fallback...');
|
|
433
433
|
this.router.addResolver(new oLeaderResolverFallback(this.address));
|
|
434
434
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@olane/o-node",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.16",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@eslint/eslintrc": "^3.3.1",
|
|
42
42
|
"@eslint/js": "^9.29.0",
|
|
43
|
-
"@olane/o-test": "0.7.
|
|
43
|
+
"@olane/o-test": "0.7.16",
|
|
44
44
|
"@tsconfig/node20": "^20.1.6",
|
|
45
45
|
"@types/jest": "^30.0.0",
|
|
46
46
|
"@typescript-eslint/eslint-plugin": "^8.34.1",
|
|
@@ -59,12 +59,12 @@
|
|
|
59
59
|
"typescript": "5.4.5"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@olane/o-config": "0.7.
|
|
63
|
-
"@olane/o-core": "0.7.
|
|
64
|
-
"@olane/o-protocol": "0.7.
|
|
65
|
-
"@olane/o-tool": "0.7.
|
|
62
|
+
"@olane/o-config": "0.7.16",
|
|
63
|
+
"@olane/o-core": "0.7.16",
|
|
64
|
+
"@olane/o-protocol": "0.7.16",
|
|
65
|
+
"@olane/o-tool": "0.7.16",
|
|
66
66
|
"debug": "^4.4.1",
|
|
67
67
|
"dotenv": "^16.5.0"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "e55f5185b0ecbf9d10379f21ea5273983d85683e"
|
|
70
70
|
}
|