import { assemble } from "../utils/assemble.js"; import { render as renderDocument } from "../../render/index.js"; /** * Render the current working directory document and output as JSON */ export const render = async (_ctx) => { const document = await assemble(); const rendered = await renderDocument(document); process.stdout.write(JSON.stringify(rendered) + '\n'); }; //# sourceMappingURL=render.js.map