Skip to content

Commit aeff5f3

Browse files
committed
lint
1 parent c0723ad commit aeff5f3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,11 @@ const visitors = {
8484
} else {
8585
next();
8686
}
87-
if (node.type !== 'VariableDeclaration' && path.at(-1)?.type === 'Program' && state.analysis.instance) {
87+
if (
88+
node.type !== 'VariableDeclaration' &&
89+
path.at(-1)?.type === 'Program' &&
90+
state.analysis.instance
91+
) {
8892
state.current_parallelized_chunk = null;
8993
}
9094
},

0 commit comments

Comments
 (0)