packages feed

reflex-ghci 0.1.0.0 → 0.1.1.0

raw patch · 3 files changed

+5/−5 lines, 3 files

Files

ChangeLog.md view
@@ -1,5 +1,9 @@ # Revision history for reflex-ghci +## 0.1.1.0++* Executable: Fix option parser so that there is no expression to evaluate by default+ ## 0.1.0.0  * Initial release. A reflex-process wrapper for GHCi and cabal repl commands and a reflex-vty-based executable.
reflex-ghci.cabal view
@@ -1,6 +1,6 @@ cabal-version: >=1.10 name: reflex-ghci-version: 0.1.0.0+version: 0.1.1.0 synopsis: A GHCi widget library for use in reflex applications description:   Run GHCi from within a reflex application and interact with it using a functional-reactive interface.
src-bin/ghci.hs view
@@ -36,10 +36,6 @@     ( long "expression" <>       short 'e' <>       help "The optional expression to evaluate once modules have successfully loaded" <>-      showDefaultWith (\case-        "" -> "no expression"-        expr -> expr) <>-      value "" <>       metavar "EXPR"     ))