/** * Production build orchestration, MDX compilation, and multi-runtime * output generation for Deno, Node.js, and Bun targets. * * @module build */ export { compileMDXToJS } from "./compiler/mdx-to-js.js"; export { compileAllMDX, watchMDX } from "./compiler/mdx-compiler/index.js"; export { buildProduction } from "./production-build/build/build-orchestrator.js"; export { LOCAL_RELEASE_ASSET_MANIFEST_PATH } from "./production-build/local-release-assets.js"; export { buildEmbeddedPreset } from "./embedded/preset.js"; //# sourceMappingURL=index.d.ts.map