fix(build): Update build script and async function signature
This commit is contained in:
@@ -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
|
||||
|
||||
|
@@ -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"
|
||||
},
|
||||
|
@@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@social.io/catalog',
|
||||
version: '1.2.3',
|
||||
version: '1.2.4',
|
||||
description: 'catalog for social.io'
|
||||
}
|
||||
|
@@ -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 = [];
|
||||
|
Reference in New Issue
Block a user