Create dependabot.yml
This commit is contained in:
26
.github/dependabot.yml
vendored
Normal file
26
.github/dependabot.yml
vendored
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
version: 2
|
||||||
|
updates:
|
||||||
|
# Update runtime dependencies via PNPM
|
||||||
|
- package-ecosystem: "npm"
|
||||||
|
directory: "/"
|
||||||
|
schedule:
|
||||||
|
interval: "weekly"
|
||||||
|
package-manager: "pnpm"
|
||||||
|
# Optional: group updates by type to reduce PR noise
|
||||||
|
groups:
|
||||||
|
runtime:
|
||||||
|
patterns:
|
||||||
|
- "!@types/*"
|
||||||
|
# include all non-dev runtime packages
|
||||||
|
# Update devDependencies separately
|
||||||
|
- package-ecosystem: "npm"
|
||||||
|
directory: "/"
|
||||||
|
schedule:
|
||||||
|
interval: "monthly"
|
||||||
|
package-manager: "pnpm"
|
||||||
|
groups:
|
||||||
|
dev:
|
||||||
|
patterns:
|
||||||
|
- "@types/*"
|
||||||
|
- "eslint*"
|
||||||
|
- "typescript"
|
||||||
Reference in New Issue
Block a user