Use semver range for @types/node
According to the DefinitelyTyped documentation, the patch version of the type declaration package is unrelated to the library patch version. Therefore, we should use an X-range for `@types/node` to allow newer patch versions to be installed automatically.
This commit is contained in:
6
.github/dependabot.yml
vendored
6
.github/dependabot.yml
vendored
@@ -7,6 +7,12 @@ updates:
|
||||
day: "thursday" # Thursday is arbitrary
|
||||
labels:
|
||||
- "Update dependencies"
|
||||
ignore:
|
||||
# @types/node is related to the version of VS Code we're supporting and should
|
||||
# not be updated to a newer version of Node automatically. However, patch versions
|
||||
# are unrelated to the Node version, so we allow those.
|
||||
- dependency-name: "@types/node"
|
||||
update-types: ["version-update:semver-major", "version-update:semver-minor"]
|
||||
- package-ecosystem: "github-actions"
|
||||
directory: "/"
|
||||
schedule:
|
||||
|
||||
Reference in New Issue
Block a user