Restore package-lock.json accidentally removed in #189#190
Merged
aravind1801-p merged 1 commit intomainfrom Apr 14, 2026
Merged
Restore package-lock.json accidentally removed in #189#190aravind1801-p merged 1 commit intomainfrom
aravind1801-p merged 1 commit intomainfrom
Conversation
akshayp2395
approved these changes
Apr 14, 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.
Summary
The
package-lock.jsonfile was accidentally deleted in PR #189 (commit3e5cc26), causing all CI workflows that depend onnpm cito fail.This PR restores the file from the commit immediately prior (
b4838e8) to unblock the CI pipeline.What happened
package-lock.json(16,806 lines removed)npm cicommand used in bothstatic.yml(Deploy to GitHub Pages) andmerge.yml(Publish article) workflows requirespackage-lock.jsonto be presentmainafter the merge have been failing in CIFix
Restored
package-lock.jsonfrom commitb4838e8(the last commit onmainbefore the deletion).No other files are modified — this is a single-file restore.
Local verification
npm cinpm run build:utilsnpm run posts:updatenpm run build -- --configuration=production --base-href=/npm startAffected workflows
static.yml— Deploy static content to GitHub Pages (runsnpm cion push tomain)merge.yml— Publish article (runsnpm cion push tomain)Checklist:
assets/images/post/).bundle install && bundle exec jekyll serve.