home.social

#mixgleam — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #mixgleam, aggregated by home.social.

fetched live
  1. if you are using in a mixed and project (using ). If you encounter ElixirLS going into an infinite compile loop, you can set up the :gleam compiler in mix.exs to not be used when in :test Mix env:

    ```elixir
    compilers:
    if Mix.env() != :test do
    [:gleam]
    else
    []
    end ++ Mix.compilers()
    ```

    This stopped the compile loop for me (after a restart) and allowed ElixirLS to work.