Sha256: de9b748e5be830d547ff17c45af61f6b5fb2190fdd0b808053725aabcb3ae90d
Contents?: true
Size: 1.33 KB
Versions: 49
Compression:
Stored size: 1.33 KB
Contents
# frozen_string_literal: true # Public: Executes Vite commands, providing conveniences for debugging. class ViteRuby::Runner def initialize(vite_ruby) @vite_ruby = vite_ruby end # Public: Executes Vite with the specified arguments. def run(argv, exec: false) Dir.chdir(config.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 private extend Forwardable def_delegators :@vite_ruby, :config, :logger # Internal: Returns an Array with the command to run. def command_for(args) [config.to_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 # Internal: Resolves to an executable for Vite. def vite_executable bin_path = config.vite_bin_path File.exist?(bin_path) ? bin_path : "#{ `npm bin`.chomp }/vite" end end
Version data entries
49 entries across 49 versions & 1 rubygems