@theholocron/holocron-plugin-fern 3.47.0 → 3.48.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.
- package/dist/index.d.mts +11 -0
- package/package.json +7 -7
package/dist/index.d.mts
CHANGED
|
@@ -33,6 +33,17 @@ interface FernWikiOptions {
|
|
|
33
33
|
* the GitHub org is "theholocron".
|
|
34
34
|
*/
|
|
35
35
|
fernOrg?: string;
|
|
36
|
+
/**
|
|
37
|
+
* One-line description shown on the global product switcher card.
|
|
38
|
+
* Falls back to the top-level `description` field in `holocron.config.ts`
|
|
39
|
+
* when omitted. Only used by `holocron sync --steps wiki`.
|
|
40
|
+
*/
|
|
41
|
+
subtitle?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Font Awesome icon class for the product switcher card (e.g. `"fa-duotone fa-gear"`).
|
|
44
|
+
* Only used by `holocron sync --steps wiki`.
|
|
45
|
+
*/
|
|
46
|
+
icon?: string;
|
|
36
47
|
}
|
|
37
48
|
declare class FernWiki implements Wiki {
|
|
38
49
|
private readonly opts;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theholocron/holocron-plugin-fern",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.48.0",
|
|
4
4
|
"description": "Holocron plugin for Fern. Implements the wiki capability for engineering knowledge publishing.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fern",
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"dist"
|
|
31
31
|
],
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@theholocron/eslint-config": "^7.
|
|
34
|
-
"@theholocron/tsconfig": "^7.
|
|
35
|
-
"@theholocron/tsdown-config": "^7.
|
|
36
|
-
"@theholocron/vitest-config": "^7.
|
|
33
|
+
"@theholocron/eslint-config": "^7.32.1",
|
|
34
|
+
"@theholocron/tsconfig": "^7.32.1",
|
|
35
|
+
"@theholocron/tsdown-config": "^7.32.1",
|
|
36
|
+
"@theholocron/vitest-config": "^7.32.1",
|
|
37
37
|
"@types/node": "^26",
|
|
38
38
|
"@vitest/coverage-v8": "^4.1.11",
|
|
39
39
|
"@vitest/eslint-plugin": "^1.6.27",
|
|
@@ -44,10 +44,10 @@
|
|
|
44
44
|
"tsx": "4.23.12",
|
|
45
45
|
"typescript": "^5.9.3",
|
|
46
46
|
"vitest": "^4.1.11",
|
|
47
|
-
"@theholocron/cli": "3.
|
|
47
|
+
"@theholocron/cli": "3.48.0"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"@theholocron/cli": "3.
|
|
50
|
+
"@theholocron/cli": "3.48.0"
|
|
51
51
|
},
|
|
52
52
|
"engines": {
|
|
53
53
|
"node": ">=22"
|