shake-minify 0.1.0 → 0.1.1
raw patch · 2 files changed
+9/−6 lines, 2 files
Files
shake-minify.cabal view
@@ -1,13 +1,15 @@ name: shake-minify-version: 0.1.0-synopsis: Shake Minify Actions-description: Shake minify actions for CSS and JS files.+version: 0.1.1+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+ native Haskell CSS and JS minifiers. license: BSD3 license-file: LICENSE author: Luke Hoersten maintainer: luke@hoersten.org homepage: https://github.com/LukeHoersten/shake-minify-category: Web, Development+category: Shake, Web, Development build-type: Simple cabal-version: >=1.10 @@ -19,9 +21,10 @@ , hjsmin >= 0.1 && < 0.2 , shake >= 0.14 && < 0.15 , text >= 1.2 && < 1.3+ hs-source-dirs: src default-language: Haskell2010- ghc-options: -Wall -fwarn-tabs+ ghc-options: -Wall -fwarn-tabs source-repository head type: git
src/Development/Shake/Minify.hs view
@@ -1,4 +1,4 @@--- | Minify JS and CSS files similar to the following example:+-- | Minify JS and CSS files using no external @$PATH@ dependencies. -- -- @ -- main :: IO ()