From 9cf5bfbd966e2d0470250d0a85d46d5ffc25f828 Mon Sep 17 00:00:00 2001 From: manunamz Date: Sat, 4 Apr 2026 16:25:44 -0400 Subject: [PATCH] bump: deps. --- package.json | 6 +++--- src/wikibonsai/semtree.ts | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 06c5eff..fb67287 100644 --- a/package.json +++ b/package.json @@ -27,9 +27,9 @@ "fast-glob": "^3.3.1", "gray-matter": "^4.0.3", "remark-caml": "^0.0.6-rm", - "remark-wikirefs": "^0.0.7-rm", - "semtree": "^0.0.12", + "remark-wikirefs": "^0.0.8-rm", + "semtree": "^0.0.15", "unist-util-select": "^5.0.0", - "wikirefs": "^0.0.4" + "wikirefs": "^0.0.8" } } diff --git a/src/wikibonsai/semtree.ts b/src/wikibonsai/semtree.ts index 7bcd29c..02655aa 100644 --- a/src/wikibonsai/semtree.ts +++ b/src/wikibonsai/semtree.ts @@ -9,7 +9,7 @@ export async function buildBonsai(): Promise { // init vars const opts = { // if set to 'false', make sure to extract urls of index docs below - virtualTrunk: true, + virtualBranches: true, // semtree options: https://github.com/wikibonsai/semtree?tab=readme-ov-file#options }; const bonsaiText: any = {}; // { filename: content } hash @@ -34,7 +34,7 @@ export async function buildBonsai(): Promise { node.url = '/entries/' + doc.slug; } } - // uncomment if 'virtualTrunk' is set to 'false' + // uncomment if 'virtualBranches' is set to 'false' // for (const node of bonsai.nodes) { // const doc: any = allIndexDocs.find((doc) => path.basename(doc.id, '.md') == node.text); // if (doc !== undefined) { @@ -53,7 +53,7 @@ export async function buildBonsai(): Promise { + '\n---\n' + 'root: ' + bonsai.root + '\n---\n' - + 'trunk: ' + bonsai.trunk + + 'branches: ' + bonsai.branches + '\n---\n' + 'petioleMap: ' + JSON.stringify(bonsai.petioleMap) + '\n---\n'