I am deploying a private npm module for internal use at our company. Since the module is handled internally, we can trust version bumps etc.
How can I install the module in various projects so that the latest version of the module will always be installed with every single npm install
, so that I don't have to go through a bunch of projects and update the version inside each package.json
every time we deploy?
Please note that this should only be for selected packages, not all packages - i.e. only those hosted on our private server.