fix(node): ensure operations are executed sequentially in execute method

This commit is contained in:
engin0223 2026-03-07 15:02:45 +03:00
parent b5e8260129
commit ade8ff8cee

View File

@ -104,8 +104,9 @@ class NodeRecipe {
if (prev && typeof prev.then === 'function') {
return prev.then(runOp);
}
}
return prev;
return runOp(prev);
}, dish);
}
}