Skip to content

Commit 5af9419

Browse files
committed
stop uncapitalizing js files in playground imports
1 parent 350af7c commit 5af9419

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/core/js_name_of_module_id.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ let string_of_module_id_in_browser (x : Lam_module_ident.t) =
3131
match x.kind with
3232
| External {name} -> name
3333
| Runtime | Ml ->
34-
"./stdlib/" ^ Ext_string.uncapitalize_ascii x.id.name ^ ".js"
34+
"./stdlib/" ^ x.id.name ^ ".js"
3535

3636
let string_of_module_id
3737
(id : Lam_module_ident.t)

0 commit comments

Comments
 (0)