@cadenza.io/core 3.15.4 → 3.15.5
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 +6 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -361,9 +361,12 @@ var SignalBroker = class _SignalBroker {
|
|
|
361
361
|
*/
|
|
362
362
|
init() {
|
|
363
363
|
this.getSignalsTask = Cadenza.createMetaTask("Get signals", (ctx) => {
|
|
364
|
-
const uniqueSignals = Array.from(
|
|
365
|
-
|
|
366
|
-
|
|
364
|
+
const uniqueSignals = Array.from(
|
|
365
|
+
/* @__PURE__ */ new Set([
|
|
366
|
+
...this.signalObservers.keys(),
|
|
367
|
+
...this.emittedSignalsRegistry
|
|
368
|
+
])
|
|
369
|
+
).filter((s) => !s.includes(":"));
|
|
367
370
|
const processedSignals = uniqueSignals.map((signal) => ({
|
|
368
371
|
signal,
|
|
369
372
|
data: {
|