Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/check_links.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,8 @@ jobs:
id: lychee
uses: lycheeverse/lychee-action@v2
with:
fail: false
# Use site/static as the root dir so lychee can resolve root-relative
# paths (e.g. /img/...) used in Docusaurus site docs. Virtual category
# pages (/docs/category/...) are excluded via .lycheeignore.
args: --root-dir site/static ./**/*.md ./**/*.dart
fail: true
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ mason-lock.json
CLAUDE.local.md

.codex/
.cursor/
.cursor/
9 changes: 9 additions & 0 deletions .lycheeignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,21 @@ https://not-pub.dev
# Partial URL used as a string template in source code
https://github.com/verygoodopensource/very_good_cli/releases/tag/v

# Changelog compare links reference tags that don't exist until the release is published
https://github.com/VeryGoodOpenSource/very_good_cli/compare/

# External sites that block automated requests
https://www.cyberciti.biz

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

# Root-relative paths in Docusaurus site docs (can't be resolved without a root dir)
# Images served from site/static — valid when deployed but not resolvable locally
^/img/
# Virtual category pages generated by Docusaurus at build time
^/docs/category/

# Dart string interpolation placeholders in source code (e.g. $packageName)
# These are not real URLs — lychee picks them up as literal link text
\$\w+
3 changes: 2 additions & 1 deletion .release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
"lib/src/version.dart"
],
"exclude-paths": [
"site"
"site",
".release-please-manifest.json"
]
},
"site": {
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
".": "1.0.0",
".": "1.1.0",
"site": "1.0.3"
}
1 change: 1 addition & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,3 +90,4 @@ Templates use Mason for code generation. Each template has a bundle, a `Template
- Dartdoc templates: `/// {@template name}...{@endtemplate}` / `/// {@macro name}`
- Commits follow [Conventional Commits](https://www.conventionalcommits.org/) (used by release-please for automated versioning)
- `lib/src/version.dart` is auto-generated — do not edit manually

167 changes: 93 additions & 74 deletions CHANGELOG.md

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion CLAUDE.md

This file was deleted.

1 change: 1 addition & 0 deletions CLAUDE.md
2 changes: 1 addition & 1 deletion lib/src/version.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: very_good_cli
description: A Very Good Command-Line Interface for Dart created by Very Good Ventures.
version: 1.0.0
version: 1.1.0
homepage: https://cli.vgv.dev/
repository: https://github.com/VeryGoodOpenSource/very_good_cli
issue_tracker: https://github.com/VeryGoodOpenSource/very_good_cli/issues
Expand Down
1 change: 1 addition & 0 deletions site/.prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ node_modules
/public/build
.env
.docusaurus
CHANGELOG.md
6 changes: 3 additions & 3 deletions site/docs/commands/mcp.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,16 +138,16 @@ Create new Dart or Flutter projects from any of the available [templates](/docs/

Run tests with optional coverage and optimization. Supports both `dart test` and `flutter test` via a `dart` parameter.

See the [test command](/docs/commands/test) for more details.
See the [test command](./test.md) for more details.

### `packages_get`

Install or update Dart/Flutter package dependencies.

See the [get packages command](/docs/commands/get_pkgs) for more details.
See the [get packages command](./get_pkgs.md) for more details.

### `packages_check_licenses`

Check packages for license compliance.

See the [check licenses command](/docs/commands/check_licenses) for more details.
See the [check licenses command](./check_licenses.md) for more details.
2 changes: 1 addition & 1 deletion site/docs/templates/docs_site.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@ very_good create docs_site .
[docs_dark]: /img/docs_dark.png
[docs_dark_overview]: /img/docs_overview_dark.png
[docusaurus_link]: https://docusaurus.io/
[home_link]: /
[home_link]: https://cli.vgv.dev
Loading