@brandon_m_behring/book-scaffold-astro 3.0.0-alpha.2 → 3.0.0-alpha.4
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 +1 -1
- package/package.json +1 -1
- package/src/lib/patterns.ts +1 -1
- package/src/lib/sources.ts +1 -1
package/dist/index.mjs
CHANGED
|
@@ -153,11 +153,11 @@ var ALWAYS_ON_STYLES = [
|
|
|
153
153
|
var TOOLS_ONLY_STYLES = ["convergence.css", "tool-filter.css"];
|
|
154
154
|
var DEFAULT_ROUTES_ALL = [
|
|
155
155
|
{ pattern: "/references", file: "references.astro" },
|
|
156
|
-
{ pattern: "/print", file: "print.astro" },
|
|
157
156
|
{ pattern: "/search", file: "search.astro" }
|
|
158
157
|
];
|
|
159
158
|
var DEFAULT_ROUTES_TOOLS = [
|
|
160
159
|
{ pattern: "/chapters", file: "chapters.astro" },
|
|
160
|
+
{ pattern: "/print", file: "print.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.
|
|
4
|
+
"version": "3.0.0-alpha.4",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "Brandon Behring",
|
package/src/lib/patterns.ts
CHANGED
package/src/lib/sources.ts
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* component and any future dashboards share a single source of truth.
|
|
7
7
|
*/
|
|
8
8
|
import { getCollection, type CollectionEntry } from 'astro:content';
|
|
9
|
-
import { sourceTiers } from '../
|
|
9
|
+
import { sourceTiers } from '../schemas.js';
|
|
10
10
|
|
|
11
11
|
export type SourceEntry = CollectionEntry<'sources'>;
|
|
12
12
|
export type SourceTier = (typeof sourceTiers)[number];
|