Skip to content

Commit

Permalink
build passing
Browse files Browse the repository at this point in the history
  • Loading branch information
jchavarri committed Aug 14, 2024
1 parent 12c0e8a commit 83f8d8a
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@
yojson ; only used for the native version
(opam-check-npm-deps :with-test) ; todo: use with-dev-setup once opam 2.2 is out
(ocaml-lsp-server :with-test)
(ocaml-format :with-test)))
(ocamlformat :with-test)))
2 changes: 1 addition & 1 deletion melange-json.opam
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ depends: [
"yojson"
"opam-check-npm-deps" {with-test}
"ocaml-lsp-server" {with-test}
"ocaml-format" {with-test}
"ocamlformat" {with-test}
"odoc" {with-doc}
]
build: [
Expand Down
4 changes: 2 additions & 2 deletions ppx/browser/dune
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
ppx_deriving_json_runtime
ppx_deriving_json_browser_test)
(libraries ppxlib containers)
(ppx_runtime_libraries ppx_deriving_json.browser_runtime)
(ppx_runtime_libraries melange-json.browser_runtime)
(preprocess
(pps ppxlib.metaquot))
(kind ppx_deriver))
Expand All @@ -22,7 +22,7 @@
(executable
(name ppx_deriving_json_browser_test)
(modules ppx_deriving_json_browser_test)
(libraries ppx_deriving_json.browser ppxlib))
(libraries melange-json.browser ppxlib))

(rule
(target ppx_deriving_json_browser.mli)
Expand Down
4 changes: 2 additions & 2 deletions ppx/native/dune
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
ppx_deriving_json_runtime
ppx_deriving_json_native_test)
(libraries ppxlib containers)
(ppx_runtime_libraries ppx_deriving_json.native_runtime)
(ppx_runtime_libraries melange-json.native_runtime)
(preprocess
(pps ppxlib.metaquot))
(kind ppx_deriver))
Expand All @@ -22,7 +22,7 @@
(executable
(name ppx_deriving_json_native_test)
(modules ppx_deriving_json_native_test)
(libraries ppx_deriving_json.native ppxlib))
(libraries melange-json.native ppxlib))

(rule
(target ppx_deriving_json_native.mli)
Expand Down
2 changes: 1 addition & 1 deletion ppx/test/ppx_deriving_json_browser.e2e.t
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
> (modes melange)
> (modules example main)
> (flags :standard -w -37-69 -open Ppx_deriving_json_runtime.Primitives)
> (preprocess (pps melange.ppx ppx_deriving_json.browser)))
> (preprocess (pps melange.ppx melange-json.browser)))
> (melange.emit
> (alias js)
> (target output)
Expand Down
2 changes: 1 addition & 1 deletion ppx/test/ppx_deriving_json_native.e2e.t
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
> (name main)
> (libraries yojson)
> (flags :standard -w -37-69 -open Ppx_deriving_json_runtime.Primitives)
> (preprocess (pps ppx_deriving_json.native)))' > dune
> (preprocess (pps melange-json.native)))' > dune

$ echo '
> open Example
Expand Down

0 comments on commit 83f8d8a

Please sign in to comment.