Answers for "unable to ignore package-lock.json"

7

how to generate package-lock.json from package.json

Have you deleted package-lock.json file? don't worry 
Run below command to generate package-lock.json file in your folder.

npm i --package-lock-only
Posted by: Guest on April-28-2021
1

remove package-lock.json from commit

# add it to the .gitignore and remove the file using the command as follow:
git rm --cached package-lock.json
Posted by: Guest on March-19-2021

Code answers related to "unable to ignore package-lock.json"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language