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

Configure Feed

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

Apply suggestions on PR and linter

+2 -2
+1 -1
compiler-cli/templates/gleam@@compile.erl
··· 141 141 {ok, ModuleAtoms, _} -> 142 142 ToBeam = fun(ModuleAtom) -> 143 143 Beam = filename:join(Out, atom_to_list(ModuleAtom)) ++ ".beam", 144 - log({compiled, ModuleAtom, Beam}), 144 + log({compiled, Beam}), 145 145 {ModuleAtom, Beam} 146 146 end, 147 147 {true, lists:map(ToBeam, ModuleAtoms)};
+1 -1
compiler-core/src/codegen.rs
··· 116 116 .chain(native_modules) 117 117 .unique() 118 118 .sorted() 119 - .map(|m| escape_atom_string((&m).clone().into())) 119 + .map(|m| escape_atom_string(m.clone().into())) 120 120 .join(",\n "); 121 121 122 122 // TODO: When precompiling for production (i.e. as a precompiled hex