From 1852281b10eed28dc43a75c95794fe057ffc2cec Mon Sep 17 00:00:00 2001 From: yacosta738 <33158051+yacosta738@users.noreply.github.com> Date: Fri, 10 Apr 2026 10:03:54 +0000 Subject: [PATCH 1/4] docs: fix broken links and lychee resolution errors - Update lychee.toml to use unanchored regex patterns for internal CSS imports and Tailwind directives to correctly handle local file URI resolution. - Add @fontsource to Lychee exclusions to ignore font package references in CSS. - Correct the version comparison link in CHANGELOG.md from v1.0.0...v2.0.0 to v0.5.0...v2.0.0 as v1.0.0 does not exist. --- CHANGELOG.md | 2 +- lychee.toml | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a31713cb5..102123b7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,7 +20,7 @@ * **dashboard:** align cost governance tests and locale keys ([3500dc7](https://github.com/dallay/corvus/commit/3500dc76f2318e6f15aa1d99db0ad9f041d4d606)) * **dashboard:** satisfy cerebro web push checks ([6db38c3](https://github.com/dallay/corvus/commit/6db38c390cc81ec3b1d3526fe47027175b5e1a66)) -## [2.0.0](https://github.com/dallay/corvus/compare/v1.0.0...v2.0.0) (2026-04-09) +## [2.0.0](https://github.com/dallay/corvus/compare/v0.5.0...v2.0.0) (2026-04-09) ### ⚠ BREAKING CHANGES diff --git a/lychee.toml b/lychee.toml index 530b2953f..d632cab13 100644 --- a/lychee.toml +++ b/lychee.toml @@ -42,8 +42,9 @@ exclude = [ # Root-relative diagram assets served from /public '^/guides/architecture/diagrams/.*', # Internal CSS imports and Tailwind directives - '^@corvus/shared/.*', - '^tailwindcss$', + '.*@corvus/shared/.*', + '.*tailwindcss.*', + '.*@fontsource.*', ] # Exclude entire files or directories From e13a2187c5274ff234c391d1ed7bb251fd5dd9f2 Mon Sep 17 00:00:00 2001 From: "coderabbitai[bot]" <136622811+coderabbitai[bot]@users.noreply.github.com> Date: Fri, 10 Apr 2026 10:36:59 +0000 Subject: [PATCH 2/4] fix: apply CodeRabbit auto-fixes Fixed 1 file(s) based on 1 unresolved review comment. Co-authored-by: CodeRabbit --- lychee.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lychee.toml b/lychee.toml index d632cab13..4762aa671 100644 --- a/lychee.toml +++ b/lychee.toml @@ -42,9 +42,9 @@ exclude = [ # Root-relative diagram assets served from /public '^/guides/architecture/diagrams/.*', # Internal CSS imports and Tailwind directives - '.*@corvus/shared/.*', - '.*tailwindcss.*', - '.*@fontsource.*', + '^@corvus/shared/', + '^tailwindcss(/|$)', + '^@fontsource/', ] # Exclude entire files or directories From f97134378c95a6ae9d33769f077f822c4c44824d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yuniel=20Acosta=20P=C3=A9rez?= <33158051+yacosta738@users.noreply.github.com> Date: Fri, 10 Apr 2026 13:36:17 +0200 Subject: [PATCH 3/4] Update lychee.toml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Signed-off-by: Yuniel Acosta Pérez <33158051+yacosta738@users.noreply.github.com> --- lychee.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lychee.toml b/lychee.toml index 4762aa671..a3ba03e63 100644 --- a/lychee.toml +++ b/lychee.toml @@ -44,7 +44,9 @@ exclude = [ # Internal CSS imports and Tailwind directives '^@corvus/shared/', '^tailwindcss(/|$)', - '^@fontsource/', + '^@corvus/shared/', + '^tailwindcss(/|$)', + '^@fontsource(?:-variable)?/', ] # Exclude entire files or directories From da135ada96f57feef415d577f3c835d2212cc758 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yuniel=20Acosta=20P=C3=A9rez?= <33158051+yacosta738@users.noreply.github.com> Date: Fri, 10 Apr 2026 13:43:49 +0200 Subject: [PATCH 4/4] Update lychee.toml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Signed-off-by: Yuniel Acosta Pérez <33158051+yacosta738@users.noreply.github.com> --- lychee.toml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lychee.toml b/lychee.toml index a3ba03e63..bc1cdd556 100644 --- a/lychee.toml +++ b/lychee.toml @@ -42,10 +42,8 @@ exclude = [ # Root-relative diagram assets served from /public '^/guides/architecture/diagrams/.*', # Internal CSS imports and Tailwind directives - '^@corvus/shared/', - '^tailwindcss(/|$)', - '^@corvus/shared/', - '^tailwindcss(/|$)', + '^@corvus/shared(?:/|$)', + '^tailwindcss(?:/|$)', '^@fontsource(?:-variable)?/', ]