-
-
Notifications
You must be signed in to change notification settings - Fork 39
refactor(docs): slim contributors config, rely on theme defaults #463
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -86,43 +86,7 @@ export default defineConfig({ | |
| patterns: ['help/**/*.md', 'troubleshooting/**/*.md'], | ||
| }, | ||
| }, | ||
| contributors: { | ||
| merge: 'name', | ||
| debotify: true, | ||
| include: [ | ||
| { | ||
| name: 'Mike Pirog', | ||
| email: 'mike@lando.dev', | ||
| title: 'Co-founder', | ||
| org: 'lando.dev', | ||
| orgLink: 'https://lando.dev', | ||
| desc: 'SLAVE4U', | ||
| links: [ | ||
| {icon: 'github', link: 'https://github.com/pirog'}, | ||
| {icon: 'x', link: 'https://x.com/pirogcommamike'}, | ||
| ], | ||
| sponsor: 'https://lando.dev/sponsor', | ||
| maintainer: true, | ||
| mergeOnly: true, | ||
| }, | ||
| { | ||
| avatar: 'https://avatars.githubusercontent.com/u/1153738', | ||
| name: 'Alec Reynolds', | ||
| email: 'alec+git@thinktandem.io', | ||
| title: 'Co-founder', | ||
| org: 'lando.dev', | ||
| orgLink: 'https://lando.dev', | ||
| desc: 'A chill dude', | ||
| links: [ | ||
| {icon: 'github', link: 'https://github.com/reynoldsalec'}, | ||
| {icon: 'x', link: 'https://x.com/reynoldsalec'}, | ||
| ], | ||
| sponsor: 'https://lando.dev/sponsor', | ||
| maintainer: true, | ||
| mergeOnly: true, | ||
| }, | ||
| ], | ||
| }, | ||
|
|
||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Contributors override block entirely removed instead of slimmedHigh Severity The Reviewed by Cursor Bugbot for commit e0ec822. Configure here. |
||
| sidebar: { | ||
| '/cli': cliBar(), | ||
| '/config': configBar(), | ||
|
|
||


There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Theme dependency not bumped to required version
High Severity
The
contributorsblock now relies on landov3 defaults from@lando/vitepress-theme-default-plus≥ v1.2.0 (as stated in the PR description), butpackage.jsonstill specifies"^1.1.5"and the lockfile pins1.1.5. A freshnpm installresolves to v1.1.5 which lacks the default contributor entries for Mike Pirog, Alec Reynolds, and Aaron Feledy — breaking the/teampage rendering. The dependency version needs to be bumped alongside this config change.Reviewed by Cursor Bugbot for commit 9b2fc07. Configure here.