@pagenary/publisher 2026.6.1 → 2026.6.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/package.json +1 -1
- package/scripts/build-tenants.js +3 -3
- package/site/index.html +1 -1
- package/site/manifest.js +9 -9
- package/site/robots.txt +1 -1
package/package.json
CHANGED
package/scripts/build-tenants.js
CHANGED
|
@@ -2576,14 +2576,14 @@ async function materializeScannedSections(sections, context) {
|
|
|
2576
2576
|
title,
|
|
2577
2577
|
summary,
|
|
2578
2578
|
...metadata,
|
|
2579
|
-
module:
|
|
2579
|
+
module: `/sections/${outFile}`,
|
|
2580
2580
|
subsections: processedSubsections
|
|
2581
2581
|
};
|
|
2582
2582
|
if (type) entry.type = type;
|
|
2583
2583
|
if (collapsed) entry.collapsed = true;
|
|
2584
2584
|
processed.push(entry);
|
|
2585
2585
|
} else {
|
|
2586
|
-
const entry = { id, title, summary, ...metadata, module:
|
|
2586
|
+
const entry = { id, title, summary, ...metadata, module: `/sections/${outFile}` };
|
|
2587
2587
|
if (type) entry.type = type;
|
|
2588
2588
|
if (collapsed) entry.collapsed = true;
|
|
2589
2589
|
processed.push(entry);
|
|
@@ -2896,7 +2896,7 @@ async function materializeSectionModule(entry, context) {
|
|
|
2896
2896
|
return null;
|
|
2897
2897
|
}
|
|
2898
2898
|
|
|
2899
|
-
return
|
|
2899
|
+
return `/sections/${outFile}`;
|
|
2900
2900
|
}
|
|
2901
2901
|
|
|
2902
2902
|
function buildManifestModuleSource(manifestEntries, defaultSection, siteConfig = {}, exportConfig = {}) {
|
package/site/index.html
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<meta name="description" content="Pagenary developer documentation — building, configuring, deploying, and extending the multi-tenant documentation publisher, published with Pagenary itself." />
|
|
8
8
|
<link rel="icon" type="image/png" href="/favicon.png" />
|
|
9
9
|
<link rel="stylesheet" href="/styles.css" />
|
|
10
|
-
<meta name="x-build" content="2026-06-15T18:
|
|
10
|
+
<meta name="x-build" content="2026-06-15T18:50:34.132Z" />
|
|
11
11
|
</head>
|
|
12
12
|
<body>
|
|
13
13
|
<a class="skip-link" href="#app">Skip to content</a>
|
package/site/manifest.js
CHANGED
|
@@ -3,7 +3,7 @@ export const MANIFEST = [
|
|
|
3
3
|
"id": "welcome",
|
|
4
4
|
"title": "Welcome",
|
|
5
5
|
"summary": "What Pagenary is and how this dogfooded portal is built.",
|
|
6
|
-
"module": "
|
|
6
|
+
"module": "/sections/welcome.js"
|
|
7
7
|
},
|
|
8
8
|
{
|
|
9
9
|
"id": "getting-started",
|
|
@@ -14,7 +14,7 @@ export const MANIFEST = [
|
|
|
14
14
|
"id": "quickstart",
|
|
15
15
|
"title": "Quickstart",
|
|
16
16
|
"summary": "Install, build the default bundle, and serve it locally.",
|
|
17
|
-
"module": "
|
|
17
|
+
"module": "/sections/quickstart.js"
|
|
18
18
|
}
|
|
19
19
|
]
|
|
20
20
|
},
|
|
@@ -27,19 +27,19 @@ export const MANIFEST = [
|
|
|
27
27
|
"id": "developer-guide",
|
|
28
28
|
"title": "Developer Guide",
|
|
29
29
|
"summary": "Project layout, scripts, and the content authoring workflow.",
|
|
30
|
-
"module": "
|
|
30
|
+
"module": "/sections/developer-guide.js"
|
|
31
31
|
},
|
|
32
32
|
{
|
|
33
33
|
"id": "tenant-config",
|
|
34
34
|
"title": "Tenant Configuration",
|
|
35
35
|
"summary": "Every config.json option: branding, theming, SEO, and export.",
|
|
36
|
-
"module": "
|
|
36
|
+
"module": "/sections/tenant-config.js"
|
|
37
37
|
},
|
|
38
38
|
{
|
|
39
39
|
"id": "extending",
|
|
40
40
|
"title": "Extending",
|
|
41
41
|
"summary": "Add section templates, content types, and build behaviors.",
|
|
42
|
-
"module": "
|
|
42
|
+
"module": "/sections/extending.js"
|
|
43
43
|
}
|
|
44
44
|
]
|
|
45
45
|
},
|
|
@@ -52,25 +52,25 @@ export const MANIFEST = [
|
|
|
52
52
|
"id": "architecture",
|
|
53
53
|
"title": "Architecture",
|
|
54
54
|
"summary": "The static SPA pattern, build pipeline, and tenant content model.",
|
|
55
|
-
"module": "
|
|
55
|
+
"module": "/sections/architecture.js"
|
|
56
56
|
},
|
|
57
57
|
{
|
|
58
58
|
"id": "api",
|
|
59
59
|
"title": "API Reference",
|
|
60
60
|
"summary": "Module-level documentation for the publisher internals.",
|
|
61
|
-
"module": "
|
|
61
|
+
"module": "/sections/api.js"
|
|
62
62
|
},
|
|
63
63
|
{
|
|
64
64
|
"id": "deployment",
|
|
65
65
|
"title": "Deployment",
|
|
66
66
|
"summary": "Hosting the static output and multi-tenant domain routing.",
|
|
67
|
-
"module": "
|
|
67
|
+
"module": "/sections/deployment.js"
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
70
|
"id": "seo-strategy",
|
|
71
71
|
"title": "SEO Strategy",
|
|
72
72
|
"summary": "Metadata, hash-routing considerations, and discoverability.",
|
|
73
|
-
"module": "
|
|
73
|
+
"module": "/sections/seo-strategy.js"
|
|
74
74
|
}
|
|
75
75
|
]
|
|
76
76
|
}
|
package/site/robots.txt
CHANGED