From ca26b41ce57fd67f28be446bc93b488cd36c799e Mon Sep 17 00:00:00 2001 From: engin0223 Date: Sat, 7 Mar 2026 14:46:04 +0300 Subject: [PATCH] fix(node): revert async from bake function --- src/node/api.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/node/api.mjs b/src/node/api.mjs index 7ac25ac8..6b7f5367 100644 --- a/src/node/api.mjs +++ b/src/node/api.mjs @@ -324,10 +324,10 @@ export function help(input) { * @returns {NodeDish} of the result * @throws {TypeError} if invalid recipe given. */ -export async function bake(input, recipeConfig) { +export function bake(input, recipeConfig) { const recipe = new NodeRecipe(recipeConfig); const dish = ensureIsDish(input); - return await recipe.execute(dish); + return recipe.execute(dish); }