0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-13 22:11:20 -05:00

[ci] format

This commit is contained in:
Matthew Phillips 2024-04-02 20:08:38 +00:00 committed by astrobot-houston
parent b1eda3dc5c
commit 5f5176b244
3 changed files with 6 additions and 7 deletions

View file

@ -1,10 +1,10 @@
import { fileURLToPath } from 'node:url';
import type { AstroConfig } from 'astro';
import { normalizePath } from 'vite';
import { SEED_DEV_FILE_NAME } from '../../runtime/queries.js';
import { DB_PATH, RUNTIME_CONFIG_IMPORT, RUNTIME_IMPORT, VIRTUAL_MODULE_ID } from '../consts.js';
import type { DBTables } from '../types.js';
import { type VitePlugin, getDbDirectoryUrl, getRemoteDatabaseUrl } from '../utils.js';
import type { AstroConfig } from 'astro';
const WITH_SEED_VIRTUAL_MODULE_ID = 'astro:db:seed';

View file

@ -3,7 +3,7 @@ import { User, db } from 'astro:db';
export default async function () {
await db.insert(User).values([
{
name: 'Houston'
}
name: 'Houston',
},
]);
}

View file

@ -3,6 +3,7 @@ import { User, db } from 'astro:db';
const users = await db.select().from(User);
---
<html>
<head>
<title>Testing</title>
@ -12,9 +13,7 @@ const users = await db.select().from(User);
<h2>Users</h2>
<ul>
{users.map(user => (
<li>{user.name}</li>
))}
{users.map((user) => <li>{user.name}</li>)}
</ul>
</body>
</html>