@brandon_m_behring/book-scaffold-astro 3.0.0-alpha.1 → 3.0.0-alpha.2

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.
package/dist/index.mjs CHANGED
@@ -152,12 +152,12 @@ var ALWAYS_ON_STYLES = [
152
152
  ];
153
153
  var TOOLS_ONLY_STYLES = ["convergence.css", "tool-filter.css"];
154
154
  var DEFAULT_ROUTES_ALL = [
155
- { pattern: "/chapters", file: "chapters.astro" },
156
155
  { pattern: "/references", file: "references.astro" },
157
156
  { pattern: "/print", file: "print.astro" },
158
157
  { pattern: "/search", file: "search.astro" }
159
158
  ];
160
159
  var DEFAULT_ROUTES_TOOLS = [
160
+ { pattern: "/chapters", file: "chapters.astro" },
161
161
  { pattern: "/convergence", file: "convergence.astro" }
162
162
  ];
163
163
  function resolvePage(file) {
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.1",
4
+ "version": "3.0.0-alpha.2",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "author": "Brandon Behring",
@@ -23,7 +23,7 @@
23
23
  * getFreshness(today-200d, 'stable-principle').status === 'fresh'
24
24
  * getFreshness(today-300d, 'stable-principle').status === 'verify-soon'
25
25
  */
26
- import type { volatilityLevels } from '../content.config';
26
+ import type { volatilityLevels } from '../schemas.js';
27
27
 
28
28
  export type VolatilityLevel = (typeof volatilityLevels)[number];
29
29