class ViteRuby::CLI

simple commands.
Public: Command line interface that allows to install the library, and run

def self.require_framework_libraries(path = "cli")

Internal: Allows framework-specific variants to extend the CLI.
def self.require_framework_libraries(path = "cli")
  ViteRuby.framework_libraries.each do |_framework, library|
    require [library.name.tr("-", "/").to_s, path].compact.join("/")
  end
rescue LoadError
  require_framework_libraries "installation" unless path == "installation"
end