class ViteRuby::MissingExecutableError

Internal: Raised when the Vite executable can not be found.

Public Class Methods

new(error = nil) click to toggle source
Calls superclass method
# File lib/vite_ruby/missing_executable_error.rb, line 5
  def initialize(error = nil)
    super <<~MSG
      ❌ The vite binary is not available. Have you installed the npm packages?

      :troubleshooting:
      #{ error }
    MSG
  end