Vue server reloads on package update only once
Version
3.2.26
Reproduction link
Steps to reproduce
- git clone https://github.com/PashaTurok/vue3-test2
- add to package.json any library which version you can change, for example, from any local repo and use this library in your code.
- npm install
- npm run serve
- Server should start to work and everything is ok.
- Now modify your library and publish it to the local repo with new patch version
- in the test project
npm update your-lib --registry http://...
- Server will update test project according to a new library package.
- Repeat step 6 and 7.
- Server WILL NOT update test project according to a new library package.
What is expected?
At step 10 server must update project again and do it after every npm update X
command.
What is actually happening?
At step 10 server doesn't update deployed project.