module ViteRuby::CLI::FileUtils

def read_lines(path)

Returns an array with lines in the specified file, empty if it doesn't exist.
def read_lines(path)
  File.exist?(path) ? File.readlines(path) : []
end