@brandon_m_behring/book-scaffold-astro 3.0.0-alpha.2 → 3.0.0-alpha.3
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/package.json +1 -1
- package/src/lib/patterns.ts +1 -1
- package/src/lib/sources.ts +1 -1
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.3",
|
|
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];
|