fay 0.19.1 → 0.19.1.1
raw patch · 3 files changed
+8/−5 lines, 3 filesdep ~optparse-applicative
Dependency ranges changed: optparse-applicative
Files
- CHANGELOG.md +5/−2
- fay.cabal +2/−2
- src/main/Main.hs +1/−1
CHANGELOG.md view
@@ -2,14 +2,17 @@ See full history at: <https://github.com/faylang/fay/commits> +#### 0.19.0.1 (2014-03-17)++* Allow `optparse-applicative 0.8.*`+ ### 0.19.1 (2014-03-13) * Added Data.Char to fay-base Dependency bumps: * Allow `Cabal 1.19.*`-* Allow `Process 1.2.*`-+* Allow `process 1.2.*` #### 0.19.0.2 (2014-01-30)
fay.cabal view
@@ -1,5 +1,5 @@ name: fay-version: 0.19.1+version: 0.19.1.1 synopsis: A compiler for Fay, a Haskell subset that compiles to JavaScript. description: Fay is a proper subset of Haskell which is type-checked with GHC, and compiled to JavaScript. It is lazy, pure, has a Fay monad,@@ -143,7 +143,7 @@ build-depends: base , fay , data-default- , optparse-applicative >= 0.6 && < 0.8+ , optparse-applicative >= 0.6 && < 0.9 , split executable fay-tests
src/main/Main.hs view
@@ -121,7 +121,7 @@ <*> switch (long "typecheck-only" <> help "Only invoke GHC for typechecking, don't produce any output") <*> optional (strOption $ long "runtime-path" <> help "Custom path to the runtime so you don't have to reinstall fay when modifying it") <*> switch (long "sourcemap" <> help "Produce a source map in <outfile>.map")- <*> arguments Just (metavar "<hs-file>...")+ <*> many (argument Just (metavar "<hs-file>...")) where strsOption m = nullOption (m <> reader (ReadM . Right . wordsBy (== ',')) <> value []) -- | Make incompatible options.