module SvelteOnRails::Installer::Utils

def self.check_file_not_exists(file_path)

def self.check_file_not_exists(file_path)
  if File.exist?(file_path)
    raise "ERROR: File already exists: #{file_path}"
  end
end