dogsbay 0.2.0-beta.55 → 0.2.0-beta.56

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.
@@ -196,6 +196,14 @@ export async function siteBuild(cwd, options) {
196
196
  console.log(` Preprocessor: ${changes.join(", ")} → ${mirrorRoot}`);
197
197
  }
198
198
  }
199
+ // --no-astro: stop after the preprocessor. The resolved-Minja mirror under
200
+ // <siteRoot>/.dogsbay/build-content/ IS the artifact ("preprocessed
201
+ // markdown"); skip content import + Astro emission. Powers the Docker
202
+ // `preprocess` stage and serves as a debug aid.
203
+ if (options.astro === false) {
204
+ console.log(" --no-astro: stopped after preprocess (resolved MD in .dogsbay/build-content/)");
205
+ return;
206
+ }
199
207
  // 7. Import content
200
208
  //
201
209
  // Reads from `importPaths` — either the source paths (no-preprocess)
package/dist/index.js CHANGED
@@ -130,6 +130,9 @@ site
130
130
  .option("--no-preprocess", "Skip the build-time Minja preprocessor pass even when " +
131
131
  "`attributes:` are declared. Debug aid — shows the raw " +
132
132
  "`{{ var }}` directives the importer left unresolved.")
133
+ .option("--no-astro", "Stop after the Minja preprocessor — write the resolved-Markdown " +
134
+ "mirror to .dogsbay/build-content/ but skip content import + Astro " +
135
+ "page emission. The mirror is the 'preprocessed markdown' artifact.")
133
136
  .action((dir, options) => siteBuild(dir, options));
134
137
  site
135
138
  .command("dev")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dogsbay",
3
- "version": "0.2.0-beta.55",
3
+ "version": "0.2.0-beta.56",
4
4
  "description": "CLI for Dogsbay — scaffold, build, and serve documentation sites with markdown / MkDocs / Obsidian / OpenAPI sources",
5
5
  "type": "module",
6
6
  "bin": {
@@ -33,18 +33,18 @@
33
33
  "picocolors": "^1.1.0",
34
34
  "prompts": "^2.4.2",
35
35
  "yaml": "^2.8.3",
36
- "@dogsbay/autodoc-python": "0.2.0-beta.55",
37
- "@dogsbay/format-obsidian": "0.2.0-beta.55",
38
- "@dogsbay/format-mkdocs": "0.2.0-beta.55",
39
- "@dogsbay/format-mdx": "0.2.0-beta.55",
40
- "@dogsbay/format-astro": "0.2.0-beta.55",
41
- "@dogsbay/format-starlight": "0.2.0-beta.55",
42
- "@dogsbay/format-dogsbay-md": "0.2.0-beta.55",
43
- "@dogsbay/format-openapi": "0.2.0-beta.55",
44
- "@dogsbay/adoc2md-modular": "0.2.0-beta.55",
45
- "@dogsbay/format-asciidoc": "0.2.0-beta.55",
46
- "@dogsbay/minja": "0.2.0-beta.55",
47
- "@dogsbay/types": "0.2.0-beta.55"
36
+ "@dogsbay/autodoc-python": "0.2.0-beta.56",
37
+ "@dogsbay/format-mkdocs": "0.2.0-beta.56",
38
+ "@dogsbay/format-astro": "0.2.0-beta.56",
39
+ "@dogsbay/format-mdx": "0.2.0-beta.56",
40
+ "@dogsbay/format-dogsbay-md": "0.2.0-beta.56",
41
+ "@dogsbay/format-obsidian": "0.2.0-beta.56",
42
+ "@dogsbay/format-starlight": "0.2.0-beta.56",
43
+ "@dogsbay/format-openapi": "0.2.0-beta.56",
44
+ "@dogsbay/adoc2md-modular": "0.2.0-beta.56",
45
+ "@dogsbay/format-asciidoc": "0.2.0-beta.56",
46
+ "@dogsbay/minja": "0.2.0-beta.56",
47
+ "@dogsbay/types": "0.2.0-beta.56"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@types/markdown-it": "^14.1.0",