-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
4 changed files
with
63 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
## 1.0.0 (2023-10-09) | ||
|
||
- Initial release | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,38 @@ | |
(using melange 0.1) | ||
|
||
(name melange-json) | ||
|
||
(generate_opam_files true) | ||
|
||
(authors "glennsl") | ||
|
||
(maintainers | ||
"Antonio Nuno Monteiro <[email protected]>" | ||
"Javier Ch\195\161varri <[email protected]>") | ||
|
||
(license "LGPL-3.0-only" "MPL-2.0") | ||
|
||
(homepage "https://github.com/melange-community/melange-json/") | ||
|
||
(bug_reports "https://github.com/melange-community/melange-json/issues") | ||
|
||
(source | ||
(github melange-community/melange-json)) | ||
|
||
(package | ||
(name melange-json) | ||
(synopsis "Compositional JSON encode/decode library for Melange") | ||
(description | ||
"Provides encoders and decoders to convert JSON values into typed values. With the possibility to create custom encoders and decoders.") | ||
(depends | ||
(ocaml | ||
(>= "5.1")) | ||
(melange | ||
(>= "2.0.0")) | ||
(melange-jest :with-test) | ||
(reason | ||
(and | ||
(>= "3.10.0") | ||
:with-test)) | ||
(opam-check-npm-deps :with-test) ; todo: use with-dev-setup once opam 2.2 is out | ||
(ocaml-lsp-server :with-test))) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
synopsis: "Compositional JSON encode/decode library for Melange" | ||
description: "Provides encoders and decoders to convert JSON values into typed values. With the possibility to create custom encoders and decoders." | ||
description: | ||
"Provides encoders and decoders to convert JSON values into typed values. With the possibility to create custom encoders and decoders." | ||
maintainer: [ | ||
"Antonio Nuno Monteiro <[email protected]>" | ||
"Javier Chávarri <[email protected]>" | ||
] | ||
authors: [ | ||
"glennsl" | ||
] | ||
authors: ["glennsl"] | ||
license: ["LGPL-3.0-only" "MPL-2.0"] | ||
homepage: "https://github.com/melange-community/melange-json/" | ||
doc: "https://github.com/melange-community/melange-json/" | ||
bug-reports: "https://github.com/melange-community/melange-json/issues" | ||
depends: [ | ||
"dune" {>= "3.8"} | ||
"ocaml" | ||
"ocaml" {>= "5.1"} | ||
"melange" {>= "2.0.0"} | ||
"melange-jest" {with-test} | ||
"reason" {with-test} | ||
"opam-check-npm-deps" {with-test} # todo: use with-dev-setup once opam 2.2 is out | ||
"reason" {>= "3.10.0" & with-test} | ||
"opam-check-npm-deps" {with-test} | ||
"ocaml-lsp-server" {with-test} | ||
"odoc" {with-doc} | ||
] | ||
|
@@ -36,10 +36,3 @@ build: [ | |
] | ||
] | ||
dev-repo: "git+https://github.com/melange-community/melange-json.git" | ||
pin-depends: [ | ||
[ "melange.2.0.0" "git+https://github.com/melange-re/melange.git#e114ad55d185badeb32b3c766c9ab547495eac1b" ] | ||
[ "reason.3.10.0" "git+https://github.com/reasonml/reason.git#972261dab3b651ff8ab9b8b9fcc32940595073dc" ] | ||
[ "melange-jest.dev" "git+https://github.com/melange-community/melange-jest.git#acb6ef50beef3c486805d616b90aa7b56b51172d" ] | ||
[ "melange-webapi.dev" "git+https://github.com/melange-community/melange-webapi.git#96dc1e2a867624d18050fad25cf1c71af7a098e1" ] | ||
[ "melange-fetch.dev" "git+https://github.com/melange-community/melange-fetch.git#796f941b6b85eb7e6182ac6e4f40708bfde7a9a9" ] | ||
] |