From 1876b83c3f80a76d3db6e234f559c091c1f23231 Mon Sep 17 00:00:00 2001 From: Isaac Mann Date: Mon, 21 Oct 2024 10:05:31 -0400 Subject: [PATCH] chore(nx-dev): ignore anchors on changelog page (#28540) Do not check anchor links pointing to the changelog page --- docs/blog/2024-10-03-nx-20-release.md | 2 +- scripts/documentation/internal-link-checker.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/blog/2024-10-03-nx-20-release.md b/docs/blog/2024-10-03-nx-20-release.md index e0ce262009..1842adce00 100644 --- a/docs/blog/2024-10-03-nx-20-release.md +++ b/docs/blog/2024-10-03-nx-20-release.md @@ -76,7 +76,7 @@ This is where the concept of derived directories comes in. It will try to inspec There's a lot more in Nx 20, so be sure to check the full changelog for all the details on everything in this major release. -- [Nx 20 Changelog](/changelog) +- [Nx 20 Changelog](/changelog#20.0.0) [rspack]: https://rspack.dev [rescope]: /deprecated/rescope diff --git a/scripts/documentation/internal-link-checker.ts b/scripts/documentation/internal-link-checker.ts index 3b31f5b4f4..9e5102dece 100644 --- a/scripts/documentation/internal-link-checker.ts +++ b/scripts/documentation/internal-link-checker.ts @@ -148,6 +148,7 @@ const ignoreAnchorUrls = [ '/blog', '/pricing', '/ci/reference', + '/changelog', '/conf', ];