From 36243c7457e2283ca2a7eed307940a766a385a11 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Sat, 3 Jan 2026 23:11:43 +0000 Subject: [PATCH] Remove 'toc' from output files, this will be handled by data-ingress --- scripts/merge-yaml.js | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/merge-yaml.js b/scripts/merge-yaml.js index 827ea62..199cb9b 100644 --- a/scripts/merge-yaml.js +++ b/scripts/merge-yaml.js @@ -41,7 +41,6 @@ function sortAndMergeYAMLFiles() { seenCodes.add(item.code); outputString += ` - code: "${item.code}"\n`; outputString += ` stops: [${item.stops.map(stop => `${stop}`).join(',')}]\n`; - outputString += ` toc: "${item.toc || "gw"}"\n`; } });