Is it possible to lock global packages to a specific version? For example if I do:
$ npm install -g some-awesome-package@1.7.0
if some-awesome-package@1.7.1 exists, can I prevent npm from ever updating this specific package?
|
Is it possible to lock global packages to a specific version? For example if I do:
if some-awesome-package@1.7.1 exists, can I prevent npm from ever updating this specific package? |
|||
|
|
|
There may be a way to do this through the I thought it might be possible using One (very hacky) way to force npm to fail when it tries to overwrite your globally installed package is to remove write permissions for the folder (for the user account that runs Once you do that, then |
|||
|
|
|
The answer appears to be no. I opened this issue but it got closed. It's hard to imagine that I'm the only person with this use case though. |
|||
|
|