packages feed

Shpadoinkle-backend-static-0.2.0.1: Shpadoinkle-backend-static.cabal

cabal-version: 2.2
name:          Shpadoinkle-backend-static
version:       0.2.0.1
category:      Web
author:        Isaac Shapira
maintainer:    isaac.shapira@platonic.systems
license:       BSD-3-Clause
license-file:  LICENSE
build-type:    Simple
extra-source-files:
  README.md
synopsis:
  A backend for rendering Shpadoinkle as Text.
description:
  Shpadoinkle's static backend, which renders Html as Text.
  Event listeners are ignored. This is useful when rendering
  on the server or for static site generation.


library
  exposed-modules:
    Shpadoinkle.Backend.Static

  hs-source-dirs: .

  ghc-options:
    -Wall
    -Wcompat
    -fwarn-redundant-constraints
    -fwarn-incomplete-uni-patterns
    -fwarn-tabs
    -fwarn-incomplete-record-updates
    -fwarn-identities

  build-depends:
      Shpadoinkle
    , base >=4.12.0 && <4.16
    , compactable >=0.1.2 && <0.2
    , text >=1.2.3 && <1.3

  default-language: Haskell2010