Test unmangling of js files $ cat > dune-project < (lang dune 3.8) > (using melange 0.1) > EOF $ cat > dune < (melange.emit > (target output) > (emit_stdlib false) > (alias mel)) > EOF Using uppercase produces uppercase artifacts $ cat > Upper.ml < print_endline "hello" > EOF $ dune build output/Upper.js $ node _build/default/output/Upper.js hello Using lowercase produces uppercase artifacts $ cat > lower.ml < print_endline "hello" > EOF $ dune build @mel $ node _build/default/output/lower.js hello