-
Notifications
You must be signed in to change notification settings - Fork 68
fix: add Dependabot coverage for webapp/backend and webapp/frontend #102
Copy link
Copy link
Open
Labels
bugSomething isn't workingSomething isn't working
Description
The dependabot.yml config monitors / and /vscode-extension for npm updates, but webapp/backend and webapp/frontend are not covered. Their package-lock.json files will not receive automated vulnerability PRs.
Fix
Add to .github/dependabot.yml:
- package-ecosystem: npm
directory: /webapp/backend
schedule:
interval: weekly
open-pull-requests-limit: 5
groups:
dev-dependencies:
dependency-type: development
production-dependencies:
dependency-type: production
- package-ecosystem: npm
directory: /webapp/frontend
schedule:
interval: weekly
open-pull-requests-limit: 5
groups:
dev-dependencies:
dependency-type: developmentContext
Introduced by PR #90 (webapp). The webapp ships Express, Helmet, and other production dependencies that need vulnerability monitoring.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working