1
1
mirror of https://github.com/srid/ema.git synced 2024-11-25 20:12:20 +03:00
ema/ema.cabal
2021-05-16 16:34:08 -04:00

130 lines
2.8 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

cabal-version: 2.4
name: ema
version: 0.2.0.0
license: AGPL-3.0-only
copyright: 2021 Sridhar Ratnakumar
maintainer: srid@srid.ca
author: Sridhar Ratnakumar
category: Web
synopsis: Static site generator library with hot reload
bug-reports: https://github.com/srid/ema/issues
homepage: https://ema.srid.ca/
description:
Ema is a next-gen Haskell library for building jamstack-style static sites.
Ema sites are change-aware; in addition to good ol static site generation,
it provides a live server supporting fast hot-reload in the browser on code
or data change.
extra-source-files:
CHANGELOG.md
LICENSE
README.md
flag with-examples
description: Include examples and their dependencies
default: True
flag with-helpers
description: Include helper modules based on blaze-html
default: True
library
-- Modules included in this executable, other than Main.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends:
, aeson
, async
, base >=4.13.0.0 && <=4.17.0.0
, containers
, data-default
, directory
, filepath
, filepattern
, http-types
, lvar
, monad-logger
, monad-logger-extras
, neat-interpolation
, optparse-applicative
, relude
, safe-exceptions
, stm
, text
, unicode-transforms
, unliftio
, uri-encode
, wai
, wai-middleware-static
, wai-websockets
, warp
, websockets
if (flag(with-helpers) || flag(with-examples))
build-depends:
, blaze-html
, blaze-markup
, commonmark
, commonmark-extensions
, commonmark-pandoc
, fsnotify
, yaml
, megaparsec
, pandoc-types
, parsec
, parser-combinators
if flag(with-examples)
build-depends: time
mixins:
base hiding (Prelude),
relude (Relude as Prelude, Relude.Container.One),
relude
ghc-options:
-Wall -Wincomplete-record-updates -Wincomplete-uni-patterns
default-extensions:
FlexibleContexts
FlexibleInstances
KindSignatures
LambdaCase
MultiParamTypeClasses
MultiWayIf
OverloadedStrings
ScopedTypeVariables
TupleSections
ViewPatterns
exposed-modules:
Ema
Ema.CLI
if (flag(with-helpers) || flag(with-examples))
exposed-modules:
Ema.Helper.FileSystem
Ema.Helper.Markdown
Ema.Helper.PathTree
Ema.Helper.Tailwind
other-modules:
Ema.App
Ema.Class
Ema.Generate
Ema.Route
Ema.Route.Slug
Ema.Route.UrlStrategy
Ema.Server
if flag(with-examples)
exposed-modules:
Ema.Example.Ex01_HelloWorld
Ema.Example.Ex02_Basic
Ema.Example.Ex03_Clock
hs-source-dirs: src
default-language: Haskell2010