0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-06 22:10:10 -05:00
This commit is contained in:
Matthew Phillips 2024-01-26 14:33:19 -05:00
parent 4a1a2f980b
commit 23eaa88192
2 changed files with 2 additions and 1 deletions

View file

@ -1,6 +1,6 @@
{
"name": "@astrojs/db",
"version": "0.1.6",
"version": "0.1.7",
"description": "",
"license": "MIT",
"type": "module",

View file

@ -64,6 +64,7 @@ const params = ${JSON.stringify({
})};
params.dbUrl = new URL(${JSON.stringify(DB_PATH)}, 'file://' + process.cwd() + '/');
console.log('createLocalDatabaseClient', params);
export const db = await createLocalDatabaseClient(params);
export * from ${DRIZZLE_MOD_IMPORT};