Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .headache.dirs
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ src/fpath-base
src/fpath-sexp0
test/fpath-base
test/fpath-sexp0
test/stdlib
2 changes: 1 addition & 1 deletion doc/explanation/dune
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
(mdx
(package fpath-base-dev)
(deps
(package fpath-base))
(package fpath-sexp0))
(preludes prelude.txt))
4 changes: 2 additions & 2 deletions doc/explanation/prelude.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#require "fpath-base" ;;
open Fpath_base ;;
#require "fpath-sexp0" ;;
open Fpath_sexp0 ;;
2 changes: 1 addition & 1 deletion doc/guides/dune
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
(mdx
(package fpath-base-dev)
(deps
(package fpath-base))
(package fpath-sexp0))
(preludes prelude.txt))
4 changes: 2 additions & 2 deletions doc/guides/prelude.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#require "fpath-base" ;;
open Fpath_base ;;
#require "fpath-sexp0" ;;
open Fpath_sexp0 ;;
30 changes: 7 additions & 23 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -62,26 +62,26 @@
(>= 5.2))
(base
(>= v0.17))
(expect_test_helpers_core
(>= v0.17))
(dyn
(>= 3.17))
(fpath
(>= 0.7.3))
(fpath-base
(= :version))
(fpath-sexp0
(= :version))
(ordering
(>= 3.17))
(pp
(>= 2.0.0))
(ppx_compare
(>= v0.17))
(ppx_expect
(>= v0.17))
(ppx_hash
(>= v0.17))
(ppx_here
(>= v0.17))
(ppx_sexp_conv
(>= v0.17))
(ppx_sexp_value
(>= v0.17))
(ppxlib
(>= 0.33))))

Expand All @@ -98,8 +98,6 @@
(>= v0.17))
(bisect_ppx
(>= 2.8.3))
(expect_test_helpers_core
(>= v0.17))
(fpath
(>= 0.7.3))
(fpath-base
Expand All @@ -110,23 +108,9 @@
(= :version))
(mdx
(>= 2.4))
(ppx_compare
(>= v0.17))
(ppx_expect
(>= v0.17))
(ppx_hash
(>= v0.17))
(ppx_here
(>= v0.17))
(ppx_js_style
(>= v0.17))
(ppx_sexp_conv
(>= v0.17))
(ppx_sexp_value
(>= v0.17))
(ppxlib
(>= 0.33))
(sherlodoc
(and
:with-doc
(>= 0.2)))))
(>= 0.2))))
9 changes: 1 addition & 8 deletions fpath-base-dev.opam
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,14 @@ depends: [
"ocamlformat" {= "0.28.1"}
"base" {>= "v0.17"}
"bisect_ppx" {>= "2.8.3"}
"expect_test_helpers_core" {>= "v0.17"}
"fpath" {>= "0.7.3"}
"fpath-base" {= version}
"fpath-base-tests" {= version}
"fpath-sexp0" {= version}
"mdx" {>= "2.4"}
"ppx_compare" {>= "v0.17"}
"ppx_expect" {>= "v0.17"}
"ppx_hash" {>= "v0.17"}
"ppx_here" {>= "v0.17"}
"ppx_js_style" {>= "v0.17"}
"ppx_sexp_conv" {>= "v0.17"}
"ppx_sexp_value" {>= "v0.17"}
"ppxlib" {>= "0.33"}
"sherlodoc" {with-doc & >= "0.2"}
"sherlodoc" {>= "0.2"}
"odoc" {with-doc}
]
build: [
Expand Down
6 changes: 3 additions & 3 deletions fpath-base-tests.opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ depends: [
"dune" {>= "3.17"}
"ocaml" {>= "5.2"}
"base" {>= "v0.17"}
"expect_test_helpers_core" {>= "v0.17"}
"dyn" {>= "3.17"}
"fpath" {>= "0.7.3"}
"fpath-base" {= version}
"fpath-sexp0" {= version}
"ordering" {>= "3.17"}
"pp" {>= "2.0.0"}
"ppx_compare" {>= "v0.17"}
"ppx_expect" {>= "v0.17"}
"ppx_hash" {>= "v0.17"}
"ppx_here" {>= "v0.17"}
"ppx_sexp_conv" {>= "v0.17"}
"ppx_sexp_value" {>= "v0.17"}
"ppxlib" {>= "0.33"}
"odoc" {with-doc}
]
Expand Down
13 changes: 3 additions & 10 deletions test/fpath-base/dune
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,8 @@
-open
Fpath_base
-open
Expect_test_helpers_base)
(libraries
base
expect_test_helpers_core.expect_test_helpers_base
fpath
fpath_base
fpath_sexp0)
Stdlib_for_test)
(libraries base fpath fpath_base fpath_sexp0 stdlib_for_test)
(inline_tests)
(instrumentation
(backend bisect_ppx))
Expand All @@ -30,6 +25,4 @@
ppx_compare
ppx_expect
ppx_hash
ppx_here
ppx_sexp_conv
ppx_sexp_value)))
ppx_sexp_conv)))
Loading