kysely-libsql
kysely-libsql copied to clipboard
Kysely dialect for sqld
This repo still uses the internal `@libsql/hrana-client` library. This PR updates it to use `@libsql/client` for parity.
Typescript complains when the `@libsql/client` version is out of sync. I updated it, enabled dependabot to automatically bump versions, and updated the CI to match the new version. ``` Error:...
Bumps the dependencies group with 4 updates in the / directory: [@libsql/client](https://github.com/libsql/libsql-client-ts), [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest), [ts-jest](https://github.com/kulshekhar/ts-jest) and [typescript](https://github.com/microsoft/TypeScript). Updates `@libsql/client` from 0.9.0 to 0.14.0 Changelog Sourced from @libsql/client's changelog. Changelog 0.12.0 --...
Using the recent version (`0.10.0`) of `@libsql/client` leads to the following typing error when initializing the dialect via: ```ts const dialect = new LibsqlDialect({ client: createClient({ url: "file:database.db" }), });...
- Issue happening after updating from `"^0.3.0"` to `"^0.4.1"`, Error: ```bash ⨯ ./node_modules/.pnpm/@[email protected]/node_modules/@libsql/client/README.md Module parse failed: Unexpected token (1:0) You may need an appropriate loader to handle this file type,...
Hello! 👋 I just started using Kysely with libSQL for a personal project and ran into an issue while trying to use it with React Server Components using this dialect....
Please publish 0.5.0 on npm. It's still on 0.4.1: https://www.npmjs.com/package/@libsql/kysely-libsql
Fixes #24
# Summary 1. The default import of `@libsql/client` here resolves to `web.js`, which contains no support of the `file:` protocol. 2. The requirement of manual closing when using the `client`...