Updated server:reload task in Rakefile to ignore SCSS and CoffeeScript source files

This commit is contained in:
Gregory Ballantine 2023-03-03 10:09:15 -05:00
parent 8dd9932730
commit b43d155eee

View File

@ -15,6 +15,6 @@ namespace :server do
end
task :reload do
%x{rerun --no-notify 'ruby server.rb'}
%x{rerun --ignore 'assets/*' --ignore 'public/*' --no-notify 'ruby server.rb'}
end
end