-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added maintainer key to contributors
- Loading branch information
Showing
12 changed files
with
272 additions
and
189 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
## v1.0.0 - [April 4, 2024](https://github.com/lando/vitepress-theme-default-plus/releases/tag/v1.0.0) | ||
|
||
## New Features | ||
|
||
* Added `maintainer` key to `contributors` | ||
* Updated to `[email protected]` | ||
|
||
## v1.0.0-beta.42 - [April 2, 2024](https://github.com/lando/vitepress-theme-default-plus/releases/tag/v1.0.0-beta.42) | ||
|
||
## New Features | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,12 +68,7 @@ export default defineConfig({ | |
{icon: 'x', link: 'https://x.com/pirogcommamike'}, | ||
], | ||
sponsor: 'https://lando.dev/sponsor', | ||
mergeOnly: true, | ||
}, | ||
{ | ||
name: 'John Ouelett', | ||
email: '[email protected]', | ||
title: 'Robot From Future', | ||
maintainer: true, | ||
mergeOnly: true, | ||
}, | ||
{ | ||
|
@@ -89,6 +84,7 @@ export default defineConfig({ | |
{icon: 'x', link: 'https://x.com/reynoldsalec'}, | ||
], | ||
sponsor: 'https://lando.dev/sponsor', | ||
maintainer: true, | ||
mergeOnly: true, | ||
}, | ||
{ | ||
|
@@ -102,6 +98,12 @@ export default defineConfig({ | |
mergeOnly: true, | ||
mergeWith: '[email protected]', | ||
}, | ||
{ | ||
name: 'John Ouelett', | ||
email: '[email protected]', | ||
title: 'Robot From Future', | ||
mergeOnly: true, | ||
}, | ||
], | ||
}, | ||
editLink: {pattern: 'https://github.com/lando/vitepress-theme-default-plus/edit/main/docs/:path'}, | ||
|
@@ -219,11 +221,11 @@ export default defineConfig({ | |
{text: 'GitHub', link: 'https://github.com/lando/vitepress-theme-default-plus/issues/new/choose'}, | ||
{text: 'Slack', link: 'https://www.launchpass.com/devwithlando'}, | ||
{text: 'Contact Us', link: '/support'}, | ||
{text: 'Guides', link: '/guides'}, | ||
], | ||
}, | ||
{text: 'Configuration', link: '/config/config'}, | ||
{text: 'Blog', link: '/blog'}, | ||
{text: 'Guides', link: '/guides'}, | ||
], | ||
}, | ||
sidebarEnder: { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -197,6 +197,7 @@ Once you have you should be able to use all the things below. | |
commits: 9999, | ||
email: '[email protected]', | ||
title: 'Maintainer', | ||
maintainer: true, | ||
mergeOnly: true, | ||
mergeWith: '[email protected]', | ||
org: 'Lando', | ||
|
@@ -222,6 +223,8 @@ Once you have you should be able to use all the things below. | |
|
||
If you `debotify` it will remove any author that contains `[bot]` in their name or email. | ||
|
||
You can `maintainer: true` to indicate a `contributor` is also a maintainer. This will bump the contributor to the top of the contributors list and have a different style. | ||
|
||
You can `exclude` with contributors by matching _both_ their `name` and `email` using either a `string` or `object`. | ||
|
||
You can use `include` to either _add_ new contributors or _augment_ existing ones. If you want to add additional data to a contributor pulled from the `git log` you will need to specify an `email` for it to match against. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.