Utilizing the local package dependency functionality of npm, I have implemented it in the following manner:
npm install --save "file:/path/to/module"
After updating my library module by running npm run build
to generate dist files, I then execute npm update
in the project that utilizes this library. However, it appears that no updates are detected.
It appears that I must adjust the version number in order for updates to be recognized. Is there an alternative approach to achieving this?