Skip to content

Commit ab8f03c

Browse files
committed
Run pnpm format
1 parent 96ce0f9 commit ab8f03c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/kit/src/utils/filesystem.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export function walk(cwd, dirs = false) {
105105
}
106106
}
107107

108-
return (walk_dir(''), all_files);
108+
return walk_dir(''), all_files;
109109
}
110110

111111
/** @param {string} str */

packages/kit/test/apps/basics/src/routes/css/dynamic/+page.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
let Dynamic;
33
</script>
44

5-
<button on:click={async () => {
5+
<button
6+
on:click={async () => {
67
Dynamic = (await import('./Dynamic.svelte')).default;
7-
}}
8-
>load component</button
8+
}}>load component</button
99
>
1010

1111
<svelte:component this={Dynamic}></svelte:component>

0 commit comments

Comments
 (0)