Skip to content

Commit

Permalink
Fixes following review
Browse files Browse the repository at this point in the history
  • Loading branch information
AltGr committed Jul 26, 2024
1 parent 47b4410 commit fd8f180
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 17 deletions.
2 changes: 1 addition & 1 deletion learn-ocaml-client.opam
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ depends: [
"ocp-indent-nlfork"
"json-data-encoding" {>= "0.7"}
"ocp-ocamlres" {>= "0.4"}
"omd" {<= "2.0"}
"omd" {< "2.0"}
"ppxlib"
"ppx_expect"
"ppx_inline_test"
Expand Down
33 changes: 17 additions & 16 deletions src/app/dune
Original file line number Diff line number Diff line change
Expand Up @@ -115,21 +115,22 @@
)


;; (executable
;; (name learnocaml_partition_view)
;; (modes byte js)
;; (flags :standard -warn-error -9-27-33)
;; (libraries ezjsonm
;; grading_jsoo
;; ace
;; learnocaml_repository
;; learnocaml_app_common
;; lwt_react
;; js_of_ocaml-ppx
;; ocplib_i18n)
;; (modules Learnocaml_partition_view)
;; (preprocess (pps ppx_ocplib_i18n js_of_ocaml-ppx))
;; )
(executable
(name learnocaml_partition_view)
(modes byte js)
(flags :standard -warn-error -9-27-33)
(libraries ezjsonm
grading_jsoo
ace
learnocaml_repository
learnocaml_app_common
lwt_react
js_of_ocaml-ppx
ocplib_i18n)
(modules Learnocaml_partition_view)
(preprocess (pps ppx_ocplib_i18n js_of_ocaml-ppx))
(preprocessor_deps (sandbox none))
)

(install
(package learn-ocaml)
Expand All @@ -138,7 +139,7 @@
(learnocaml_exercise_main.bc.js as www/js/learnocaml-exercise.js)
(learnocaml_student_view.bc.js as www/js/learnocaml-student-view.js)
(learnocaml_description_main.bc.js as www/js/learnocaml-description.js)
;; (learnocaml_partition_view.bc.js as www/js/learnocaml-partition-view.js)
(learnocaml_partition_view.bc.js as www/js/learnocaml-partition-view.js)
(learnocaml_playground_main.bc.js as www/js/learnocaml-playground.js))
)

0 comments on commit fd8f180

Please sign in to comment.