Sha256: a1c9331166649fc70cc78c814de140c5573454ed5a58e114e8f37f301b5b2832
Contents?: true
Size: 1.43 KB
Versions: 2
Compression:
Stored size: 1.43 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 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 end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
vite_ruby-3.2.8 | lib/vite_ruby/runner.rb |
vite_ruby-3.2.7 | lib/vite_ruby/runner.rb |