UNPKG

astro

Version:

Astro is a modern site builder with web best practices, performance, and DX front-of-mind.

21 lines (20 loc) 520 B
import { background as startBackgroundServer, devServerCommand, formatBackgroundOutput, formatServerRunningMessage as formatServerMessage } from "../server.js"; function formatServerRunningMessage(data, { existing = false } = {}) { return formatServerMessage(data, devServerCommand, { existing }); } async function background({ flags, logger }) { await startBackgroundServer({ flags, logger, config: devServerCommand }); } export { background, formatBackgroundOutput, formatServerRunningMessage };