Skip to content

Commit

Permalink
(fix) remove zero width space from ignore glob (#1807)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonlyu123 authored Dec 23, 2022
1 parent 2fda68a commit b762590
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/svelte-vscode/src/sveltekit/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function getConfig() {
}

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

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

0 comments on commit b762590

Please sign in to comment.