Skip to content

Commit d2aeb3c

Browse files
committed
Remove bisect_ppx preprocess
1 parent cb8e827 commit d2aeb3c

File tree

7 files changed

+7
-19
lines changed

7 files changed

+7
-19
lines changed

bin/dune

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
(executables
22
(names main)
3-
(libraries liquid_ml base core)
4-
(preprocess
5-
(pps bisect_ppx --conditional)))
3+
(libraries liquid_ml base core))

liquid_interpreter/dune

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
(library
22
(public_name liquid_interpreter)
3-
(libraries base core stdio re2 liquid_syntax liquid_parser liquid_std)
4-
(preprocess
5-
(pps bisect_ppx --conditional)))
3+
(libraries base core stdio re2 liquid_syntax liquid_parser liquid_std))

liquid_ml/dune

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
(library
22
(public_name liquid_ml)
3-
(libraries base core stdio liquid_syntax liquid_parser liquid_interpreter)
4-
(preprocess
5-
(pps bisect_ppx --conditional)))
3+
(libraries base core stdio liquid_syntax liquid_parser liquid_interpreter))

liquid_parser/dune

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
(library
22
(public_name liquid_parser)
3-
(libraries base core stdio re2 liquid_syntax)
4-
(preprocess
5-
(pps bisect_ppx --conditional)))
3+
(libraries base core stdio re2 liquid_syntax))

liquid_std/dune

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
(library
22
(public_name liquid_std)
33
(libraries base core stdio re2 calendar base64 sha str liquid_syntax
4-
liquid_parser)
5-
(preprocess
6-
(pps bisect_ppx --conditional)))
4+
liquid_parser))

liquid_syntax/dune

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
(public_name liquid_syntax)
33
(libraries base core stdio re2 calendar ppx_deriving.runtime)
44
(preprocess
5-
(pps ppx_deriving.show bisect_ppx --conditional)))
5+
(pps ppx_deriving.show)))

test/dune

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
(test
22
(name test_runner)
3-
(libraries alcotest liquid_ml base core stdio)
4-
(preprocess
5-
(pps bisect_ppx --conditional)))
3+
(libraries alcotest liquid_ml base core stdio))
64

75
(dirs templates)

0 commit comments

Comments
 (0)