fix(build): Update build script and async function signature

This commit is contained in:
2025-04-20 20:18:07 +00:00
parent 8e18898542
commit 2ea29cffbb
4 changed files with 9 additions and 3 deletions

View File

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@social.io/catalog',
version: '1.2.3',
version: '1.2.4',
description: 'catalog for social.io'
}

View File

@@ -104,7 +104,7 @@ export class SioRecorder extends DeesElement {
* Starts an rrweb recording session that tracks the entire DOM,
* including canvases and cross-origin iframes (if permissible).
*/
private async startRecording(): void {
private async startRecording(): Promise<void> {
await this.domtoolsPromise;
this.status = 'recording';
this.events = [];