I'm building 2 npm packages that are dependent.
Module A (package.json)
"dependencies": {
"module-b":"~0.0.1"
}
We use npm link
to connect these two apps locally. Currently we need to run npm run prepublish
on module-b to visualise the changes on module-a while running webpack dev server on module-a
Question: Is it possible for us to have hot reloading between the two modules. Like any changes made on Module B will reflect automatically on ModuleA?