This commit is contained in:
parent
aa2ff7b2f0
commit
2f3113f55d
11742 changed files with 1223940 additions and 0 deletions
|
|
@ -0,0 +1,33 @@
|
|||
Test unmangling of js files
|
||||
|
||||
$ cat > dune-project <<EOF
|
||||
> (lang dune 3.8)
|
||||
> (using melange 0.1)
|
||||
> EOF
|
||||
|
||||
$ cat > dune <<EOF
|
||||
> (melange.emit
|
||||
> (target output)
|
||||
> (emit_stdlib false)
|
||||
> (alias mel))
|
||||
> EOF
|
||||
|
||||
Using uppercase produces uppercase artifacts
|
||||
|
||||
$ cat > Upper.ml <<EOF
|
||||
> print_endline "hello"
|
||||
> EOF
|
||||
|
||||
$ dune build output/Upper.js
|
||||
$ node _build/default/output/Upper.js
|
||||
hello
|
||||
|
||||
Using lowercase produces uppercase artifacts
|
||||
|
||||
$ cat > lower.ml <<EOF
|
||||
> print_endline "hello"
|
||||
> EOF
|
||||
|
||||
$ dune build @mel
|
||||
$ node _build/default/output/lower.js
|
||||
hello
|
||||
Loading…
Add table
Add a link
Reference in a new issue