packages feed

snaplet-css-min-0.1.2: snaplet-css-min.cabal

name:          snaplet-css-min
version:       0.1.2
license:       MIT
license-file:  LICENSE
author:        Timothy Jones
maintainer:    Timothy Jones <git@zmthy.io>
homepage:      https://github.com/zmthy/snaplet-css-min
bug-reports:   https://github.com/zmthy/snaplet-css-min/issues
copyright:     (c) 2014 Timothy Jones
category:      Web
build-type:    Simple
cabal-version: >= 1.10
synopsis:      A Snaplet for CSS minification
description:
  A Snaplet for minifying and caching CSS files.
  .
  Nest this Snaplet inside your own, and place your CSS files in
  @snaplets/css-min@.
  .
  The minifier just parses and renders the contents of the files with
  @css-text@, so the minification is not complete. It will remove most
  whitespace, though.

library
  hs-source-dirs:   src
  default-language: Haskell2010

  default-extensions:
    OverloadedStrings

  other-extensions:
    DeriveDataTypeable

  exposed-modules:
    Snap.Snaplet.CSS.Minify

  build-depends:
    base         >= 4.6    && < 5,
    bytestring   >= 0.10   && < 0.11,
    css-text     >= 0.1.2  && < 0.2,
    directory    >= 1.2    && < 2,
    filepath     >= 1.3    && < 2,
    lens         >= 3.9.2  && < 5,
    snap         >= 0.13.1 && < 0.14,
    text         >= 0.11.3 && < 2,
    utf8-string  >= 0.3    && < 0.4

source-repository head
  type:     git
  location: git://github.com/zmthy/http-media.git