mirror of
https://github.com/typeorm/typeorm.git
synced 2025-12-08 21:26:23 +00:00
* feat: add nativeBinding option to better-sqlite3 driver better-sqlite3 allows to set the `nativeBinding` option since version v7.5.0. It allows to define a custom path for the native api binary `better_sqlite3.node`. This feature is very important for developers who want to create binaries of their node apps for different platforms (e.g. with pkg). [More information](https://github.com/WiseLibs/better-sqlite3/blob/master/docs/api.md#new-databasepath-options=). * docs: add description about nativeBinding option for better-sqlite3 driver * refactor: apply prettier, test if nativeBinding is correctly set to better-sqlite3 driver * refactor: apply prettier * refactor: replaced describe.only() with describe()