You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
modulesChange property was used to indicate .js change in node_modules but webpack watches for changes in `.js` files from node_modules if they are required in application, so no more need from this property.
this.$logger.trace(`Set configChanged to true, current value of moduleChanged is: ${this._changesInfo.modulesChanged}, appResourcesChanged is: ${this._changesInfo.appResourcesChanged}`);
104
+
if(this._changesInfo.appResourcesChanged){
105
+
this.$logger.trace(`Set configChanged to true, appResourcesChanged is: ${this._changesInfo.appResourcesChanged}`);
118
106
this._changesInfo.configChanged=true;
119
107
}
120
108
if(this._changesInfo.hasChanges){
@@ -195,7 +183,6 @@ export class ProjectChangesService implements IProjectChangesService {
0 commit comments