Skip to content

Commit

Permalink
List ppxs instead of ppx_jane
Browse files Browse the repository at this point in the history
  • Loading branch information
mbarbin committed Feb 27, 2024
1 parent fcd01d9 commit 644bf79
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 4 deletions.
9 changes: 8 additions & 1 deletion auto-format.opam
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,15 @@ depends: [
"parsing-utils" {>= "0.0.2"}
"pp" {>= "1.2.0"}
"pp-extended" {>= "0.0.2"}
"ppx_jane" {>= "v0.16" & < "v0.17"}
"ppx_compare" {>= "v0.16" & < "v0.17"}
"ppx_enumerate" {>= "v0.16" & < "v0.17"}
"ppx_expect" {with-test & >= "v0.16" & < "v0.17"}
"ppx_hash" {>= "v0.16" & < "v0.17"}
"ppx_here" {>= "v0.16" & < "v0.17"}
"ppx_js_style" {>= "v0.16" & < "v0.17"}
"ppx_let" {>= "v0.16" & < "v0.17"}
"ppx_sexp_conv" {>= "v0.16" & < "v0.17"}
"ppx_sexp_value" {>= "v0.16" & < "v0.17"}
"odoc" {with-doc}
]
build: [
Expand Down
31 changes: 30 additions & 1 deletion dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,40 @@
(>= 1.2.0))
(pp-extended
(>= 0.0.2))
(ppx_jane
(ppx_compare
(and
(>= v0.16)
(< v0.17)))
(ppx_enumerate
(and
(>= v0.16)
(< v0.17)))
(ppx_expect
(and
:with-test
(>= v0.16)
(< v0.17)))
(ppx_hash
(and
(>= v0.16)
(< v0.17)))
(ppx_here
(and
(>= v0.16)
(< v0.17)))
(ppx_js_style
(and
(>= v0.16)
(< v0.17)))
(ppx_let
(and
(>= v0.16)
(< v0.17)))
(ppx_sexp_conv
(and
(>= v0.16)
(< v0.17)))
(ppx_sexp_value
(and
(>= v0.16)
(< v0.17)))))
11 changes: 10 additions & 1 deletion src/dune
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,13 @@
pp
pp-extended)
(preprocess
(pps ppx_jane ppx_js_style -check-doc-comments)))
(pps
ppx_compare
ppx_enumerate
ppx_hash
ppx_here
ppx_let
ppx_sexp_conv
ppx_sexp_value
ppx_js_style
-check-doc-comments)))
12 changes: 11 additions & 1 deletion test/dune
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,14 @@
base
expect_test_helpers_core.expect_test_helpers_base)
(preprocess
(pps ppx_jane ppx_js_style -check-doc-comments)))
(pps
ppx_compare
ppx_enumerate
ppx_expect
ppx_hash
ppx_here
ppx_let
ppx_sexp_conv
ppx_sexp_value
ppx_js_style
-check-doc-comments)))

0 comments on commit 644bf79

Please sign in to comment.