Skip to content

Commit

Permalink
feat: improve livereload watchlist
Browse files Browse the repository at this point in the history
  • Loading branch information
BernhardBaumrock committed Feb 5, 2025
1 parent 3ac8c80 commit c309bad
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions src/livereload.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,14 @@
'*.twig',
'*.less',
])
->from(wire()->config->paths->site)
->exclude('assets/backups/*')
->exclude('assets/cache/*')
->exclude('assets/files/*')
->exclude('assets/logs/*')
->from(wire()->config->paths->root)
->exclude('wire/*')
->exclude('.*/*')
->exclude('node_modules/*')
->exclude('site/assets/backups/*')
->exclude('site/assets/cache/*')
->exclude('site/assets/files/*')
->exclude('site/assets/logs/*')
->exclude('*/lib/*')
->exclude('*/dist/*')
->exclude('*/dst/*')
Expand Down

0 comments on commit c309bad

Please sign in to comment.