covid19india / covid19india-react

Tracking the impact of COVID-19 in India
https://www.covid19india.org
MIT License
6.86k stars 3.41k forks source link

Make the node packages to be upgraded by itself #2431

Closed ProdeveloperProgrammer closed 3 years ago

ProdeveloperProgrammer commented 3 years ago

I have make the node packages to be get upgraded by itself!

ravi-maithrey commented 3 years ago

I don't think this works the way you think it does. If you use ">" there are many chances to develop weird edge cases. At least use ">=" Also sometime in the future, the project might go in a direction where ver 10 for some module might not be supported but version 11 is. With a modifier like >7, the package manager would make do if ver 10 was present which would cause errors. Give this a thought

arpit20adlakha commented 3 years ago

This can create some serious issues like not taking care of deprecations and breaking changes. Major versions have breaking changes.