The package-lock.json file - 0 views
-
You don't commit to Git your node_modules folder, which is generally huge, and when you try to replicate the project on another machine by using the npm install command,
-
Even if a patch or minor release should not introduce breaking changes
-
The package-lock.json sets your currently installed version of each package in stone, and npm will use those exact versions when running npm ci
- ...1 more annotation...