@theholocron/holocron-plugin-fern 3.45.5 → 3.46.0

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.
Files changed (2) hide show
  1. package/dist/index.mjs +1 -1
  2. package/package.json +5 -5
package/dist/index.mjs CHANGED
@@ -101,7 +101,7 @@ async function writeFernDocsYml({ repoRoot, fernOrg, repo, name, domain }) {
101
101
  ];
102
102
  if (customDomain) lines.push(` custom-domain: ${customDomain}`);
103
103
  if (multiSource) lines.push(` multi-source: true`);
104
- lines.push(``, `title: ${name ?? resolvedFernOrg} Engineering`, ``, `layout:`, ` page-width: full`, ` tabs-placement: header`, ` searchbar-placement: header`, ``, `tabs:`, ` decisions:`, ` display-name: Decisions`, ` icon: fa-duotone fa-scale-balanced`, ` engineering:`, ` display-name: Engineering`, ` icon: fa-duotone fa-gear`, ``, `navigation:`, ` - tab: decisions`, ` layout:`, ` - section: Architecture Decision Records`, ` contents:`, ` - page: Index`, ` path: ../docs/decisions/README.md`, ` - tab: engineering`, ` layout:`, ` - section: Overview`, ` contents:`, ` - page: Engineering Home`, ` path: ../docs/engineering/README.md`, ``, `colors:`, ` accent-primary:`, ` dark: "#70E155"`, ` light: "#008700"`, ``, `logo:`, ` height: 20`, ``, `metadata:`, ` og:dynamic: true`, ``);
104
+ lines.push(``, `title: ${name ?? resolvedFernOrg} Engineering`, ``, `layout:`, ` page-width: full`, ` tabs-placement: header`, ` searchbar-placement: header`, ``, `tabs:`, ` decisions:`, ` display-name: Decisions`, ` icon: fa-duotone fa-scale-balanced`, ` standards:`, ` display-name: Standards`, ` icon: fa-duotone fa-book`, ` specifications:`, ` display-name: Specifications`, ` icon: fa-duotone fa-file-lines`, ``, `navigation:`, ` - tab: decisions`, ` layout:`, ` - section: Architecture Decision Records`, ` contents:`, ` - page: Index`, ` path: ../docs/wiki/decisions/README.md`, ` - tab: standards`, ` layout:`, ` - section: Standards`, ` contents:`, ` - page: Overview`, ` path: ../docs/wiki/standards/README.md`, ` - tab: specifications`, ` layout:`, ` - section: Specifications`, ` contents:`, ` - page: Overview`, ` path: ../docs/wiki/specifications/README.md`, ``, `colors:`, ` accent-primary:`, ` dark: "#70E155"`, ` light: "#008700"`, ``, `logo:`, ` height: 20`, ``, `metadata:`, ` og:dynamic: true`, ``);
105
105
  await writeFile(docsPath, lines.join("\n"), "utf8");
106
106
  const domainSummary = customDomain ? `, domain=${customDomain}${multiSource ? " (multi-source)" : ""}` : "";
107
107
  return `docs.yml: url=${instanceUrl}${domainSummary}`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theholocron/holocron-plugin-fern",
3
- "version": "3.45.5",
3
+ "version": "3.46.0",
4
4
  "description": "Holocron plugin for Fern. Implements the wiki capability for engineering knowledge publishing.",
5
5
  "keywords": [
6
6
  "fern",
@@ -35,7 +35,7 @@
35
35
  "@theholocron/tsdown-config": "^7.29.0",
36
36
  "@theholocron/vitest-config": "^7.29.0",
37
37
  "@types/node": "^26",
38
- "@vitest/coverage-v8": "^4.1.10",
38
+ "@vitest/coverage-v8": "^4.1.11",
39
39
  "@vitest/eslint-plugin": "^1.6.27",
40
40
  "eslint": "^10.8.1",
41
41
  "eslint-plugin-n": "^18.3.0",
@@ -43,11 +43,11 @@
43
43
  "tsdown": "^0.22.14",
44
44
  "tsx": "4.23.12",
45
45
  "typescript": "^5.9.3",
46
- "vitest": "^4.1.10",
47
- "@theholocron/cli": "3.45.5"
46
+ "vitest": "^4.1.11",
47
+ "@theholocron/cli": "3.46.0"
48
48
  },
49
49
  "peerDependencies": {
50
- "@theholocron/cli": "3.45.5"
50
+ "@theholocron/cli": "3.46.0"
51
51
  },
52
52
  "engines": {
53
53
  "node": ">=22"