Skip to content

Commit

Permalink
Merge pull request #1 from kit-ty-kate/master
Browse files Browse the repository at this point in the history
Integrate the runtime into the ppx_interact package
  • Loading branch information
dariusf committed Mar 9, 2023
2 parents 3cc1a4f + b7cf49c commit 07eeadc
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 58 deletions.
10 changes: 0 additions & 10 deletions dune-project
Expand Up @@ -17,15 +17,5 @@
(description "The pry/pdb experience via a toplevel")
(depends
(ocaml (>= 4.14))
(dune (>= 3.7))
(ppxlib (>= 0.28.0))
ppx_interact_runtime))

(package
(name ppx_interact_runtime)
(synopsis "Opens a REPL in context")
(description "Runtime library for ppx_interact")
(depends
(ocaml (>= 4.14))
(dune (>= 3.7))
(linenoise (>= 1.4.0))))
2 changes: 1 addition & 1 deletion ppx/dune
Expand Up @@ -2,7 +2,7 @@
(public_name ppx_interact)
(kind ppx_rewriter)
(libraries ppxlib)
(ppx_runtime_libraries ppx_interact_runtime)
(ppx_runtime_libraries ppx_interact.runtime)
(preprocess
(pps ppxlib.metaquot)))

Expand Down
4 changes: 2 additions & 2 deletions ppx_interact.opam
Expand Up @@ -8,10 +8,10 @@ license: "MIT"
homepage: "https://github.com/dariusf/ppx_interact"
bug-reports: "https://github.com/dariusf/ppx_interact/issues"
depends: [
"dune" {>= "3.7"}
"ocaml" {>= "4.14"}
"dune" {>= "3.7" & >= "3.7"}
"ppxlib" {>= "0.28.0"}
"ppx_interact_runtime"
"linenoise" {>= "1.4.0"}
"odoc" {with-doc}
]
build: [
Expand Down
30 changes: 0 additions & 30 deletions ppx_interact_runtime.opam

This file was deleted.

14 changes: 0 additions & 14 deletions ppx_interact_runtime.opam.template

This file was deleted.

3 changes: 2 additions & 1 deletion runtime/dune
@@ -1,5 +1,6 @@
(library
(public_name ppx_interact_runtime)
(name ppx_interact_runtime)
(public_name ppx_interact.runtime)
(libraries compiler-libs.toplevel unix linenoise))

(env
Expand Down

0 comments on commit 07eeadc

Please sign in to comment.