Skip to content

Commit

Permalink
fix(watch): ignore hidden files
Browse files Browse the repository at this point in the history
  • Loading branch information
privatenumber committed Mar 13, 2023
1 parent b6793b2 commit afa3c78
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/watch/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,9 @@ export const watchCommand = command({
// Hidden directories like .git
'**/.*/**',

// Hidden files (e.g. logs or temp files)
'**/.*',

// 3rd party packages
'**/{node_modules,bower_components,vendor}/**',

Expand Down

0 comments on commit afa3c78

Please sign in to comment.