You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(scripts): scan the fumadocs-mdx docs content for stale @loopover/mcp versions
check-ui-mcp-version-copy.mjs guards UI copy against stale @loopover/mcp
version strings, but its SCAN_TARGETS only reached apps/loopover-ui/src and
isTextSource didn't match .mdx. Since the fumadocs-mdx migration (5003fab) the
docs prose moved to apps/loopover-ui/content/docs/*.mdx — a sibling of src/ —
leaving ~10 files with @loopover/mcp install snippets unscanned (the sibling
check-docs-drift.mjs was updated for the move; this scanner was not).
Add apps/loopover-ui/content to SCAN_TARGETS and .mdx to isTextSource so the
content pipeline is scanned the same way src/ and the READMEs already are. The
current docs use the correct @latest form, so the live scan still passes (now
across 4 targets); a future hardcoded/stale version in any .mdx is now caught.
Closes#7093
0 commit comments