Skip to content

Commit

Permalink
[ci] format
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewp authored and astrobot-houston committed Jan 22, 2024
1 parent 6c5f42d commit a50926a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/astro/src/cli/db/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 }) {
Expand All @@ -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 });
}

0 comments on commit a50926a

Please sign in to comment.