File tree 3 files changed +2
-3
lines changed 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 54
54
(rule
55
55
(target testing_dyn.js)
56
56
(deps testing_dyn.cma)
57
- (action (run js_of_ocaml %{deps} --wrap-with dynload --pretty )))
57
+ (action (run js_of_ocaml %{deps} --wrap-with dynload)))
58
58
59
59
(rule
60
60
(targets test_lib.odoc)
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ let ocamlc ?(dir=Sys.getcwd ()) ?(opn=[]) ?(ppx=[]) ~source ~target args =
42
42
let jsoo ?(dir =Sys. getcwd () ) ~source ~target args =
43
43
let d = Filename. concat dir in
44
44
if is_fresh ~dir target [source] then Lwt. return_unit else
45
- let args = " --wrap-with=dynload" :: " --pretty " :: args in
45
+ let args = " --wrap-with=dynload" :: args in
46
46
let args = args @ [d source; " -o" ; d target] in
47
47
run " js_of_ocaml" args
48
48
Original file line number Diff line number Diff line change 22
22
(libraries js_of_ocaml-compiler toploop)
23
23
(modules Toploop_jsoo)
24
24
(preprocess (pps js_of_ocaml-ppx))
25
- (js_of_ocaml (flags :standard --pretty))
26
25
)
27
26
28
27
(library
You can’t perform that action at this time.
0 commit comments