@cadenza.io/core 3.7.0 → 3.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1015,9 +1015,6 @@ var GraphNode = class _GraphNode extends SignalEmitter {
1015
1015
  };
1016
1016
  }
1017
1017
  this.emit(signal, data);
1018
- if (!this.task.emitsSignals.has(signal)) {
1019
- this.task.attachSignal(signal);
1020
- }
1021
1018
  }
1022
1019
  emitMetricsWithMetadata(signal, data) {
1023
1020
  if (!this.task?.isHidden) {
@@ -1035,9 +1032,6 @@ var GraphNode = class _GraphNode extends SignalEmitter {
1035
1032
  };
1036
1033
  }
1037
1034
  this.emitMetrics(signal, data);
1038
- if (!this.task.emitsSignals.has(signal)) {
1039
- this.task.attachSignal(signal);
1040
- }
1041
1035
  }
1042
1036
  onProgress(progress) {
1043
1037
  progress = Math.min(Math.max(0, progress), 1);