File tree Expand file tree Collapse file tree 1 file changed +29
-2
lines changed Expand file tree Collapse file tree 1 file changed +29
-2
lines changed Original file line number Diff line number Diff line change 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+
16version : 2
27updates :
3- - package-ecosystem : " github-actions "
4- directory : " /"
8+ - package-ecosystem : " npm " # See documentation for possible values
9+ directory : " /" # Location of package manifests
510 schedule :
611 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+ # chalk is esmodule only.
20+ - dependency-name : " chalk"
21+ versions : [">=5.0.0"]
22+ # nyc is Node18+ only starting on [email protected] . 23+ - dependency-name : " nyc"
24+ versions : [">=16.0.0"]
25+ # we ignore TS as a part of quarterly dependency updates.
26+ - dependency-name : " typescript"
27+ groups :
28+ development-dependencies :
29+ dependency-type : " development"
30+ applies-to : version-updates
31+ update-types :
32+ - " minor"
33+ - " patch"
You can’t perform that action at this time.
0 commit comments