Due to a discussion in the forum I decided to remove the file. I didn't really like it because it doesn't correspond to best practice in the node ecosystem. The reason to remove it was because when you do npm install, the package-lock.json is changed and the user has problems afterwards when he wants to update the module. The packe-lock.json in the repository and the local version no longer match. As I understand it, the best way to work around this is to use npm ci instead of nmp install. I have now implemented this with this PR.
Due to a discussion in the forum I decided to remove the file. I didn't really like it because it doesn't correspond to best practice in the node ecosystem. The reason to remove it was because when you do
npm install
, thepackage-lock.json
is changed and the user has problems afterwards when he wants to update the module. Thepacke-lock.json
in the repository and the local version no longer match. As I understand it, the best way to work around this is to usenpm ci
instead ofnmp install
. I have now implemented this with this PR.