class ViteRuby::CLI::Vite
def self.executable_options
def self.executable_options option(:mode, default: self::DEFAULT_ENV, values: %w[development production test], aliases: ["m"], desc: "The build mode for Vite") option(:node_options, desc: "Node options for the Vite executable", aliases: ["node-options"]) option(:inspect, desc: "Run Vite in a debugging session with node --inspect-brk", aliases: ["inspect-brk"], type: :boolean) option(:trace_deprecation, desc: "Run Vite in debugging mode with node --trace-deprecation", aliases: ["trace-deprecation"], type: :boolean) end