class ViteRuby::Manifest

def missing_entry_error(name, type: nil, **_options)

Internal: Raises a detailed message when an entry is missing in the manifest.
def missing_entry_error(name, type: nil, **_options)
  raise ViteRuby::MissingEntrypointError, OpenStruct.new(
    file_name: with_file_extension(name, type),
    last_build: builder.last_build_metadata,
    manifest: @manifest,
    config: config,
  )
end