So basically I have a project using Webpack, if I build using Webpack -w, editing the file with another editor will trigger the watch; however if I edit the file us
Webpack -w
Also make sure you use Node's path construction instead of slashes. Example:
entry: { 'MyPackage': path.join(__dirname, 'modules', 'PkgEntry.js'), ...
instead of:
entry: { 'MyPackage': '\\modules\\PkgEntry.js'), ...