One thing why I'm not a big fan of NPM is the fact that it declares versions quite precisely when using npm install {package}.
As npm has no proper deps locking, this is the only way to ensure that everyone uses the same version and no conflicts occur.
It should be figured out whether we could generalize the constraints in order to avoid stupid time-wasting work when attempting to update single dependencies.
Issue description
One thing why I'm not a big fan of NPM is the fact that it declares versions quite precisely when using
npm install {package}
. Asnpm
has no proper deps locking, this is the only way to ensure that everyone uses the same version and no conflicts occur. It should be figured out whether we could generalize the constraints in order to avoid stupid time-wasting work when attempting to update single dependencies.Steps to reproduce
none.