@brandon_m_behring/book-scaffold-astro 3.0.0-alpha.13 → 3.0.0-alpha.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.mjs +8 -2
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -224,8 +224,14 @@ async function defineBookConfig(opts) {
224
224
  const remarkPlugins = [];
225
225
  const rehypePlugins = [];
226
226
  if (profile === "academic") {
227
- const { default: remarkMath } = await import("remark-math");
228
- const { default: rehypeKatex } = await import("rehype-katex");
227
+ const { default: remarkMath } = await import(
228
+ /* @vite-ignore */
229
+ "remark-math"
230
+ );
231
+ const { default: rehypeKatex } = await import(
232
+ /* @vite-ignore */
233
+ "rehype-katex"
234
+ );
229
235
  const { ssmMacros: ssmMacros2 } = await Promise.resolve().then(() => (init_katex_macros(), katex_macros_exports));
230
236
  remarkPlugins.push(remarkMath);
231
237
  rehypePlugins.push([
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@brandon_m_behring/book-scaffold-astro",
3
3
  "description": "Astro 6 + MDX toolkit for long-form technical books. Profile-aware (academic / tools / minimal); ships Tufte typography, KaTeX, BibTeX citations, Pagefind, Cloudflare Workers deploy. See PACKAGE_DESIGN.md for the API contract.",
4
- "version": "3.0.0-alpha.13",
4
+ "version": "3.0.0-alpha.14",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "author": "Brandon Behring",