class ViteRuby::Runner

Public: Executes Vite commands, providing conveniences for debugging.

def command_for(args)

Internal: Returns an Array with the command to run.
def command_for(args)
  [config.to_env(env)].tap do |cmd|
    args = args.clone
    cmd.push('node', '--inspect-brk') if args.delete('--inspect')
    cmd.push('node', '--trace-deprecation') if args.delete('--trace_deprecation')
    cmd.push(*vite_executable)
    cmd.push(*args)
    cmd.push('--mode', config.mode) unless args.include?('--mode') || args.include?('-m')
  end
end

def initialize(vite_ruby)

def initialize(vite_ruby)
  @vite_ruby = vite_ruby
end

def run(argv, exec: false)

Public: Executes Vite with the specified arguments.
def run(argv, exec: false)
  config.within_root {
    cmd = command_for(argv)
    return Kernel.exec(*cmd) if exec
    log_or_noop = ->(line) { logger.info('vite') { line } } unless config.hide_build_console_output
    ViteRuby::IO.capture(*cmd, chdir: config.root, with_output: log_or_noop)
  }
rescue Errno::ENOENT => error
  raise ViteRuby::MissingExecutableError, error
end

def vite_executable

Internal: Resolves to an executable for Vite.
def vite_executable
  bin_path = config.vite_bin_path
  return [bin_path] if File.exist?(bin_path)
  if config.root.join('yarn.lock').exist?
    %w[yarn vite]
  else
    ["#{ `npm bin`.chomp }/vite"]
  end
end