Answers for "can you remove 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

delete package-lock.json command

rm package-lock.json
Posted by: Guest on February-11-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 "can you remove package-lock.json"

Code answers related to "Javascript"

Browse Popular Code Answers by Language