purescript-bridge 0.6.0.0 → 0.6.0.1
raw patch · 2 files changed
+4/−3 lines, 2 files
Files
purescript-bridge.cabal view
@@ -10,7 +10,7 @@ -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change-version: 0.6.0.0+version: 0.6.0.1 -- A short (one-line) description of the package. synopsis: Generate PureScript data types from Haskell data types@@ -29,7 +29,7 @@ -- An email address to which users can send suggestions, bug reports, and -- patches.-maintainer: robert.klotzner@gmx.at+maintainer: robert . klotzner A T gmx . at -- A copyright notice. -- copyright:
src/Language/PureScript/Bridge.hs view
@@ -54,7 +54,7 @@ -- in your own bridges, in order for this feature to be useful. -- -- == Real world usage example (at time of this writing outdated, at time of reading hopefully fixed):--- A real world use case of this library can be found <https://github.com/gonimo/gonimo-back/blob/master/src/MkFrontendTypes.hs here>.+-- A real world use case of this library can be found <https://github.com/gonimo/gonimo-back/blob/master/src/PSGenerator.hs here>. -- -- With custom bridges defined <https://github.com/gonimo/gonimo-back/blob/master/src/Gonimo/TypeBridges.hs here> and -- custom PS types defined <https://github.com/gonimo/gonimo-back/blob/master/src/Gonimo/PSTypes.hs here>.@@ -103,6 +103,7 @@ <|> intBridge <|> tupleBridge <|> stringBridge+ <|> unitBridge -- | Translate types in a constructor. bridgeConstructor :: FullBridge -> DataConstructor 'Haskell -> DataConstructor 'PureScript