Cleanup/package json and dependabot - #608
Merged
Merged
Conversation
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
MaddyMicrosoft
marked this pull request as ready for review
August 13, 2026 06:09
xuming-ms
approved these changes
Aug 17, 2026
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.
Will fix #594
Changes
Remove the accidental
package-lockdependency.package.jsonlisted a package literally namedpackage-lock(^1.0.3), which is unrelated to the realpackage-lock.jsonlockfile. It pulledlodash,commander,asyncc, andtraverseinto the dependency tree for no reason. Removing it drops all four transitive packages, shrinking the install and the supply-chain surface.Remove the unused
versionfield from package.json. The field was never kept in sync with the released version (releases are driven by git tags, not npm), so it was misleading. Dropping it removes a stale source of truth.Add
.github/dependabot.yml. Enables monthly Dependabot updates for two ecosystems:npm(dev-dependencies grouped into a single PR)github-actions(all action bumps grouped into a single PR)Both capped at 5 open PRs. This keeps
@actions/*packages and workflow action pins current without manual tracking, and surfaces security bumps automatically.Notes
package-lockpackage and its transitives were never imported by the action code.