Why is webpack –watch not updating when specific files are updated

using the old watcher plugin seems to resolve the issue for my needs. Done in my configuration via:

plugins: [
    new webpack.OldWatchingPlugin()
],

Leave a Comment