@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.mjs CHANGED
@@ -1280,7 +1280,7 @@ var GraphNode = class _GraphNode extends SignalEmitter {
1280
1280
  }
1281
1281
  this.emit(signal, data);
1282
1282
  if (!this.task.emitsSignals.has(signal)) {
1283
- this.task.attachSignal(signal);
1283
+ this.task.emitsSignals.add(signal);
1284
1284
  }
1285
1285
  }
1286
1286
  /**
@@ -1308,7 +1308,7 @@ var GraphNode = class _GraphNode extends SignalEmitter {
1308
1308
  }
1309
1309
  this.emitMetrics(signal, data);
1310
1310
  if (!this.task.emitsSignals.has(signal)) {
1311
- this.task.attachSignal(signal);
1311
+ this.task.emitsSignals.add(signal);
1312
1312
  }
1313
1313
  }
1314
1314
  /**