@bian-womp/spark-graph 0.3.11 → 0.3.13

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/lib/cjs/index.cjs CHANGED
@@ -2007,6 +2007,8 @@ class NodeExecutor {
2007
2007
  ctx.log("debug", "node-done", {
2008
2008
  durationMs: node.stats.lastDurationMs,
2009
2009
  hadError,
2010
+ inputs: node.inputs ? structuredClone(node.inputs) : undefined,
2011
+ outputs: node.outputs ? structuredClone(node.outputs) : undefined,
2010
2012
  });
2011
2013
  if (onDone)
2012
2014
  onDone();