Skip to content

Commit

Permalink
indent dune
Browse files Browse the repository at this point in the history
  • Loading branch information
vogler committed Feb 26, 2020
1 parent 4558030 commit 83b4fc9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
8 changes: 4 additions & 4 deletions dune
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
)

(rule
(alias runtest)
; (action (diff test.expected.ml test.actual.ml))
; (action (run diff -w test.expected.ml test.actual.ml)) ; does not work: https://github.com/ocaml/dune/issues/697#issuecomment-590785703
(action (diff test.expected.ml test.actual.norm.ml))
(alias runtest)
; (action (diff test.expected.ml test.actual.ml))
; (action (run diff -w test.expected.ml test.actual.ml)) ; does not work: https://github.com/ocaml/dune/issues/697#issuecomment-590785703
(action (diff test.expected.ml test.actual.norm.ml))
)
14 changes: 8 additions & 6 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@
(license MIT)

(package
(name ppx_distr_guards)
(synopsis "Extension to distribute guards over or-patterns")
(description "`function%distr A x, _ | _, A x when p x -> e` will result in `function A x, _ when p x -> e | _, A x when p x -> e`")
(depends
(dune (>= 2.3.0))
(ocaml-migrate-parsetree (>= 1.6.0))))
(name ppx_distr_guards)
(synopsis "Extension to distribute guards over or-patterns")
(description "`function%distr A x, _ | _, A x when p x -> e` will result in `function A x, _ when p x -> e | _, A x when p x -> e`")
(depends
(dune (>= 2.3.0))
(ocaml-migrate-parsetree (>= 1.6.0))
)
)

0 comments on commit 83b4fc9

Please sign in to comment.