class SvelteOnRails::Lib::Utils

def self.puts_warning(text)

def self.puts_warning(text)
  black_background = "\033[97;40m"
  clear_colors = "\033[0m"
  puts "#{black_background} [svelte-on-rails] WARNING #{clear_colors}"
  text.split("\n").each do |line|
    puts "#{black_background} #{clear_colors}  #{line}"
  end
end