@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/bun.js
CHANGED
|
@@ -2737,7 +2737,7 @@ class TaskGraphRunner {
|
|
|
2737
2737
|
const runAsync = async () => {
|
|
2738
2738
|
let errorRouted = false;
|
|
2739
2739
|
try {
|
|
2740
|
-
const taskInput = isRootTask ? input : this.filterInputForTask(task, input);
|
|
2740
|
+
const taskInput = isRootTask ? input : config?.matchAllEmptyInputs ? this.filterInputForTask(task, input) : {};
|
|
2741
2741
|
const taskPromise = this.runTask(task, taskInput);
|
|
2742
2742
|
this.inProgressTasks.set(task.id, taskPromise);
|
|
2743
2743
|
const taskResult = await taskPromise;
|
|
@@ -7634,4 +7634,4 @@ export {
|
|
|
7634
7634
|
BROWSER_GRANTS
|
|
7635
7635
|
};
|
|
7636
7636
|
|
|
7637
|
-
//# debugId=
|
|
7637
|
+
//# debugId=D70838C34E16DC2B64756E2164756E21
|