diff options
author | Futtetennista <futtetennista@gmail.com> | 2017-11-17 15:53:31 +0100 |
---|---|---|
committer | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2017-11-17 15:53:31 +0100 |
commit | 9a2f17d562e5b1fa5203455e2f05ce6e70ac6406 (patch) | |
tree | 68c0f58452ddb6c9af85deadfaebc0c26e336b40 /lib | |
parent | 7bb68afa756a5672c383bd345464ba3e9b16ba9b (diff) | |
download | hakyll-9a2f17d562e5b1fa5203455e2f05ce6e70ac6406.tar.gz |
Export Check type from Hakyll.Commands
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Hakyll/Commands.hs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Hakyll/Commands.hs b/lib/Hakyll/Commands.hs index 6763fe7..667f07a 100644 --- a/lib/Hakyll/Commands.hs +++ b/lib/Hakyll/Commands.hs @@ -2,7 +2,8 @@ -- | Implementation of Hakyll commands: build, preview... {-# LANGUAGE CPP #-} module Hakyll.Commands - ( build + ( Check(..) + , build , check , clean , preview @@ -18,6 +19,7 @@ import Control.Concurrent import System.Exit (ExitCode, exitWith) -------------------------------------------------------------------------------- +import Hakyll.Check (Check(..)) import qualified Hakyll.Check as Check import Hakyll.Core.Configuration import Hakyll.Core.Logger (Logger) |