@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/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/browser.js
CHANGED
|
@@ -2647,15 +2647,15 @@ class ArrayTaskRunner extends GraphAsTaskRunner {
|
|
|
2647
2647
|
async executeTaskChildrenPreview() {
|
|
2648
2648
|
return this.task.subGraph.runPreview({});
|
|
2649
2649
|
}
|
|
2650
|
-
async executeTaskPreview(input) {
|
|
2651
|
-
await super.executeTaskPreview(input);
|
|
2650
|
+
async executeTaskPreview(input, ctx) {
|
|
2651
|
+
await super.executeTaskPreview(input, ctx);
|
|
2652
2652
|
if (this.task.hasChildren()) {
|
|
2653
2653
|
this.task.runOutputData = this.task.executeMerge(input, this.task.runOutputData);
|
|
2654
2654
|
}
|
|
2655
2655
|
return this.task.runOutputData;
|
|
2656
2656
|
}
|
|
2657
|
-
async executeTask(input) {
|
|
2658
|
-
await super.executeTask(input);
|
|
2657
|
+
async executeTask(input, ctx) {
|
|
2658
|
+
await super.executeTask(input, ctx);
|
|
2659
2659
|
if (this.task.hasChildren()) {
|
|
2660
2660
|
this.task.runOutputData = this.task.executeMerge(input, this.task.runOutputData);
|
|
2661
2661
|
}
|
|
@@ -16058,4 +16058,4 @@ export {
|
|
|
16058
16058
|
ArrayTask
|
|
16059
16059
|
};
|
|
16060
16060
|
|
|
16061
|
-
//# debugId=
|
|
16061
|
+
//# debugId=3B3109B7341B5B0164756E2164756E21
|