Remove node_modules from git tracking#17
Open
amanjagdev wants to merge 1 commit into
Open
Conversation
node_modules/ was committed to the repository, bloating the repo and making dependency updates show up as noisy diffs. The .gitignore added in the prior fix already excludes this directory — this commit removes the tracked files so the ignore rule takes effect. Also includes the updated package-lock.json reflecting the dependency fixes from the prior commit.
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
Fixes #16
node_modules/directory from git tracking (~148K lines, 2200+ files deleted from the repo).package-lock.jsonto reflect the corrected dependencies from Fix broken bodyParser usage, add missing deps and .gitignore #15.The
.gitignoreadded in #15 already excludesnode_modules/, so once this lands they won't be re-added.Impact
This is a large deletion-only diff. No source code is changed — only vendored dependencies are removed from tracking. After merging, contributors just need to run
npm installas usual.Test plan
cd Easebuzz_NodeJS_kit && npm install && node main.jsnode_modules/is not tracked by git afternpm install