@workglow/tasks 0.0.88 → 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/browser.js
CHANGED
|
@@ -731,6 +731,9 @@ class ArrayTaskRunner extends GraphAsTaskRunner {
|
|
|
731
731
|
async executeTaskChildren(_input) {
|
|
732
732
|
return super.executeTaskChildren({});
|
|
733
733
|
}
|
|
734
|
+
async executeTaskChildrenReactive() {
|
|
735
|
+
return this.task.subGraph.runReactive({});
|
|
736
|
+
}
|
|
734
737
|
async executeTaskReactive(input, output) {
|
|
735
738
|
await super.executeTaskReactive(input, output);
|
|
736
739
|
if (this.task.hasChildren()) {
|
|
@@ -5764,4 +5767,4 @@ export {
|
|
|
5764
5767
|
ArrayTask
|
|
5765
5768
|
};
|
|
5766
5769
|
|
|
5767
|
-
//# debugId=
|
|
5770
|
+
//# debugId=169B7E13C7F6B8CF64756E2164756E21
|