-
Notifications
You must be signed in to change notification settings - Fork 393
Expand file tree
/
Copy pathdependabot.yml
More file actions
31 lines (29 loc) · 1007 Bytes
/
dependabot.yml
File metadata and controls
31 lines (29 loc) · 1007 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
version: 2
updates:
- package-ecosystem: "devcontainers"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "npm"
directory: "/"
groups:
all:
patterns:
- "*"
ignore:
- dependency-name: "@types/chai"
update-types: ["version-update:semver-major"] # chai 4 to avoid esm
- dependency-name: "@types/node"
update-types: ["version-update:semver-major"] # Keep Node 20 compatibility
- dependency-name: "chai"
update-types: ["version-update:semver-major"] # chai 4 to avoid esm
- dependency-name: "yargs"
update-types: ["version-update:semver-major"] # yargs 17 for esbuild CJS bundling
- dependency-name: "node-pty"
update-types: ["version-update:semver-minor"] # node-pty 1.1 has broken spawn-helper permissions (microsoft/node-pty#866)
schedule:
interval: "weekly"