-
Notifications
You must be signed in to change notification settings - Fork 428
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:/reasonml/reason
* 'master' of github.com:/reasonml/reason: chore: port to ppxlib (#2711) fix: binary parser (#2713) Improve functor printing. (#2683) chore: remove old BS_NO_COMPILER_PATCH flag (#2710) Improve printing of modules types with one line inside (#2709) generate opam files with dune (#2704)
- Loading branch information
Showing
133 changed files
with
4,682 additions
and
92,660 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,63 @@ | ||
(lang dune 2.8) | ||
(lang dune 2.9) | ||
|
||
(name reason) | ||
|
||
(using menhir 2.0) | ||
|
||
(cram enable) | ||
|
||
(version 3.8.2) | ||
|
||
(generate_opam_files true) | ||
|
||
(source | ||
(github reasonml/reason)) | ||
|
||
(authors "Jordan Walke <[email protected]>") | ||
|
||
(maintainers | ||
"Jordan Walke <[email protected]>" | ||
"Antonio Nuno Monteiro <[email protected]>") | ||
|
||
(homepage "https://reasonml.github.io/") | ||
|
||
(bug_reports "https://github.com/reasonml/reason/issues") | ||
|
||
(license "MIT") | ||
|
||
(package | ||
(name reason) | ||
(synopsis "Reason: Syntax & Toolchain for OCaml") | ||
(description | ||
"Reason gives OCaml a new syntax that is remniscient of languages like\nJavaScript. It's also the umbrella project for a set of tools for the OCaml &\nJavaScript ecosystem.") | ||
(depends | ||
(ocaml | ||
(and | ||
(>= "4.03") | ||
(< "5.1"))) | ||
(ocamlfind :build) | ||
(dune-build-info | ||
(>= 2.9.3)) | ||
(menhir | ||
(>= "20180523")) | ||
(merlin-extend | ||
(>= "0.6")) | ||
fix | ||
ppx_derivers | ||
(ppxlib | ||
(>= "0.28.0")))) | ||
|
||
(package | ||
(name rtop) | ||
(synopsis "Reason toplevel") | ||
(description | ||
"rtop is the toplevel (or REPL) for Reason, based on utop (https://github.com/diml/utop).") | ||
(depends | ||
(ocaml | ||
(and | ||
(>= "4.03") | ||
(< "5.1"))) | ||
(reason | ||
(= :version)) | ||
(utop | ||
(>= "2.0")))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.