rolldown_error 1.0.0

rolldown_error
Documentation
use super::BuildEvent;
use crate::{types::diagnostic_options::DiagnosticOptions, types::event_kind::EventKind};

#[derive(Debug)]
pub struct LargeBarrelModules {
  pub module_id: String,
  pub reexport_count: usize,
}

impl BuildEvent for LargeBarrelModules {
  fn kind(&self) -> EventKind {
    EventKind::LargeBarrelModules
  }

  fn message(&self, opts: &DiagnosticOptions) -> String {
    format!(
      "{} has {} re-exports. Eagerly resolving every entry can significantly slow down the build. Consider using `@rolldown/plugin-transform-imports` to rewrite imports at the source level so the barrel file is never loaded.",
      opts.stabilize_path(&self.module_id),
      self.reexport_count,
    )
  }

  fn on_diagnostic(
    &self,
    diagnostic: &mut crate::build_diagnostic::diagnostic::Diagnostic,
    _opts: &DiagnosticOptions,
  ) {
    diagnostic.helps.push(
      "See https://github.com/rolldown/plugins/tree/main/packages/transform-imports for usage."
        .to_string(),
    );
  }

  fn id(&self) -> Option<String> {
    Some(self.module_id.clone())
  }
}