Skip to content

Commit

Permalink
add back yarn updates and group them by dev or prod dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronmgdr committed Oct 27, 2023
1 parent 43a9a32 commit d0f89f5
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,21 @@ updates:
schedule:
day: "monday"
interval: "weekly"
# To be added when a package manager decision has been taken
# - package-ecosystem: "npm" / "pnpm" # https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#package-ecosystem
- package-ecosystem: "npm" # is value for yarn
directory: "/"
schedule:
day: "monday"
interval: "weekly"
groups:
development-dependencies:
dependency-type: "development"
update-types:
- "minor"
- "patch"
production-dependencies:
dependency-type: "production"
update-types:
- "minor"
- "patch"
labels:
- "dependencies"

0 comments on commit d0f89f5

Please sign in to comment.