@dogsbay/format-astro 0.2.0-beta.92 → 0.2.0-beta.98
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/base-path.d.ts +10 -0
- package/dist/base-path.d.ts.map +1 -1
- package/dist/base-path.js +11 -1
- package/dist/base-path.js.map +1 -1
- package/dist/blog.d.ts +134 -0
- package/dist/blog.d.ts.map +1 -0
- package/dist/blog.js +319 -0
- package/dist/blog.js.map +1 -0
- package/dist/diff-decoration.d.ts +79 -0
- package/dist/diff-decoration.d.ts.map +1 -0
- package/dist/diff-decoration.js +541 -0
- package/dist/diff-decoration.js.map +1 -0
- package/dist/granularity.d.ts +83 -0
- package/dist/granularity.d.ts.map +1 -0
- package/dist/granularity.js +247 -0
- package/dist/granularity.js.map +1 -0
- package/dist/index.d.ts +17 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +22 -1
- package/dist/index.js.map +1 -1
- package/dist/lead.d.ts.map +1 -1
- package/dist/lead.js +30 -6
- package/dist/lead.js.map +1 -1
- package/dist/llms-txt.d.ts +19 -0
- package/dist/llms-txt.d.ts.map +1 -1
- package/dist/llms-txt.js +40 -2
- package/dist/llms-txt.js.map +1 -1
- package/dist/project.d.ts +134 -2
- package/dist/project.d.ts.map +1 -1
- package/dist/project.js +1149 -137
- package/dist/project.js.map +1 -1
- package/dist/serialize.d.ts +1 -0
- package/dist/serialize.d.ts.map +1 -1
- package/dist/serialize.js +302 -138
- package/dist/serialize.js.map +1 -1
- package/dist/sitemap.d.ts +24 -0
- package/dist/sitemap.d.ts.map +1 -1
- package/dist/sitemap.js +32 -3
- package/dist/sitemap.js.map +1 -1
- package/dist/taxonomy.d.ts +24 -1
- package/dist/taxonomy.d.ts.map +1 -1
- package/dist/taxonomy.js +23 -2
- package/dist/taxonomy.js.map +1 -1
- package/package.json +8 -7
package/dist/project.d.ts
CHANGED
|
@@ -1,4 +1,40 @@
|
|
|
1
1
|
import type { ExportPage, NavItem } from "@dogsbay/types";
|
|
2
|
+
import { type BlogEmitConfig } from "./blog.js";
|
|
3
|
+
/**
|
|
4
|
+
* Astro `outDir` for a Cloudflare Workers deploy mounted on a host subpath.
|
|
5
|
+
*
|
|
6
|
+
* Workers Static Assets resolves the FULL request pathname against the
|
|
7
|
+
* asset manifest and strips nothing. A site mounted at `dogsbay.ai/blog/*`
|
|
8
|
+
* is therefore asked for `/blog/index.html`, and unless the build output
|
|
9
|
+
* actually contains `blog/`, every request 404s. Astro's `base` does not
|
|
10
|
+
* do this: it prefixes generated URLs (including `/blog/_astro/...`) but
|
|
11
|
+
* leaves the emitted files at `dist/` root. Setting `outDir` to
|
|
12
|
+
* `./dist<urlBase>` is what makes the two agree.
|
|
13
|
+
*
|
|
14
|
+
* GitHub Pages needs the OPPOSITE and must not get this. There the
|
|
15
|
+
* uploaded artifact IS the site root, served at `https://<user>.github.io/
|
|
16
|
+
* <repo>/`, so the host supplies the prefix: URLs must carry it, files
|
|
17
|
+
* must not. Emitting `outDir` for a Pages build would produce
|
|
18
|
+
* `/<repo>/<repo>/`. Hence the deploy-target gate — the same `site.url`
|
|
19
|
+
* deliberately yields different layouts per target.
|
|
20
|
+
*
|
|
21
|
+
* Returns `undefined` when the target is not Workers or the site sits at
|
|
22
|
+
* the host root (no path in `site.url`), which is the common case.
|
|
23
|
+
*/
|
|
24
|
+
export declare function workersSubpathOutDir(deploy: AstroProjectOptions["deploy"], urlBase: string): string | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* Build the `excludeFromRoutes` predicate.
|
|
27
|
+
*
|
|
28
|
+
* Exported because more than one emitter has to agree on which pages
|
|
29
|
+
* become routes. The blog listed excluded pages as posts, producing index
|
|
30
|
+
* cards and Newer/Older links to pages that were never emitted — a 404
|
|
31
|
+
* from the site's own front page.
|
|
32
|
+
*
|
|
33
|
+
* A single-segment pattern matches ANY segment (fragment dirs symlink to
|
|
34
|
+
* many depths in AsciiBinder corpora); a multi-segment pattern matches as
|
|
35
|
+
* a leading path prefix, so `welcome/_internal` excludes only that tree.
|
|
36
|
+
*/
|
|
37
|
+
export declare function makeSlugExcluder(excludeFromRoutes?: string[]): (slug: string) => boolean;
|
|
2
38
|
export interface AstroProjectOptions {
|
|
3
39
|
siteName?: string;
|
|
4
40
|
theme?: string;
|
|
@@ -31,9 +67,26 @@ export interface AstroProjectOptions {
|
|
|
31
67
|
* External asset directories mounted into the `_assets` convention. Each
|
|
32
68
|
* dir's CONTENTS are copied to `public/_assets/` (e.g. a Docusaurus `static/`
|
|
33
69
|
* dir, whose `/img/x` refs the importer rewrote to `/_assets/img/x`).
|
|
70
|
+
* `into` targets an `_assets/<into>` subdir; `mediaOnly` copies only media
|
|
71
|
+
* files (for mounts whose dir is the docs tree itself).
|
|
34
72
|
*/
|
|
35
73
|
assetMounts?: {
|
|
36
74
|
dir: string;
|
|
75
|
+
into?: string;
|
|
76
|
+
mediaOnly?: boolean;
|
|
77
|
+
}[];
|
|
78
|
+
/**
|
|
79
|
+
* Per-source asset directories with the URL prefix their content refs
|
|
80
|
+
* were rewritten with. Used by multi-source (versioned/localised) builds
|
|
81
|
+
* so EACH source's assets are copied under `public/<urlPrefix>/...`
|
|
82
|
+
* (e.g. `public/8.8/_assets/...`) and same-path images across versions
|
|
83
|
+
* don't collide. When set, it REPLACES the single-`sourceDir` asset copy
|
|
84
|
+
* (which only ever copied the first source, version-less). `urlPrefix`
|
|
85
|
+
* empty/absent copies to `public/...` flat (the baseline source).
|
|
86
|
+
*/
|
|
87
|
+
assetSourceDirs?: {
|
|
88
|
+
dir: string;
|
|
89
|
+
urlPrefix?: string;
|
|
37
90
|
}[];
|
|
38
91
|
/** Custom CSS files from mkdocs.yml extra_css */
|
|
39
92
|
extraCss?: string[];
|
|
@@ -113,11 +166,14 @@ export interface AstroProjectOptions {
|
|
|
113
166
|
id: string;
|
|
114
167
|
label?: string;
|
|
115
168
|
eol?: boolean;
|
|
169
|
+
prerelease?: boolean;
|
|
170
|
+
hidden?: boolean;
|
|
116
171
|
}>;
|
|
117
172
|
/**
|
|
118
173
|
* Which version is the default. Marked in switcherMap.json so
|
|
119
|
-
* the switcher can highlight it
|
|
120
|
-
*
|
|
174
|
+
* the switcher can highlight it, and drives the default-version
|
|
175
|
+
* redirect middleware. A pre-release version is never the
|
|
176
|
+
* default (enforced at config load).
|
|
121
177
|
*/
|
|
122
178
|
defaultVersion?: string;
|
|
123
179
|
/**
|
|
@@ -145,6 +201,18 @@ export interface AstroProjectOptions {
|
|
|
145
201
|
* the build never clobbers an author-edited workflow YAML or
|
|
146
202
|
* wrangler config.
|
|
147
203
|
*/
|
|
204
|
+
/**
|
|
205
|
+
* Other sites on this host whose sitemap / llms.txt this site
|
|
206
|
+
* aggregates. See `AggregateSource` in `@dogsbay/cli` and
|
|
207
|
+
* plans/subpath-robots-txt.md.
|
|
208
|
+
*/
|
|
209
|
+
aggregates?: {
|
|
210
|
+
name: string;
|
|
211
|
+
description?: string;
|
|
212
|
+
url?: string;
|
|
213
|
+
sitemap?: string;
|
|
214
|
+
llmsTxt?: string;
|
|
215
|
+
}[];
|
|
148
216
|
deploy?: "cloudflare-workers" | "github-pages";
|
|
149
217
|
/**
|
|
150
218
|
* Astro `build.inlineStylesheets` policy.
|
|
@@ -224,6 +292,31 @@ export interface AstroProjectOptions {
|
|
|
224
292
|
* to static `.md` files in `dist/`. Default `true`.
|
|
225
293
|
*/
|
|
226
294
|
mdMirror?: boolean;
|
|
295
|
+
/**
|
|
296
|
+
* Granularity views — emit aggregate "single-page" views alongside the
|
|
297
|
+
* topic-grained pages. Additive: the topic site is unchanged; aggregates
|
|
298
|
+
* are quarantined (noindex + excludeFromSearch → robots/sitemap/pagefind/
|
|
299
|
+
* llms all exclude them) and kept out of nav. See plans/granularity-views.md.
|
|
300
|
+
*
|
|
301
|
+
* Per-node opt-in via the nav file's `single-page: yes | no | children`
|
|
302
|
+
* annotation (default "no"). `book: true` is the legacy all-on switch: it
|
|
303
|
+
* seeds the top-level groups as if each were `single-page: yes`, so a node's
|
|
304
|
+
* own annotation still overrides. `maxSinglePageMB` (default 3) is a safety
|
|
305
|
+
* cap — a rollup whose source exceeds it is skipped with a warning instead of
|
|
306
|
+
* building a multi-minute / multi-MB page. See plans/granularity-views.md and
|
|
307
|
+
* docs-dev/granularity-book-perf.md.
|
|
308
|
+
*/
|
|
309
|
+
granularity?: {
|
|
310
|
+
book?: boolean;
|
|
311
|
+
maxSinglePageMB?: number;
|
|
312
|
+
};
|
|
313
|
+
/**
|
|
314
|
+
* Blog mode. When set, every emitted page wears `chrome="blog"` (no
|
|
315
|
+
* sidebar), carries a byline, and takes its prev/next from DATE order
|
|
316
|
+
* rather than nav order. The reverse-chron index itself is emitted
|
|
317
|
+
* separately by `emitBlogFiles`. See plans/blog-capability.md.
|
|
318
|
+
*/
|
|
319
|
+
blog?: BlogEmitConfig;
|
|
227
320
|
/**
|
|
228
321
|
* `Content-Signal` directive for the AI training corpus permission
|
|
229
322
|
* emitted in robots.txt. Default `"no"` — opt out of training by
|
|
@@ -241,6 +334,17 @@ export interface AstroProjectOptions {
|
|
|
241
334
|
* search results emitted in robots.txt. Default `"yes"`.
|
|
242
335
|
*/
|
|
243
336
|
aiSearch?: "yes" | "no";
|
|
337
|
+
/**
|
|
338
|
+
* Emit the Article 4 reservation-of-rights preamble above the
|
|
339
|
+
* `Content-Signal` line in robots.txt. Default `false`.
|
|
340
|
+
* See `contentSignalPreamble`.
|
|
341
|
+
*/
|
|
342
|
+
contentSignalPreamble?: boolean;
|
|
343
|
+
/**
|
|
344
|
+
* Emit the non-standard `Llms-Txt:` line in robots.txt. Default
|
|
345
|
+
* `false` — see `AgentConfig.llmsTxtDirective` in `@dogsbay/cli`.
|
|
346
|
+
*/
|
|
347
|
+
llmsTxtDirective?: boolean;
|
|
244
348
|
/**
|
|
245
349
|
* Per-page LLM action UI ("Copy as markdown", "Open in Claude/
|
|
246
350
|
* ChatGPT/Perplexity/Gemini"). When omitted, the cluster is not
|
|
@@ -249,6 +353,12 @@ export interface AstroProjectOptions {
|
|
|
249
353
|
* See plans/llm-page-actions.md.
|
|
250
354
|
*/
|
|
251
355
|
llmActions?: import("@dogsbay/types").SiteConfig["llmActions"];
|
|
356
|
+
/**
|
|
357
|
+
* Resolved glyphs for the internal/external link-icon affordance.
|
|
358
|
+
* Baked into `site.json` as `linkIcons` and consumed by `DocsLayout`.
|
|
359
|
+
* Omitted when the feature is off. See plans/link-resolution-and-icons.md.
|
|
360
|
+
*/
|
|
361
|
+
linkIcons?: import("@dogsbay/types").SiteConfig["linkIcons"];
|
|
252
362
|
/**
|
|
253
363
|
* Patterns that mark slugs as fragments (no Astro route).
|
|
254
364
|
* Pages matching any pattern are written to neither
|
|
@@ -417,6 +527,8 @@ export interface SwitcherMap {
|
|
|
417
527
|
id: string;
|
|
418
528
|
label?: string;
|
|
419
529
|
eol?: boolean;
|
|
530
|
+
prerelease?: boolean;
|
|
531
|
+
hidden?: boolean;
|
|
420
532
|
default?: boolean;
|
|
421
533
|
}>;
|
|
422
534
|
/**
|
|
@@ -483,4 +595,24 @@ export declare function emitMissingTranslationStubs(pages: ExportPage[], outputD
|
|
|
483
595
|
* `emitAstroPages` (they share the page-loop's serialization step).
|
|
484
596
|
*/
|
|
485
597
|
export declare function emitAgentReadinessFiles(pages: ExportPage[], outputNav: NavItem[], outputDir: string, siteName: string, options: AstroProjectOptions): void;
|
|
598
|
+
/**
|
|
599
|
+
* Build the contents of `public/_headers` (Cloudflare Pages / Workers
|
|
600
|
+
* Static Assets convention). Emits a global RFC 8288 Link header
|
|
601
|
+
* pointing at this mount's llms.txt index, so agents don't need to
|
|
602
|
+
* parse HTML to discover the LLM-friendly content listing.
|
|
603
|
+
*
|
|
604
|
+
* The Link target is basePath-prefixed (`</docs/llms.txt>` for a
|
|
605
|
+
* `/docs` mount) — matches where the platform actually emits
|
|
606
|
+
* llms.txt under the per-mount layout.
|
|
607
|
+
*/
|
|
608
|
+
/**
|
|
609
|
+
* URL for `<link rel="icon">`, or `false` when the project ships no
|
|
610
|
+
* favicon.
|
|
611
|
+
*
|
|
612
|
+
* The scaffold deliberately ships none — authors drop their own into
|
|
613
|
+
* `public/`. Emitting the link unconditionally therefore advertised a
|
|
614
|
+
* 404 on every generated site. Checks `.ico` then `.svg`, matching the
|
|
615
|
+
* two the scaffold documents.
|
|
616
|
+
*/
|
|
617
|
+
export declare function faviconHref(outputDir: string, urlBase: string): string | false;
|
|
486
618
|
//# sourceMappingURL=project.d.ts.map
|
package/dist/project.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"project.d.ts","sourceRoot":"","sources":["../src/project.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"project.d.ts","sourceRoot":"","sources":["../src/project.ts"],"names":[],"mappings":"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"}
|