fix(core): update

This commit is contained in:
Philipp Kunz 2023-03-30 19:44:44 +02:00
parent 92ecef30d3
commit cc421c3321
3 changed files with 5 additions and 3 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@apiglobal/typedserver',
version: '2.0.43',
version: '2.0.44',
description: 'easy serving of static files'
}

View File

@ -201,7 +201,9 @@ export class TypedServer {
this.ended = true;
await this.server.stop();
await this.typedsocket.stop();
await this.smartchokInstance.stop();
if (this.smartchokInstance) {
await this.smartchokInstance.stop();
}
}
public async createServeDirHash() {

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@apiglobal/typedserver',
version: '2.0.43',
version: '2.0.44',
description: 'easy serving of static files'
}