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(),
...
]
endOr add it via aliases for a gentler approach:
defp aliases do
[
compile: ["compile.jido_browser", "compile"]
]
end