@workglow/task-graph 0.2.12 → 0.2.13
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 +2 -2
- package/dist/browser.js.map +4 -4
- package/dist/bun.js +2 -2
- package/dist/bun.js.map +4 -4
- package/dist/node.js +2 -2
- package/dist/node.js.map +4 -4
- package/dist/task-graph/TaskGraph.d.ts +3 -1
- package/dist/task-graph/TaskGraph.d.ts.map +1 -1
- package/dist/task-graph/TaskGraphRunner.d.ts.map +1 -1
- package/package.json +7 -7
package/dist/browser.js
CHANGED
|
@@ -2736,7 +2736,7 @@ class TaskGraphRunner {
|
|
|
2736
2736
|
const runAsync = async () => {
|
|
2737
2737
|
let errorRouted = false;
|
|
2738
2738
|
try {
|
|
2739
|
-
const taskInput = isRootTask ? input : this.filterInputForTask(task, input);
|
|
2739
|
+
const taskInput = isRootTask ? input : config?.matchAllEmptyInputs ? this.filterInputForTask(task, input) : {};
|
|
2740
2740
|
const taskPromise = this.runTask(task, taskInput);
|
|
2741
2741
|
this.inProgressTasks.set(task.id, taskPromise);
|
|
2742
2742
|
const taskResult = await taskPromise;
|
|
@@ -8270,4 +8270,4 @@ export {
|
|
|
8270
8270
|
BROWSER_GRANTS
|
|
8271
8271
|
};
|
|
8272
8272
|
|
|
8273
|
-
//# debugId=
|
|
8273
|
+
//# debugId=A2F9041FD815B90264756E2164756E21
|