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:
parent
ff522b96a0
commit
f32a7a8388
2 changed files with 7 additions and 1 deletions
5
.changeset/lemon-beans-admire.md
Normal file
5
.changeset/lemon-beans-admire.md
Normal 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`
|
|
@ -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};
|
||||
|
|
Loading…
Add table
Reference in a new issue