From af76d8cbaeccf9bba4d1df3597a16495fe4d128a Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Wed, 30 Aug 2023 16:12:39 -0500 Subject: [PATCH] Bump kysely-deno-sqlite to v1.0.1, remove `as any` from database type --- src/db.ts | 2 +- src/deps.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/db.ts b/src/db.ts index 9f497b2..d14a9bc 100644 --- a/src/db.ts +++ b/src/db.ts @@ -49,7 +49,7 @@ interface RelayRow { const db = new Kysely({ dialect: new DenoSqliteDialect({ - database: new Sqlite(Conf.dbPath) as any, + database: new Sqlite(Conf.dbPath), }), }); diff --git a/src/deps.ts b/src/deps.ts index 31104ac..a2c640a 100644 --- a/src/deps.ts +++ b/src/deps.ts @@ -63,7 +63,7 @@ export { type NullableInsertKeys, sql, } from 'npm:kysely@^0.25.0'; -export { DenoSqliteDialect } from 'https://gitlab.com/soapbox-pub/kysely-deno-sqlite/-/raw/v1.0.0/mod.ts'; +export { DenoSqliteDialect } from 'https://gitlab.com/soapbox-pub/kysely-deno-sqlite/-/raw/v1.0.1/mod.ts'; export { default as tldts } from 'npm:tldts@^6.0.14'; export type * as TypeFest from 'npm:type-fest@^4.3.0';