@cadenza.io/core 1.7.6 → 1.7.7
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 +7 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1914,7 +1914,12 @@ var GraphRunner = class extends SignalEmitter {
|
|
|
1914
1914
|
};
|
|
1915
1915
|
this.emit("meta.runner.added_tasks", data);
|
|
1916
1916
|
if (this.debug) {
|
|
1917
|
-
console.log(
|
|
1917
|
+
console.log(
|
|
1918
|
+
`${this.isMeta ? "Meta" : ""}Runner added tasks`,
|
|
1919
|
+
allTasks,
|
|
1920
|
+
"with context",
|
|
1921
|
+
ctx
|
|
1922
|
+
);
|
|
1918
1923
|
}
|
|
1919
1924
|
allTasks.forEach(
|
|
1920
1925
|
(task) => this.currentRun.addNode(
|
|
@@ -2664,6 +2669,7 @@ var Cadenza = class {
|
|
|
2664
2669
|
if (this.mode === "debug" || this.mode === "dev") {
|
|
2665
2670
|
this.broker.setDebug(true);
|
|
2666
2671
|
this.runner.setDebug(true);
|
|
2672
|
+
this.metaRunner.setDebug(true);
|
|
2667
2673
|
}
|
|
2668
2674
|
this.registry = GraphRegistry.instance;
|
|
2669
2675
|
this.broker.init();
|