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

[ci] format

This commit is contained in:
Matthew Phillips 2024-01-22 23:33:47 +00:00 committed by astrobot-houston
parent 6c5f42d308
commit a50926a6b6

View file

@ -5,7 +5,7 @@ import { resolveConfig } from '../../core/config/config.js';
import type { AstroConfig } from '../../@types/astro.js';
type DBPackage = {
cli: (args: { flags: Arguments, config: AstroConfig }) => unknown;
cli: (args: { flags: Arguments; config: AstroConfig }) => unknown;
};
export async function db({ flags }: { flags: Arguments }) {
@ -26,5 +26,5 @@ export async function db({ flags }: { flags: Arguments }) {
const inlineConfig = flagsToAstroInlineConfig(flags);
const { astroConfig } = await resolveConfig(inlineConfig, 'build');
await cli({flags, config: astroConfig});
await cli({ flags, config: astroConfig });
}