packages feed

shake-minify-css-0.1.0.0: shake-minify-css.cabal

cabal-version: 1.18
name: shake-minify-css
version: 0.1.0.0
license: BSD3
license-file: LICENSE
copyright: Copyright: (c) 2019 Vanessa McHale
maintainer: vamchale@gmail.com
author: Vanessa McHale
synopsis: Shake rules for CSS
description:
    Sensibly use [shake](https://shakebuild.com/) to minify CSS.
category: Development, Shake
build-type: Simple
extra-source-files:
    cabal.project.local
extra-doc-files: README.md

source-repository head
    type: darcs
    location: https://hub.darcs.net/vmchale/shake-minify-css

library
    exposed-modules:
        Development.Shake.MinifyCSS
    hs-source-dirs: src
    default-language: Haskell2010
    ghc-options: -Wall
    build-depends:
        base >=4.3 && <5,
        shake >=0.14,
        hasmin -any,
        text -any,
        directory -any,
        filepath -any

    if impl(ghc >=8.0)
        ghc-options: -Wincomplete-uni-patterns -Wincomplete-record-updates
                     -Wredundant-constraints -Wnoncanonical-monad-instances

    if impl(ghc >=8.4)
        ghc-options: -Wmissing-export-lists