1+ # To get started with Dependabot version updates, you'll need to specify which
2+ # package ecosystems to update and where the package manifests are located.
3+ # Please see the documentation for all configuration options:
4+ # https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+ version : 2
7+ updates :
8+ - package-ecosystem : " npm" # See documentation for possible values
9+ directory : " /" # Location of package manifests
10+ schedule :
11+ interval : " monthly"
12+ ignore :
13+ # chai is esmodule only.
14+ - dependency-name : " chai"
15+ versions : [">=5.0.0"]
16+ # sinon-chai 4.x+ supports chai 5.x+.
17+ - dependency-name : " sinon-chai"
18+ versions : [">=4.0.0"]
19+ # nyc is Node18+ only starting on [email protected] . 20+ - dependency-name : " nyc"
21+ versions : [">=16.0.0"]
22+ # we ignore TS as a part of quarterly dependency updates.
23+ - dependency-name : " typescript"
24+ # changes to the CLI change the auto generated output
25+ # we maintain the generated output explicitly, so we cannot
26+ # upgrade without also manually updating this file.
27+ - dependency-name : " @napi-rs/cli"
28+ allow :
29+ - dependency-type : " development"
30+
31+ groups :
32+ development-dependencies :
33+ dependency-type : " development"
34+ applies-to : version-updates
35+ update-types :
36+ - " minor"
37+ - " patch"
38+
39+ - package-ecosystem : " cargo" # See documentation for possible values
40+ directory : " /" # Location of package manifests
41+ schedule :
42+ interval : " monthly"
43+ allow :
44+ - dependency-type : " development"
45+
46+ groups :
47+ development-dependencies :
48+ dependency-type : " development"
49+ applies-to : version-updates
50+ update-types :
51+ - " minor"
52+ - " patch"
0 commit comments