fix(deps): resync package-lock after the automation merge - #49
Merged
Conversation
Merging the 07-05 automation branch textually combined its older package-lock.json with main's newer one, leaving the tree internally inconsistent: `next` pins @swc/helpers 0.5.15 while the merged lock also carried a 0.5.23 requirement. npm 11 (local) tolerated it, but the image builds on node:20-alpine where `npm ci` rejected it — "Missing: @swc/helpers@0.5.23 from lock file" — so the Cloud Build failed. Rebuilt the lock from main's pre-merge baseline plus the one genuinely new dependency (resend), keeping the delta minimal. Verified with a clean-room `npm ci` (not just `npm install`, which masks this class of drift). 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.
The automation merge left package-lock.json internally inconsistent, breaking
npm cion node:20-alpine (Cloud Build). Rebuilt from main's pre-merge baseline + resend only. Verified with a clean-roomnpm ci. 🤖 Generated with Claude Code