Skip to content

Commit ab05202

Browse files
committed
(fix) remove zero width space from ignore glob (#1807)
1 parent 5ef7acf commit ab05202

File tree

1 file changed

+1
-1
lines changed
  • packages/svelte-vscode/src/sveltekit

1 file changed

+1
-1
lines changed

packages/svelte-vscode/src/sveltekit/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ function getConfig() {
4646
}
4747

4848
async function detect(nrRetries: number): Promise<boolean> {
49-
const packageJsonList = await workspace.findFiles('**/package.json', '**/node_modules/**');
49+
const packageJsonList = await workspace.findFiles('**/package.json', '**/node_modules/**');
5050

5151
if (packageJsonList.length === 0 && nrRetries > 0) {
5252
// We assume that the user has not setup their project yet, so try again after a while

0 commit comments

Comments
 (0)