Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
83 changes: 83 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,100 @@

version: 2
updates:
- package-ecosystem: "github-actions" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"

- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "daily"
open-pull-requests-limit: 5
groups:
nevware21:
patterns:
- "@nevware21/*"
types:
patterns:
- "@types/*"
grunt:
patterns:
- "grunt*"
puppeteer:
patterns:
- "puppeteer"
rollup:
patterns:
- "rollup*"
- "@rollup/*"
typescript:
patterns:
- "typescript*"
- "typedoc"
- "karma-typescript"
- "nyc"
- "@istanbuljs/nyc-config-typescript"
- "*mocha*"

- package-ecosystem: "npm" # See documentation for possible values
directory: "/dbg" # Location of package manifests
schedule:
interval: "daily"
open-pull-requests-limit: 5
groups:
nevware21:
patterns:
- "@nevware21/*"
types:
patterns:
- "@types/*"
grunt:
patterns:
- "grunt*"
puppeteer:
patterns:
- "puppeteer"
rollup:
patterns:
- "rollup*"
- "@rollup/*"
typescript:
patterns:
- "typescript*"
- "typedoc"
- "karma-typescript"
- "nyc"
- "@istanbuljs/nyc-config-typescript"
- "*mocha*"

- package-ecosystem: "npm" # See documentation for possible values
directory: "/providers" # Location of package manifests
schedule:
interval: "daily"
open-pull-requests-limit: 5
groups:
nevware21:
patterns:
- "@nevware21/*"
types:
patterns:
- "@types/*"
grunt:
patterns:
- "grunt*"
puppeteer:
patterns:
- "puppeteer"
rollup:
patterns:
- "rollup*"
- "@rollup/*"
typescript:
patterns:
- "typescript*"
- "typedoc"
- "karma-typescript"
- "nyc"
- "@istanbuljs/nyc-config-typescript"
- "*mocha*"
Comment on lines +18 to +104
Copy link

Copilot AI Dec 25, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The same groups configuration is duplicated across all three npm package ecosystems (root "/", "/dbg", and "/providers" directories). This creates a maintainability issue as any future changes to the grouping logic would need to be updated in three places.

Consider using YAML anchors and aliases to define the groups configuration once and reuse it across all npm ecosystems. This would reduce duplication and make the configuration easier to maintain.

Copilot uses AI. Check for mistakes.
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot open a new pull request to apply changes based on this feedback