brk_rolldown_resolver 0.8.0

rolldown_resolver
Documentation
use oxc_resolver::ResolveError;

/// Converts an oxc resolver error to a human-readable error message.
///
/// This function extracts the error reason and ignores path parameters for cleaner error messages.
/// Callers can further polish these messages case-by-case for better developer experience.
///
/// # Arguments
/// * `error` - The resolve error from oxc_resolver
///
/// # Returns
/// A string describing the error reason in a user-friendly format.
pub fn resolve_error_to_message(error: &ResolveError) -> String {
  match error {
    ResolveError::Ignored(_) => "Path is ignored".to_string(),
    ResolveError::NotFound(_) => "Cannot find module".to_string(),
    ResolveError::TsconfigNotFound(_) => "Tsconfig not found".to_string(),
    ResolveError::TsconfigSelfReference(_) => {
      "Tsconfig's project reference path points to itself".to_string()
    }
    ResolveError::IOError(_) => "I/O error occurred".to_string(),
    ResolveError::Builtin { .. } => "Builtin module".to_string(),
    ResolveError::ExtensionAlias { .. } => "None of the aliased extensions were found".to_string(),
    ResolveError::Specifier(_) => "The provided path specifier cannot be parsed".to_string(),
    ResolveError::Json(_) => "JSON parse error".to_string(),
    ResolveError::InvalidModuleSpecifier(..) => "Invalid module specifier".to_string(),
    ResolveError::InvalidPackageTarget(..) => "Invalid package target".to_string(),
    ResolveError::PackagePathNotExported { .. } => {
      "Package subpath is not defined by exports".to_string()
    }
    ResolveError::InvalidPackageConfig(_) => "Invalid package configuration".to_string(),
    ResolveError::InvalidPackageConfigDefault(_) => {
      "Default condition should be last in package configuration".to_string()
    }
    ResolveError::InvalidPackageConfigDirectory(_) => {
      "Expected folder-to-folder mapping in package configuration".to_string()
    }
    ResolveError::PackageImportNotDefined(..) => {
      "Package import specifier is not defined".to_string()
    }
    ResolveError::Unimplemented(_) => "Feature not yet implemented".to_string(),
    ResolveError::Recursion => "Circular dependency detected during resolution".to_string(),
    ResolveError::MatchedAliasNotFound(..) => "Matched alias target not found".to_string(),
    _ => "Unknown resolve error".to_string(),
  }
}