Skip to content

Commit

Permalink
Specify details on which versions dependencies are allowed to be upda…
Browse files Browse the repository at this point in the history
…ted to (#42)
  • Loading branch information
xuhdev committed Jun 24, 2024
1 parent a4e2e1f commit 12d6a17
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@
[GitHub](https://github.com/8hobbies/typedoc-plugin-extra-footer) | [GitLab](https://gitlab.com/8hobbies/typedoc-plugin-extra-footer)

_Since TypeDoc v0.26.0, it is advisable to use the builtin [customFooterHtml][] and
[customFooterHtmlDisableWrapper][] options instead. Also check out
[customFooterHtmlDisableWrapper][] options instead. Therefore, this plugin will not support TypeDoc
0.26.0+. Also check out
[this page](https://forum.8hob.io/t/how-do-i-add-a-copyright-footer-to-a-typedoc-generated-doc/35)
if you intend to add a copyright footer._
if you need help adding a copyright footer._

This plugin adds extra content to the footer to HTML files generated by [TypeDoc][]. This is
typically suitable for content such as [information about the author of the section, copyright data
Expand Down
15 changes: 14 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,18 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["gitlab>8hobbies/renovate-config#v3"],
"schedule": ["on Monday"],
"ignoreDeps": ["typescript", "typedoc"]
"packageRules": [
{
"matchPackageNames": ["@8hobbies/typedoc-plugin-404"],
"allowedVersions": "<3.0.0"
},
{
"matchPackageNames": ["typescript"],
"allowedVersions": "<5.5.0"
},
{
"matchPackageNames": ["typedoc"],
"allowedVersions": "<0.26.0"
}
]
}

0 comments on commit 12d6a17

Please sign in to comment.