docmedown 0.1.5 → 0.1.6

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/cli.js CHANGED
@@ -31,7 +31,7 @@ var import_commander = require("commander");
31
31
  // package.json
32
32
  var package_default = {
33
33
  name: "docmedown",
34
- version: "0.1.5",
34
+ version: "0.1.6",
35
35
  description: "The simplest MarkDown documenter yet. CLI & Web Script React SPA documentation engine.",
36
36
  main: "./dist/docmedown.cjs",
37
37
  module: "./dist/docmedown.mjs",
@@ -77,7 +77,7 @@ var package_default = {
77
77
  "build:docs:watch": "node ./bin/docmedown.js build ./docs --watch",
78
78
  "build:offline": "node ./bin/docmedown.js build ./docs",
79
79
  "config:docs": "node ./bin/docmedown.js config ./docs/docs.json",
80
- test: "npx tsx --test tests/parser.test.ts tests/scanner.test.ts tests/theme-schema.test.ts tests/runtime-integration.test.ts tests/package-smoke.test.ts tests/hosting.test.ts tests/deploy.test.ts",
80
+ test: "npx tsx --test tests/parser.test.ts tests/scanner.test.ts tests/theme-schema.test.ts tests/runtime-integration.test.ts tests/package-smoke.test.ts tests/hosting.test.ts tests/deploy.test.ts tests/home.test.ts",
81
81
  "test:artifacts": "npx tsx --test tests/offline-artifact.test.ts",
82
82
  "test:release": "npm run typecheck && npm run lint && npm run test && npm run build && npm run build:docs && npm run test:artifacts && npm pack --dry-run",
83
83
  deploy: "node ./scripts/deploy.mjs",
@@ -247,6 +247,7 @@ var docConfigSchema = import_zod.z.object({
247
247
  description: import_zod.z.string().optional(),
248
248
  version: import_zod.z.string().optional(),
249
249
  rootDoc: nonEmptyString.optional(),
250
+ home: nonEmptyString.optional(),
250
251
  source: remoteSourceSchema.optional(),
251
252
  theme: docThemeConfigSchema.optional(),
252
253
  nav: import_zod.z.array(navLinkSchema).optional(),