@workglow/tasks 0.2.23 → 0.2.25

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/bun.js CHANGED
@@ -2765,15 +2765,15 @@ class ArrayTaskRunner extends GraphAsTaskRunner {
2765
2765
  async executeTaskChildrenPreview() {
2766
2766
  return this.task.subGraph.runPreview({});
2767
2767
  }
2768
- async executeTaskPreview(input) {
2769
- await super.executeTaskPreview(input);
2768
+ async executeTaskPreview(input, ctx) {
2769
+ await super.executeTaskPreview(input, ctx);
2770
2770
  if (this.task.hasChildren()) {
2771
2771
  this.task.runOutputData = this.task.executeMerge(input, this.task.runOutputData);
2772
2772
  }
2773
2773
  return this.task.runOutputData;
2774
2774
  }
2775
- async executeTask(input) {
2776
- await super.executeTask(input);
2775
+ async executeTask(input, ctx) {
2776
+ await super.executeTask(input, ctx);
2777
2777
  if (this.task.hasChildren()) {
2778
2778
  this.task.runOutputData = this.task.executeMerge(input, this.task.runOutputData);
2779
2779
  }
@@ -16587,4 +16587,4 @@ export {
16587
16587
  ArrayTask
16588
16588
  };
16589
16589
 
16590
- //# debugId=09624B58D9FE5E1364756E2164756E21
16590
+ //# debugId=6326F300C3DC80C864756E2164756E21