fix(ci): sync package-lock.json with the deps added in #17 - #19
Merged
Conversation
#17 added @modelcontextprotocol/sdk and zod to package.json but installed them with --no-save, so the lockfile never learned about them. ci.yml runs `npm ci`, which refuses to install when the manifest and lockfile disagree — so CI has been red on main since that merge. It was green immediately before it. No dependency choices change here; the lockfile is regenerated with `npm install --package-lock-only`. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
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.
CI has been red on
mainsince #17 merged. It was green immediately before it — this is my regression, not a pre-existing one.#17 added those two dependencies to
package.jsonbut installed them with--no-save, sopackage-lock.jsonnever learned about them.ci.ymlrunsnpm ci, which refuses to install when the manifest and lockfile disagree.No dependency choices change here — the lockfile is regenerated with
npm install --package-lock-only, andnpm ci --dry-runnow resolves cleanly.This PR's own CI run is the verification.
🤖 Generated with Claude Code