swh:1:snp:61dcfc0dd5674a0e65803e88039c122d9532074e
Raw File
Tip revision: 42a39c7e726620f936c21a7a73347d770b0d38d7 authored by Raphaƫl Proust on 12 May 2022, 09:38:50 UTC
tutorial more better
Tip revision: 42a39c7
dune
(env
 (release
  (flags "-noassert")))

(library
 (name data_encoding)
 (public_name data-encoding)
 (js_of_ocaml)
 (libraries json-data-encoding json-data-encoding-bson zarith zarith_stubs_js
   ezjsonm either)
 (flags (:standard)))

(documentation
 (mld_files tutorial))

(rule
 (targets tutorial.mld)
 (deps tutorial.md)
 (action
  (with-stdout-to
   %{targets}
   (run md2mld %{deps}))))
back to top