Skip to content

Commit c8cc931

Browse files
committed
try this
1 parent 1c2ea75 commit c8cc931

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/svelte/src/compiler/phases/3-transform/client/visitors/VariableDeclaration.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,8 @@ export function VariableDeclaration(node, context) {
268268
...context.state.scope.get_bindings(declarator)
269269
]);
270270
}
271-
const type = parallelize ? (dev ? 'promise_all' : 'all') : null;
271+
// const type = parallelize ? (dev ? 'promise_all' : 'all') : null;
272+
const type = 'all';
272273

273274
/** @type {VariableDeclarator[]} */
274275
const derived_declarators = [];

0 commit comments

Comments
 (0)