Skip to content

Commit 8a70bbf

Browse files
authored
chore: print correct packages in watching for changes message (#801)
1 parent e6c8e45 commit 8a70bbf

File tree

1 file changed

+1
-1
lines changed
  • apps/svelte.dev/scripts/sync-docs

1 file changed

+1
-1
lines changed

apps/svelte.dev/scripts/sync-docs/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,5 +219,5 @@ if (parsed.values.watch) {
219219
});
220220
}
221221

222-
console.log(`\nwatching for changes in ${parsed.positionals.join(', ')}`);
222+
console.log(`\nwatching for changes in ${filtered.map((pkg) => pkg.name).join(', ')}`);
223223
}

0 commit comments

Comments
 (0)