Answers for "do i need to add package-lock.json to git"

2

do i need to add package-lock.json to git

Yes. 
Explanation: To run the application, the dependencies must have been installed 
before. So when you run "npm install", you need to know the version of each 
dependency, which is stored inside package-lock.json.
Posted by: Guest on June-08-2021

Code answers related to "do i need to add package-lock.json to git"

Browse Popular Code Answers by Language