2 Commits

Author SHA1 Message Date
b49707a727 1.2.4
Some checks failed
Default (tags) / security (push) Failing after 1s
Default (tags) / test (push) Failing after 1s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2025-04-20 20:18:07 +00:00
2ea29cffbb fix(build): Update build script and async function signature 2025-04-20 20:18:07 +00:00
4 changed files with 10 additions and 4 deletions

View File

@@ -1,5 +1,11 @@
# Changelog
## 2025-04-20 - 1.2.4 - fix(build)
Update build script and async function signature
- Added '--skiplibcheck' flag to the tsbuild command in package.json
- Changed startRecording return type to Promise<void> in ts_web/elements/sio-recorder.ts for proper async handling
## 2025-04-20 - 1.2.3 - fix(core)
Update dependency versions and adjust UI CSS for fab and combox elements

View File

@@ -1,6 +1,6 @@
{
"name": "@social.io/catalog",
"version": "1.2.3",
"version": "1.2.4",
"private": false,
"description": "catalog for social.io",
"main": "dist_ts_web/index.js",
@@ -8,7 +8,7 @@
"type": "module",
"scripts": {
"test": "tstest test/",
"build": "tsbuild tsfolders --allowimplicitany && tsbundle element --production",
"build": "tsbuild tsfolders --allowimplicitany --skiplibcheck && tsbundle element --production",
"watch": "tswatch element",
"buildDocs": "tsdoc"
},

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 = [];