hakyll-contrib-elm: Compile Elm code for inclusion in Hakyll static site.

[ bsd3, library, program, web ] [ Propose Tags ]

A Hakyll extension which allows building and including Elm projects in static sites.


[Skip to Readme]

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.1.0.1
Dependencies base (>=4.8 && <5), bytestring (>=0.9 && <0.11), directory (>=1.0 && <1.3), hakyll (>=4.7 && <4.9), hakyll-contrib-elm (>=0.1 && <0.2), process (>=1.0 && <1.3), temporary (>=1.2 && <1.3) [details]
License BSD-3-Clause
Copyright 2016 Erik Stevenson
Author Erik Stevenson
Maintainer eriknstevenson@gmail.com
Category Web
Home page https://github.com/narrative/hakyll-contrib-elm#readme
Bug tracker https://github.com/narrative/hakyll-contrib-elm/issues
Uploaded by narrative at 2016-05-19T19:38:34Z
Distributions
Executables hakyll-contrib-elm-example
Downloads 1394 total (6 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2016-05-19 [all 1 reports]

Readme for hakyll-contrib-elm-0.1.0.1

[back to package description]

Use Elm and Hakyll

Elm has changed significantly since v0.10, and using the compiler as a library is no longer viable/preferred. This hakyll extension works with Elm v0.17 and improves upon previous similar solutions by working with multi-module elm programs (via elm-make).

Usage

Verify you have the elm-make build tool installed: npm install -g elm

{-# LANGUAGE OverloadedStrings #-}

module Main where

import Hakyll
import Hakyll.Contrib.Elm

main :: IO ()
main = hakyll $ do

  match "elm/*.elm" $ do
    route $ setExtension "js" `composeRoutes` gsubRoute "elm/" (const "js/")
    compile elmMake

  match "index.html" $ do
    route idRoute
    compile $
      getResourceBody
      >>= loadAndApplyTemplate "templates/layout.html" defaultContext

  match "templates/*" $ compile templateCompiler