Advertise reason support

This commit is contained in:
Jeremie Dimino 2017-04-20 16:52:05 +01:00
parent 18377cddf5
commit 52b326ab43
2 changed files with 11 additions and 11 deletions

View File

@ -1,6 +1,6 @@
* JBUILDER - A composable build system for OCaml
* JBUILDER - A composable build system for OCaml and Reason
Jbuilder is a build system designed for OCaml projects only. It
Jbuilder is a build system designed for OCaml/Reason projects only. It
focuses on providing the user with a consistent experience and takes
care of most of the low-level details of OCaml compilation. All you
have to do is provide a description of your project and Jbuilder will

View File

@ -7,8 +7,8 @@ instead.
* Intro
Jbuilder is a build system for OCaml. It is not intended as a
completely generic build system that is able to build any given
Jbuilder is a build system for OCaml and Reason. It is not intended as
a completely generic build system that is able to build any given
project in any language. On the contrary, it makes lots of choices in
order to encourage a consistent development style.
@ -287,13 +287,13 @@ the library and you are free to expose only the modules you want.
library. This is used by tools that list installed libraries
- =(modules <modules>)= specifies what modules are part of the
library. By default Jbuilder will use all the .ml files in the same
directory as the =jbuild= file. This include ones that are present
in the file system as well as ones generated by user rules. You can
restrict this list by using a =(modules <modules>)= field. =<modules>=
uses the [[Ordered set language][ordered set language]] where elements are module names and don't
need to start with a uppercase letter. For instance to exclude module
=Foo=: =(modules (:standard \ foo))=
library. By default Jbuilder will use all the .ml/.re files in the
same directory as the =jbuild= file. This include ones that are
present in the file system as well as ones generated by user
rules. You can restrict this list by using a =(modules <modules>)=
field. =<modules>= uses the [[Ordered set language][ordered set language]] where elements are
module names and don't need to start with a uppercase letter. For
instance to exclude module =Foo=: =(modules (:standard \ foo))=
- =(libraries (<library-dependencies>))= is used to specify the
dependencies of the library. See the [[Library dependencies][section about library