Skip to content

Commit 73ec295

Browse files
committed
update to libsql-js 0.4.1
1 parent 164625f commit 73ec295

3 files changed

Lines changed: 34 additions & 34 deletions

File tree

package-lock.json

Lines changed: 32 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/libsql-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
"@libsql/core": "^0.9.0",
106106
"@libsql/hrana-client": "^0.6.2",
107107
"js-base64": "^3.7.5",
108-
"libsql": "^0.4.0",
108+
"libsql": "^0.4.1",
109109
"promise-limit": "^2.7.0"
110110
},
111111
"devDependencies": {

packages/libsql-client/src/sqlite3.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ export class Sqlite3Client implements Client {
188188

189189
async sync(): Promise<Replicated> {
190190
this.#checkNotClosed();
191-
const rep = (await this.#getDb().sync()) as any;
191+
const rep = await this.#getDb().sync();
192192
return {
193193
frames_synced: rep.frames_synced,
194194
frame_no: rep.frame_no,

0 commit comments

Comments
 (0)