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 8770fdc commit e9c3797
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 4 deletions.
31 changes: 30 additions & 1 deletion dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,42 @@
(< v0.17)))
(fpath
(>= 0.7.3))
(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)))
(stdune
(>= 3.14))))
9 changes: 8 additions & 1 deletion loc.opam
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,15 @@ depends: [
"bisect_ppx" {dev & >= "2.8.3"}
"expect_test_helpers_core" {with-test & >= "v0.16" & < "v0.17"}
"fpath" {>= "0.7.3"}
"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"}
"stdune" {>= "3.14"}
"odoc" {with-doc}
]
Expand Down
12 changes: 11 additions & 1 deletion src/dune
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,14 @@
(flags :standard -w +a-4-40-41-42-44-45-48-66 -warn-error +a -open Base)
(libraries base fpath stdune)
(preprocess
(pps ppx_jane ppx_js_style -check-doc-comments)))
(pps
ppx_compare
ppx_enumerate
ppx_fields_conv
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 @@ -6,4 +6,14 @@
(instrumentation
(backend bisect_ppx))
(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 e9c3797

Please sign in to comment.