fix(core): update

This commit is contained in:
2023-03-20 17:06:33 +01:00
parent 889ec9c8ec
commit f9397feaf0
4 changed files with 319 additions and 70 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@apiglobal/typedsocket',
version: '2.0.18',
version: '2.0.19',
description: 'a typedrequest extension supporting websockets'
}

View File

@ -97,8 +97,10 @@ export class TypedSocket {
},
smartsocketClient
);
console.log(`typedsocket triggering smartsocket to connect...`);
const before = Date.now();
await smartsocketClient.connect();
console.log(`typedsocket triggered smartsocket connected in ${Date.now() - before}ms!!!`)
return typedsocket;
}