Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
version: 2
updates:
# Root package dependencies
# Root package dependencies.
# NOTE: listing more than one entry under `directories` makes Dependabot treat
# "/" as a recursive glob, so it scans every nested package.json. The negated
# globs below keep it out of directories that have their own update entry — the
# components and the renderer carry narrow allow/ignore lists (e.g. react-docgen
# is pinned) that the root entry would otherwise bypass. @plotly/* is internal.
- package-ecosystem: "npm"
directories:
- "/"
- "!/@plotly/*"
- "!/components/*"
- "!/dash/dash-renderer"
schedule:
interval: "weekly"
day: "monday"
Expand Down
Loading