Add Dependabot config for npm dependencies#23
Merged
Conversation
Repo now carries dev dependencies (vitest, jsdom, eslint, stylelint, html-validate) with no Dependabot coverage. Adds the estate-standard weekly, grouped config for github-actions, root npm, and the two tooling npm directories (.github/accessibility-tools, .github/lint-tools). No composer block: this repo has no PHP/composer manifest.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This repo now carries a
package.jsonwith dev dependencies (vitest,jsdom, eslint, stylelint, html-validate) after its recent bring-up,
but had no
.github/dependabot.yml. Adds one mirroring the estatepattern from the AgentTeam template.
Changes
.github/dependabot.yml(new): weekly, grouped updates for:github-actions(root)npm(root — the dev dependencies listed above)npm(.github/accessibility-tools— has its own package.json)npm(.github/lint-tools— has its own package.json)No
composerblock: this repo has no PHP/composer manifest anywherein the tree, so that ecosystem was omitted rather than left in to
warn about a missing manifest.
Verification
python3 -c "import yaml; yaml.safe_load(...)").package.json: root,.github/accessibility-tools/,.github/lint-tools/.composer.jsonexists anywhere in the repo (root or.github/), so the composer ecosystem block was correctly left out.No test suite update needed — this is a Dependabot configuration file,
not application code; there is no test to update.