@cadenza.io/core 3.13.0 → 3.13.1

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
@@ -1317,7 +1317,7 @@ var GraphNode = class _GraphNode extends SignalEmitter {
1317
1317
  }
1318
1318
  this.emit(signal, data);
1319
1319
  if (!this.task.emitsSignals.has(signal)) {
1320
- this.task.attachSignal(signal);
1320
+ this.task.emitsSignals.add(signal);
1321
1321
  }
1322
1322
  }
1323
1323
  /**
@@ -1345,7 +1345,7 @@ var GraphNode = class _GraphNode extends SignalEmitter {
1345
1345
  }
1346
1346
  this.emitMetrics(signal, data);
1347
1347
  if (!this.task.emitsSignals.has(signal)) {
1348
- this.task.attachSignal(signal);
1348
+ this.task.emitsSignals.add(signal);
1349
1349
  }
1350
1350
  }
1351
1351
  /**