shake-minify 0.1.3 → 0.1.4
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
shake-minify.cabal view
@@ -1,5 +1,5 @@ name: shake-minify-version: 0.1.3+version: 0.1.4 synopsis: Shake Minify Rules description: Shake rules to minify CSS and JS files. @shake-minify@ doesn't require any external tools to be on the @$PATH@ and uses
src/Development/Shake/Minify.hs view
@@ -24,7 +24,7 @@ -- | Given a @.min.js@ path, find the @.js@ file and minify it into the specified file name. minifyJs :: FilePath -- ^ Desired minified JS files (ex: @"//*.min.js"@) -> Action ()-minifyJs = minifyCss' ((-<.> "js") . dropExtension)+minifyJs = minifyJs' ((-<.> "js") . dropExtension) -- | Same as `minifyJs` except take a function for custom file path mapping.