@workglow/tasks 0.2.24 → 0.2.26

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/electron.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
  }
@@ -16806,4 +16806,4 @@ export {
16806
16806
  ArrayTask
16807
16807
  };
16808
16808
 
16809
- //# debugId=2084DDF3E5D3C03464756E2164756E21
16809
+ //# debugId=1FF3C595B79D16AE64756E2164756E21