snaplet-fay 0.3.1.1 → 0.3.2.0
raw patch · 1 files changed
+6/−5 lines, 1 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ Snap.Snaplet.Fay.Internal: Development :: CompileMode
+ Snap.Snaplet.Fay.Internal: Error :: String -> CompileResult
+ Snap.Snaplet.Fay.Internal: Fay :: FilePath -> Bool -> CompileMode -> Bool -> [FilePath] -> [String] -> Fay
+ Snap.Snaplet.Fay.Internal: NotFound :: CompileResult
+ Snap.Snaplet.Fay.Internal: Production :: CompileMode
+ Snap.Snaplet.Fay.Internal: Success :: String -> CompileResult
+ Snap.Snaplet.Fay.Internal: _includeDirs :: Fay -> [FilePath]
+ Snap.Snaplet.Fay.Internal: compileAll :: Fay -> IO ()
+ Snap.Snaplet.Fay.Internal: compileFile :: Fay -> FilePath -> IO CompileResult
+ Snap.Snaplet.Fay.Internal: compileMode :: Fay -> CompileMode
+ Snap.Snaplet.Fay.Internal: data CompileMode
+ Snap.Snaplet.Fay.Internal: data CompileResult
+ Snap.Snaplet.Fay.Internal: data Fay
+ Snap.Snaplet.Fay.Internal: destDir :: Fay -> FilePath
+ Snap.Snaplet.Fay.Internal: extFiles :: String -> FilePath -> IO [FilePath]
+ Snap.Snaplet.Fay.Internal: filename :: FilePath -> FilePath
+ Snap.Snaplet.Fay.Internal: hasSuffix :: String -> String -> Bool
+ Snap.Snaplet.Fay.Internal: hsPath :: Fay -> FilePath -> FilePath
+ Snap.Snaplet.Fay.Internal: hsRelativePath :: FilePath -> FilePath
+ Snap.Snaplet.Fay.Internal: includeDirs :: Fay -> [FilePath]
+ Snap.Snaplet.Fay.Internal: instance Eq CompileMode
+ Snap.Snaplet.Fay.Internal: instance Show CompileMode
+ Snap.Snaplet.Fay.Internal: instance Show Fay
+ Snap.Snaplet.Fay.Internal: jsPath :: Fay -> FilePath -> FilePath
+ Snap.Snaplet.Fay.Internal: jsRelativePath :: FilePath -> FilePath
+ Snap.Snaplet.Fay.Internal: packages :: Fay -> [String]
+ Snap.Snaplet.Fay.Internal: prettyPrint :: Fay -> Bool
+ Snap.Snaplet.Fay.Internal: snapletFilePath :: Fay -> FilePath
+ Snap.Snaplet.Fay.Internal: srcDir :: Fay -> FilePath
+ Snap.Snaplet.Fay.Internal: toHsName :: String -> String
+ Snap.Snaplet.Fay.Internal: verbose :: Fay -> Bool
+ Snap.Snaplet.Fay.Internal: verbosePut :: Fay -> String -> IO ()
Files
- snaplet-fay.cabal +6/−5
snaplet-fay.cabal view
@@ -5,7 +5,7 @@ -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change-version: 0.3.1.1+version: 0.3.2.0 synopsis: Fay integration for Snap with request- and pre-compilation. description: Fay integration for Snap with request based compilation during development and precompilation in production. For more information, please see <https://github.com/bergmark/snaplet-fay>.@@ -13,8 +13,8 @@ license-file: LICENSE author: Adam Bergmark maintainer: adam@edea.se-homepage: https://github.com/bergmark/snaplet-fay-bug-reports: https://github.com/bergmark/snaplet-fay/issues+homepage: https://github.com/faylang/snaplet-fay+bug-reports: https://github.com/faylang/snaplet-fay/issues category: Web, Snap, Fay build-type: Simple cabal-version: >=1.8@@ -26,7 +26,7 @@ source-repository head type: git- location: https://github.com/bergmark/snaplet-fay.git+ location: https://github.com/faylang/snaplet-fay.git library ghc-options: -Wall@@ -34,9 +34,10 @@ exposed-modules: Snap.Snaplet.Fay+ Snap.Snaplet.Fay.Internal other-modules:- Snap.Snaplet.Fay.Internal, Paths_snaplet_fay+ Paths_snaplet_fay build-depends: base >= 4 && < 5