Hot reloading currently works as intended if the contents of a required file changes.
However, webpack fails to detect changes to the filesystem (e.g. creation of a new file, deletion of a directory).
Currently, webpack has to be restarted on a filesystem change.
Implementing hot-reloading for filesystem changes is the best solution, though also non-trivial. This would entail propagating filesystem changes dynamically to the application structure.
An easier solution is to get our development server to watch the filesystem and recompile; i.e. refresh-wise updating.
Hot reloading currently works as intended if the contents of a required file changes.
However, webpack fails to detect changes to the filesystem (e.g. creation of a new file, deletion of a directory).
Currently, webpack has to be restarted on a filesystem change.
Implementing hot-reloading for filesystem changes is the best solution, though also non-trivial. This would entail propagating filesystem changes dynamically to the application structure.
An easier solution is to get our development server to watch the filesystem and recompile; i.e. refresh-wise updating.