@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.mjs CHANGED
@@ -978,9 +978,6 @@ var GraphNode = class _GraphNode extends SignalEmitter {
978
978
  };
979
979
  }
980
980
  this.emit(signal, data);
981
- if (!this.task.emitsSignals.has(signal)) {
982
- this.task.attachSignal(signal);
983
- }
984
981
  }
985
982
  emitMetricsWithMetadata(signal, data) {
986
983
  if (!this.task?.isHidden) {
@@ -998,9 +995,6 @@ var GraphNode = class _GraphNode extends SignalEmitter {
998
995
  };
999
996
  }
1000
997
  this.emitMetrics(signal, data);
1001
- if (!this.task.emitsSignals.has(signal)) {
1002
- this.task.attachSignal(signal);
1003
- }
1004
998
  }
1005
999
  onProgress(progress) {
1006
1000
  progress = Math.min(Math.max(0, progress), 1);