0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-31 23:31:30 -05:00

fix: astrodb vite plugin throws in vitest and cannot seed database (#11435)

* fix: ASTRO_DATABASE_FILE is undefined in virtual module

* changeset

* handle undefined

* Update .changeset/lemon-beans-admire.md

Co-authored-by: Emanuele Stoppa <my.burning@gmail.com>

* use JSON.stringify

---------

Co-authored-by: Emanuele Stoppa <my.burning@gmail.com>
This commit is contained in:
haivuw 2024-10-21 18:07:44 +07:00 committed by GitHub
parent ff522b96a0
commit f32a7a8388
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---
'@astrojs/db': patch
---
Fixes a bug where `astro:db:seed` couldn't access to the environment variable `ASTRO_DATABASE_FILE`

View file

@ -124,12 +124,13 @@ export function getLocalVirtualModContents({
tables: DBTables;
root: URL;
}) {
const { ASTRO_DATABASE_FILE } = getAstroEnv();
const dbInfo = getRemoteDatabaseInfo();
const dbUrl = new URL(DB_PATH, root);
return `
import { asDrizzleTable, createLocalDatabaseClient, normalizeDatabaseUrl } from ${RUNTIME_IMPORT};
const dbUrl = normalizeDatabaseUrl(import.meta.env.ASTRO_DATABASE_FILE, ${JSON.stringify(dbUrl)});
const dbUrl = normalizeDatabaseUrl(${JSON.stringify(ASTRO_DATABASE_FILE)}, ${JSON.stringify(dbUrl)});
export const db = createLocalDatabaseClient({ dbUrl, enableTransactions: ${dbInfo.url === 'libsql'} });
export * from ${RUNTIME_VIRTUAL_IMPORT};