astro-ghostcms/.pnpm-store/v3/files/04/7b856a77cdc3ae16c3d3a9875e4...

23 lines
621 B
Plaintext

import { printHelp } from "../../core/messages.js";
import _sync from "../../core/sync/index.js";
import { flagsToAstroInlineConfig } from "../flags.js";
async function sync({ flags }) {
if (flags?.help || flags?.h) {
printHelp({
commandName: "astro sync",
usage: "[...flags]",
tables: {
Flags: [["--help (-h)", "See all available flags."]]
},
description: `Generates TypeScript types for all Astro modules.`
});
return 0;
}
const inlineConfig = flagsToAstroInlineConfig(flags);
const exitCode = await _sync(inlineConfig);
return exitCode;
}
export {
sync
};