Is there a way to config npm to not install the package using the lazy version, for example:
"coffee-script": "^1.11.1",
But
"coffee-script": "1.11.1",
And has this default behavior changed? Usually we donβt want to use lazy versions, I prefer to manually update everything to the last from time to time, rather than have an error appearing on my face after a new deployment due to an error in one of my dependencies.
The only way to "do this" right now is to manually remove the ^ character every time after every npm install , which is a little boring.
source share