class ViteRuby::Commands

def clean_from_task(args)

Public: Receives arguments from a rake task.
def clean_from_task(args)
  ensure_log_goes_to_stdout {
    clean(keep_up_to: Integer(args.keep || 2), age_in_seconds: Integer(args.age || 3600))
  }
end