module SvelteOnRails::Installer::Utils

def self.check_file_exists(file_path)

def self.check_file_exists(file_path)
  unless File.exist?(file_path)
    raise "ERROR: File not found: #{file_path}"
  end
end