I tried running webpack --watch and after editing my JS files, it doesn\'t trigger an auto-recompilation.
webpack --watch
I\'ve tried reinstalling webpack
webpack
I have the same issue. And I notice it's not compiling because my folder contains some character(*). And using the old watcher plugin seems to resolve the issue. Add this line to your webpack config file.
plugins: [ new webpack.OldWatchingPlugin() ]