From c8cc9319be07c3474f312897935f096ad1cee130 Mon Sep 17 00:00:00 2001 From: ComputerGuy <63362464+Ocean-OS@users.noreply.github.com> Date: Fri, 29 Aug 2025 18:31:49 -0700 Subject: [PATCH] try this --- .../phases/3-transform/client/visitors/VariableDeclaration.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/svelte/src/compiler/phases/3-transform/client/visitors/VariableDeclaration.js b/packages/svelte/src/compiler/phases/3-transform/client/visitors/VariableDeclaration.js index 49f9e721f8..e6ed9b0b42 100644 --- a/packages/svelte/src/compiler/phases/3-transform/client/visitors/VariableDeclaration.js +++ b/packages/svelte/src/compiler/phases/3-transform/client/visitors/VariableDeclaration.js @@ -268,7 +268,8 @@ export function VariableDeclaration(node, context) { ...context.state.scope.get_bindings(declarator) ]); } - const type = parallelize ? (dev ? 'promise_all' : 'all') : null; + // const type = parallelize ? (dev ? 'promise_all' : 'all') : null; + const type = 'all'; /** @type {VariableDeclarator[]} */ const derived_declarators = [];