@workglow/tasks 0.0.87 → 0.0.89
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 +4 -1
- package/dist/browser.js.map +3 -3
- package/dist/bun.js +4 -1
- package/dist/bun.js.map +3 -3
- package/dist/node.js +4 -1
- package/dist/node.js.map +3 -3
- package/dist/task/ArrayTask.d.ts +5 -0
- package/dist/task/ArrayTask.d.ts.map +1 -1
- package/package.json +9 -9
package/dist/node.js
CHANGED
|
@@ -897,6 +897,9 @@ class ArrayTaskRunner extends GraphAsTaskRunner {
|
|
|
897
897
|
async executeTaskChildren(_input) {
|
|
898
898
|
return super.executeTaskChildren({});
|
|
899
899
|
}
|
|
900
|
+
async executeTaskChildrenReactive() {
|
|
901
|
+
return this.task.subGraph.runReactive({});
|
|
902
|
+
}
|
|
900
903
|
async executeTaskReactive(input, output) {
|
|
901
904
|
await super.executeTaskReactive(input, output);
|
|
902
905
|
if (this.task.hasChildren()) {
|
|
@@ -5930,4 +5933,4 @@ export {
|
|
|
5930
5933
|
ArrayTask
|
|
5931
5934
|
};
|
|
5932
5935
|
|
|
5933
|
-
//# debugId=
|
|
5936
|
+
//# debugId=02BEA071578CA0BF64756E2164756E21
|