From 8302b407d1ef83224308b7ff9e68d3e6902d233d Mon Sep 17 00:00:00 2001 From: Dimitrie Hoekstra Date: Tue, 4 Aug 2026 18:56:19 +0200 Subject: [PATCH 1/2] Correct two stale comments in the docs sync --- nuxt/lib/docs-sync.mjs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nuxt/lib/docs-sync.mjs b/nuxt/lib/docs-sync.mjs index 4274151d17..e8ca1b37a4 100644 --- a/nuxt/lib/docs-sync.mjs +++ b/nuxt/lib/docs-sync.mjs @@ -15,7 +15,8 @@ const CLONE_BACKOFF_MS = 2000 // Whatever checkout sits next to the website repo wins. CI puts the flowfuse repo there, // so a build validates the docs of the caller's checkout rather than whatever main -// happens to be. The release pipeline depends on this. +// happens to be. The `Test Documentation with website` job in FlowFuse/flowfuse checks +// both repos out side by side and relies on this. const SIBLING_PATHS = ['../dev-env/packages/flowfuse', '../flowfuse', '../flowforge'] export const MANIFEST_FILE = '.source.json' From 9a1257fdadd307daf22ce7830007796f41ac9505 Mon Sep 17 00:00:00 2001 From: Dimitrie Hoekstra Date: Tue, 4 Aug 2026 18:56:20 +0200 Subject: [PATCH 2/2] Correct two stale comments in the docs sync --- scripts/sync_docs.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/sync_docs.mjs b/scripts/sync_docs.mjs index 5c91457ed8..4b808775e2 100644 --- a/scripts/sync_docs.mjs +++ b/scripts/sync_docs.mjs @@ -1,6 +1,6 @@ #!/usr/bin/env node -// Populates nuxt/content/docs outside of a Nuxt build, so CI can commit the result as a -// snapshot. Uses only node builtins: this runs before `npm install`. +// Populates nuxt/content/docs outside of a Nuxt build, so CI can resolve the docs before +// installing dependencies. Uses only node builtins: this runs before `npm install`. import { dirname, join } from 'node:path' import { fileURLToPath } from 'node:url'