quidproquo-web 0.1.1 → 0.1.2
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.
|
@@ -112,7 +112,7 @@ class WebsocketService {
|
|
|
112
112
|
const jitter = baseDelay * 0.25 * (Math.random() * 2 - 1);
|
|
113
113
|
const delay = Math.max(0, baseDelay + jitter);
|
|
114
114
|
this.reconnectAttempts++;
|
|
115
|
-
console.log(
|
|
115
|
+
console.log('Delay: ', delay);
|
|
116
116
|
setTimeout(() => {
|
|
117
117
|
if (!this.isDestroyed) {
|
|
118
118
|
this.connect();
|
|
@@ -109,7 +109,7 @@ export class WebsocketService {
|
|
|
109
109
|
const jitter = baseDelay * 0.25 * (Math.random() * 2 - 1);
|
|
110
110
|
const delay = Math.max(0, baseDelay + jitter);
|
|
111
111
|
this.reconnectAttempts++;
|
|
112
|
-
console.log(
|
|
112
|
+
console.log('Delay: ', delay);
|
|
113
113
|
setTimeout(() => {
|
|
114
114
|
if (!this.isDestroyed) {
|
|
115
115
|
this.connect();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quidproquo-web",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./lib/commonjs/index.js",
|
|
6
6
|
"module": "./lib/esm/index.js",
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
},
|
|
33
33
|
"homepage": "https://github.com/joe-coady/quidproquo#readme",
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"quidproquo-core": "0.1.
|
|
36
|
-
"quidproquo-tsconfig": "0.1.
|
|
37
|
-
"quidproquo-webserver": "0.1.
|
|
35
|
+
"quidproquo-core": "0.1.2",
|
|
36
|
+
"quidproquo-tsconfig": "0.1.2",
|
|
37
|
+
"quidproquo-webserver": "0.1.2",
|
|
38
38
|
"typescript": "^5.8.2"
|
|
39
39
|
}
|
|
40
40
|
}
|