Files
website/node_modules/astro/dist/cli/sync/index.js
2024-05-06 17:15:30 -04:00

23 lines
621 B
JavaScript

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
};