Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

Handle application already started

Closes https://github.com/gleam-lang/gleam/issues/4740

+7 -5
+4
CHANGELOG.md
··· 219 219 single-line "View Source" anchors emit `#Lx` instead of `#Lx-x`. 220 220 ([Aayush Tripathi](https://github.com/aayush-tripathi)) 221 221 222 + - The build tool can now compile packages that will have already booted the 223 + Erlang compiler application instead of failing. 224 + ([Louis Pilfold](https://github.com/lpil)) 225 + 222 226 ### Language server 223 227 224 228 - It is now possible to use the "Pattern match on variable" code action on
+3 -5
compiler-cli/templates/gleam@@compile.erl
··· 114 114 case Modules of 115 115 [] -> {true, []}; 116 116 _ -> 117 - log({starting, "compiler.app"}), 118 - ok = application:start(compiler), 119 - log({starting, "elixir.app"}), 120 - case application:start(elixir) of 121 - ok -> do_compile_elixir(Modules, Out); 117 + log({starting, "compiler.app,elixir.app"}), 118 + case application:ensure_all_started([compiler, elixir]) of 119 + {ok, _} -> do_compile_elixir(Modules, Out); 122 120 _ -> 123 121 io:put_chars(standard_error, [Error, $\n]), 124 122 {false, []}