@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/browser.js +5 -5
- package/dist/browser.js.map +3 -3
- package/dist/bun.js +5 -5
- package/dist/bun.js.map +3 -3
- package/dist/electron.js +5 -5
- package/dist/electron.js.map +3 -3
- package/dist/node.js +5 -5
- package/dist/node.js.map +3 -3
- package/dist/task/ArrayTask.d.ts +3 -2
- package/dist/task/ArrayTask.d.ts.map +1 -1
- package/package.json +10 -10
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=
|
|
16590
|
+
//# debugId=6326F300C3DC80C864756E2164756E21
|