diff --git a/src/docs.mts b/src/docs.mts index 2baa87f01..877f7a022 100644 --- a/src/docs.mts +++ b/src/docs.mts @@ -207,8 +207,9 @@ const transformHtml = (filename: string) => { const otherFiles = await globby([sourceDirGlob, '!**/*.md', '!**/*.html'], { dot: includeFilesStartingWithDot, }); - otherFiles.forEach((file) => { - copyTransformedContents(file); + otherFiles.forEach((file: string) => { + const transformedContents = readSyncedUTF8file(file); // no transformation is done; just get the contents + copyTransformedContents(file, transformedContents, !verifyOnly); }); if (filesWereTransformed) {