subhadipbhowmik / 30-Days-Of-CPP

30 days of CPP programming challenge is a step by step guide to learn CPP programming language in 30 days. Happy Coding.
https://subhadipbhowmik.github.io/30-Days-Of-CPP/
MIT License
50 stars 140 forks source link

Bug: Node modules are pushed inside the backend folder #402

Open Codipk opened 2 weeks ago

Codipk commented 2 weeks ago

Description :

The node_modules of the backend directory is being pushed to the repository the backend folder. This is causing unnecessary bloat in the repository and can lead to conflicts and other issues. The .gitignore file needs to be updated to exclude the node_modules directory properly.

image

After correcting the node module path image

Steps To Reproduce

Clone the repository. Navigate to the backend directory. Notice that the node_modules directory is present and pushed to the repository.

The expected behavior

The node_modules directory should not be included in the repository. It should be listed in the .gitignore file so that it is excluded from being pushed. So the path has been corrected . image

Record I agree to follow this project's Code of Conduct * I have checked the existing issues I'm a GSSOC'24 contributor I want to work on this issue

github-actions[bot] commented 2 weeks ago

Thank you for creating this issue! We'll look into it as soon as possible. Your contributions are highly appreciated! 😊

divyansh-2005 commented 2 weeks ago

@Codipk Thanks for pointing that. @subhadipbhowmik can you please merge pr #403 from @Codipk to fix this bug.