From b43d155eee1a1c197baf44a3e1839be7c5011220 Mon Sep 17 00:00:00 2001 From: Gregory Ballantine Date: Fri, 3 Mar 2023 10:09:15 -0500 Subject: [PATCH] Updated server:reload task in Rakefile to ignore SCSS and CoffeeScript source files --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index ef4e567..efa0d11 100644 --- a/Rakefile +++ b/Rakefile @@ -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