mix compile.jido_browser (Jido Browser v2.1.0)

Copy Markdown View Source

A Mix compiler that checks if the browser automation binary is installed.

This compiler runs during mix compile and emits a helpful warning if the required binary for the configured adapter is not found.

Configuration

Add this compiler to your project's mix.exs:

def project do
  [
    compilers: [:jido_browser] ++ Mix.compilers(),
    ...
  ]
end

Or add it via aliases for a gentler approach:

defp aliases do
  [
    compile: ["compile.jido_browser", "compile"]
  ]
end