Skip to content

Commit 1202831

Browse files
oschwaldclaude
andcommitted
Update mise tools
Ran `mise up` to refresh the pinned hugo and lychee versions in mise.lock (hugo 0.161.1 -> 0.164.0, lychee 0.23.0 -> 0.24.2). Lychee 0.24 replaced the boolean `include_fragments` config option with a `none|anchor-only|text-only|full` enum, so lychee.toml no longer parsed. Migrated `include_fragments = true` to `include_fragments = "full"`, which checks both anchor fragments (e.g. `#section`) and text fragments (e.g. `#:~:text=example`). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 47c2e2a commit 1202831

2 files changed

Lines changed: 50 additions & 30 deletions

File tree

lychee.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@
44
# Run locally with:
55
# lychee './**/*.md' './src/**/*.php' './composer.json'
66

7-
# Include URL fragments in checks
8-
include_fragments = true
7+
# Include URL fragments in checks. Lychee 0.24 replaced the old boolean
8+
# with a `none|anchor-only|text-only|full` enum; `full` checks both anchor
9+
# fragments (e.g. `#section`) and text fragments (e.g. `#:~:text=example`).
10+
include_fragments = "full"
911

1012
# Don't allow any redirects, so links that have moved are surfaced and updated
1113
# to their canonical destination.

mise.lock

Lines changed: 46 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)