Skip to content

Commit 31e5506

Browse files
chore: 1.1.0 (#1514)
* chore: 1.1.0 * fix: make CLAUDE.md a symlink type * chore: 1.1.0 * fix: to-be-released links * fix: accessing local files * chore: 1.1.0 --------- Co-authored-by: Marcos Sevilla <marcossevilla14@gmail.com> Co-authored-by: Marcos Sevilla <me@marcossevilla.dev>
1 parent b6d282c commit 31e5506

File tree

13 files changed

+120
-85
lines changed

13 files changed

+120
-85
lines changed

.github/workflows/check_links.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,8 @@ jobs:
2424
id: lychee
2525
uses: lycheeverse/lychee-action@v2
2626
with:
27-
fail: false
27+
# Use site/static as the root dir so lychee can resolve root-relative
28+
# paths (e.g. /img/...) used in Docusaurus site docs. Virtual category
29+
# pages (/docs/category/...) are excluded via .lycheeignore.
30+
args: --root-dir site/static ./**/*.md ./**/*.dart
31+
fail: true

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ mason-lock.json
3535
CLAUDE.local.md
3636

3737
.codex/
38-
.cursor/
38+
.cursor/

.lycheeignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,21 @@ https://not-pub.dev
99
# Partial URL used as a string template in source code
1010
https://github.com/verygoodopensource/very_good_cli/releases/tag/v
1111

12+
# Changelog compare links reference tags that don't exist until the release is published
13+
https://github.com/VeryGoodOpenSource/very_good_cli/compare/
14+
1215
# External sites that block automated requests
1316
https://www.cyberciti.biz
1417

1518
# Fake file:// URIs in test fixtures (not real filesystem paths)
1619
^file://
1720

21+
# Root-relative paths in Docusaurus site docs (can't be resolved without a root dir)
22+
# Images served from site/static — valid when deployed but not resolvable locally
23+
^/img/
24+
# Virtual category pages generated by Docusaurus at build time
25+
^/docs/category/
26+
1827
# Dart string interpolation placeholders in source code (e.g. $packageName)
1928
# These are not real URLs — lychee picks them up as literal link text
2029
\$\w+

.release-please-config.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
"lib/src/version.dart"
2121
],
2222
"exclude-paths": [
23-
"site"
23+
"site",
24+
".release-please-manifest.json"
2425
]
2526
},
2627
"site": {

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
".": "1.0.0",
2+
".": "1.1.0",
33
"site": "1.0.3"
44
}

AGENTS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,3 +90,4 @@ Templates use Mason for code generation. Each template has a bundle, a `Template
9090
- Dartdoc templates: `/// {@template name}...{@endtemplate}` / `/// {@macro name}`
9191
- Commits follow [Conventional Commits](https://www.conventionalcommits.org/) (used by release-please for automated versioning)
9292
- `lib/src/version.dart` is auto-generated — do not edit manually
93+

CHANGELOG.md

Lines changed: 93 additions & 74 deletions
Large diffs are not rendered by default.

CLAUDE.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

CLAUDE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
AGENTS.md

lib/src/version.dart

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)