Skip to content

Commit c3ddf24

Browse files
authored
Merge 2935dd5 into c9cd4fc
2 parents c9cd4fc + 2935dd5 commit c3ddf24

File tree

4 files changed

+7
-0
lines changed

4 files changed

+7
-0
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
- Added a `header` field to the json output (@panglesd, #1314)
77
- Added an `extract-code` subcommand to extract code blocks from mld files
88
(@panglesd, #1326)
9+
- Exposed sherlodoc libraries for use in other projects (@jonludlam, #1349)
910

1011
### Changed
1112

sherlodoc/db/dune

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
(library
22
(name db)
3+
(public_name sherlodoc.db)
34
(libraries fmt))

sherlodoc/query/dune

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
(library
22
(name query)
3+
(public_name sherlodoc.query)
34
(libraries db))
45

56
(menhir

sherlodoc/store/dune

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
(library
22
(name db_store)
3+
(public_name sherlodoc.db_store)
34
(modules db_store)
45
(libraries
56
storage_marshal
@@ -12,16 +13,19 @@
1213

1314
(library
1415
(name storage_ancient)
16+
(public_name sherlodoc.storage_ancient)
1517
(modules storage_ancient)
1618
(optional)
1719
(libraries db ancient unix))
1820

1921
(library
2022
(name storage_js)
2123
(modules storage_js)
24+
(public_name sherlodoc.storage_js)
2225
(libraries db base64 bigstringaf decompress.zl))
2326

2427
(library
2528
(name storage_marshal)
29+
(public_name sherlodoc.storage_marshal)
2630
(modules storage_marshal)
2731
(libraries db))

0 commit comments

Comments
 (0)