@workglow/task-graph 0.0.104 → 0.0.105
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/browser.js +13 -2
- package/dist/browser.js.map +3 -3
- package/dist/bun.js +13 -2
- package/dist/bun.js.map +3 -3
- package/dist/node.js +13 -2
- package/dist/node.js.map +3 -3
- package/dist/task-graph/TaskGraphRunner.d.ts.map +1 -1
- package/package.json +7 -7
package/dist/browser.js
CHANGED
|
@@ -2278,13 +2278,24 @@ class TaskGraphRunner {
|
|
|
2278
2278
|
const dataflows = this.graph.getTargetDataflows(node.id);
|
|
2279
2279
|
for (const dataflow of dataflows) {
|
|
2280
2280
|
const compatibility = dataflow.semanticallyCompatible(this.graph, dataflow);
|
|
2281
|
+
getLogger3().debug("pushOutputFromNodeToEdges", {
|
|
2282
|
+
dataflowId: dataflow.id,
|
|
2283
|
+
compatibility,
|
|
2284
|
+
resultsKeys: Object.keys(results)
|
|
2285
|
+
});
|
|
2281
2286
|
if (compatibility === "static") {
|
|
2282
2287
|
dataflow.setPortData(results);
|
|
2283
2288
|
} else if (compatibility === "runtime") {
|
|
2284
2289
|
const task = this.graph.getTask(dataflow.targetTaskId);
|
|
2285
2290
|
const narrowed = await task.narrowInput({ ...results }, this.registry);
|
|
2286
2291
|
dataflow.setPortData(narrowed);
|
|
2287
|
-
} else {
|
|
2292
|
+
} else {
|
|
2293
|
+
getLogger3().warn("pushOutputFromNodeToEdges", {
|
|
2294
|
+
dataflowId: dataflow.id,
|
|
2295
|
+
compatibility,
|
|
2296
|
+
resultsKeys: Object.keys(results)
|
|
2297
|
+
});
|
|
2298
|
+
}
|
|
2288
2299
|
}
|
|
2289
2300
|
}
|
|
2290
2301
|
pushStatusFromNodeToEdges(graph, node, status) {
|
|
@@ -6194,4 +6205,4 @@ export {
|
|
|
6194
6205
|
ConditionalTask
|
|
6195
6206
|
};
|
|
6196
6207
|
|
|
6197
|
-
//# debugId=
|
|
6208
|
+
//# debugId=A175184B7BC8167764756E2164756E21
|