Skip to content

Commit

Permalink
Update for compatibility with Elm 0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
maxsnew committed Dec 31, 2013
1 parent 516b5cc commit e49a908
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
9 changes: 5 additions & 4 deletions Hakyll/Web/Elm.hs
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@ import Data.Traversable (traverse)
import Control.Applicative ((<$>))
import Control.Monad.Error (throwError)

import qualified Language.Elm as Elm
import Hakyll
import Text.Blaze (preEscapedToMarkup)
import Text.Blaze.Html5 ((!))
import Text.Blaze (preEscapedToMarkup)
import Text.Blaze.Html5 ((!))
import Text.Blaze.Html.Renderer.String (renderHtml)
import qualified Text.Blaze.Html5 as H

import qualified Elm.Internal.Utils as Elm
import qualified Text.Blaze.Html5 as H
import qualified Text.Blaze.Html5.Attributes as Attr

{-| Compiles an elm file to a div and inline Javascript.
Expand Down
14 changes: 7 additions & 7 deletions hakyll-elm.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: hakyll-elm
version: 0.1
version: 0.2
synopsis: Hakyll wrapper for the Elm compiler.
description: A wrapper for compiling
Elm (<http://elm-lang.org>) programs to
Expand Down Expand Up @@ -33,12 +33,12 @@ source-repository this
library
-- Modules exported by the library.
exposed-modules: Hakyll.Web.Elm
build-depends: base >= 4.6 && < 4.7,
hakyll >= 4.0 && < 4.5,
Elm >= 0.9 && < 0.11,
mtl >= 1.0 && < 3.0,
blaze-html >= 0.4 && < 0.7,
blaze-markup >= 0.5 && < 0.6
build-depends: base >= 4.6 && < 4.7,
hakyll >= 4.0 && < 4.5,
Elm >= 0.10.1 && < 0.11,
mtl >= 1.0 && < 3.0,
blaze-html >= 0.4 && < 0.7,
blaze-markup >= 0.5 && < 0.6
-- Base language which the package is written in.
default-language: Haskell2010
ghc-options: -Wall

0 comments on commit e49a908

Please sign in to comment.